Current Path : /storage/v11800/affypharma/public_html/wp-content/plugins/blog-designer-pack/freemius/

Linux v11800 5.3.0-1023-aws #25~18.04.1-Ubuntu SMP Fri Jun 5 15:19:18 UTC 2020 aarch64

Upload File :
Current File : /storage/v11800/affypharma/public_html/wp-content/plugins/blog-designer-pack/freemius/config.php
<?php
    /**
     * @package     Freemius
     * @copyright   Copyright (c) 2015, Freemius, Inc.
     * @license     https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3
     * @since       1.0.4
     */

    if ( ! defined( 'ABSPATH' ) ) {
        exit;
    }

    if ( ! defined( 'WP_FS__SLUG' ) ) {
        define( 'WP_FS__SLUG', 'freemius' );
    }
    if ( ! defined( 'WP_FS__DEV_MODE' ) ) {
        define( 'WP_FS__DEV_MODE', false );
    }

    #--------------------------------------------------------------------------------
    #region API Connectivity Issues Simulation
    #--------------------------------------------------------------------------------

    if ( ! defined( 'WP_FS__SIMULATE_NO_API_CONNECTIVITY' ) ) {
        define( 'WP_FS__SIMULATE_NO_API_CONNECTIVITY', false );
    }
    if ( ! defined( 'WP_FS__SIMULATE_NO_CURL' ) ) {
        define( 'WP_FS__SIMULATE_NO_CURL', false );
    }
    if ( ! defined( 'WP_FS__SIMULATE_NO_API_CONNECTIVITY_CLOUDFLARE' ) ) {
        define( 'WP_FS__SIMULATE_NO_API_CONNECTIVITY_CLOUDFLARE', false );
    }
    if ( ! defined( 'WP_FS__SIMULATE_NO_API_CONNECTIVITY_SQUID_ACL' ) ) {
        define( 'WP_FS__SIMULATE_NO_API_CONNECTIVITY_SQUID_ACL', false );
    }
    if ( WP_FS__SIMULATE_NO_CURL ) {
        define( 'FS_SDK__SIMULATE_NO_CURL', true );
    }
    if ( WP_FS__SIMULATE_NO_API_CONNECTIVITY_CLOUDFLARE ) {
        define( 'FS_SDK__SIMULATE_NO_API_CONNECTIVITY_CLOUDFLARE', true );
    }
    if ( WP_FS__SIMULATE_NO_API_CONNECTIVITY_SQUID_ACL ) {
        define( 'FS_SDK__SIMULATE_NO_API_CONNECTIVITY_SQUID_ACL', true );
    }

    #endregion

    if ( ! defined( 'WP_FS__SIMULATE_FREEMIUS_OFF' ) ) {
        define( 'WP_FS__SIMULATE_FREEMIUS_OFF', false );
    }

    if ( ! defined( 'WP_FS__PING_API_ON_IP_OR_HOST_CHANGES' ) ) {
        /**
         * @since  1.1.7.3
         * @author Vova Feldman (@svovaf)
         *
         * I'm not sure if shared servers periodically change IP, or the subdomain of the
         * admin dashboard. Also, I've seen sites that have strange loop of switching
         * between domains on a daily basis. Therefore, to eliminate the risk of
         * multiple unwanted connectivity test pings, temporary ignore domain or
         * server IP changes.
         */
        define( 'WP_FS__PING_API_ON_IP_OR_HOST_CHANGES', false );
    }

    /**
     * If your dev environment supports custom public network IP setup
     * like VVV, please update WP_FS__LOCALHOST_IP with your public IP
     * and uncomment it during dev.
     */
    if ( ! defined( 'WP_FS__LOCALHOST_IP' ) ) {
        // VVV default public network IP.
        define( 'WP_FS__VVV_DEFAULT_PUBLIC_IP', '192.168.50.4' );

//		define( 'WP_FS__LOCALHOST_IP', WP_FS__VVV_DEFAULT_PUBLIC_IP );
    }

    /**
     * If true and running with secret key, the opt-in process
     * will skip the email activation process which is invoked
     * when the email of the context user already exist in Freemius
     * database (as a security precaution, to prevent sharing user
     * secret with unauthorized entity).
     *
     * IMPORTANT:
     *      AS A SECURITY PRECAUTION, WE VALIDATE THE TIMESTAMP OF THE OPT-IN REQUEST.
     *      THEREFORE, MAKE SURE THAT WHEN USING THIS PARAMETER,YOUR TESTING ENVIRONMENT'S
     *      CLOCK IS SYNCED.
     */
    if ( ! defined( 'WP_FS__SKIP_EMAIL_ACTIVATION' ) ) {
        define( 'WP_FS__SKIP_EMAIL_ACTIVATION', false );
    }


    #--------------------------------------------------------------------------------
    #region Directories
    #--------------------------------------------------------------------------------

    if ( ! defined( 'WP_FS__DIR' ) ) {
        define( 'WP_FS__DIR', dirname( __FILE__ ) );
    }
    if ( ! defined( 'WP_FS__DIR_INCLUDES' ) ) {
        define( 'WP_FS__DIR_INCLUDES', WP_FS__DIR . '/includes' );
    }
    if ( ! defined( 'WP_FS__DIR_TEMPLATES' ) ) {
        define( 'WP_FS__DIR_TEMPLATES', WP_FS__DIR . '/templates' );
    }
    if ( ! defined( 'WP_FS__DIR_ASSETS' ) ) {
        define( 'WP_FS__DIR_ASSETS', WP_FS__DIR . '/assets' );
    }
    if ( ! defined( 'WP_FS__DIR_CSS' ) ) {
        define( 'WP_FS__DIR_CSS', WP_FS__DIR_ASSETS . '/css' );
    }
    if ( ! defined( 'WP_FS__DIR_JS' ) ) {
        define( 'WP_FS__DIR_JS', WP_FS__DIR_ASSETS . '/js' );
    }
    if ( ! defined( 'WP_FS__DIR_IMG' ) ) {
        define( 'WP_FS__DIR_IMG', WP_FS__DIR_ASSETS . '/img' );
    }
    if ( ! defined( 'WP_FS__DIR_SDK' ) ) {
        define( 'WP_FS__DIR_SDK', WP_FS__DIR_INCLUDES . '/sdk' );
    }

    #endregion

    /**
     * Domain / URL / Address
     */
    define( 'WP_FS__ROOT_DOMAIN_PRODUCTION', 'freemius.com' );
    define( 'WP_FS__DOMAIN_PRODUCTION', 'wp.freemius.com' );
    define( 'WP_FS__ADDRESS_PRODUCTION', 'https://' . WP_FS__DOMAIN_PRODUCTION );

    if ( ! defined( 'WP_FS__DOMAIN_LOCALHOST' ) ) {
        define( 'WP_FS__DOMAIN_LOCALHOST', 'wp.freemius' );
    }
    if ( ! defined( 'WP_FS__ADDRESS_LOCALHOST' ) ) {
        define( 'WP_FS__ADDRESS_LOCALHOST', 'http://' . WP_FS__DOMAIN_LOCALHOST . ':8080' );
    }

    if ( ! defined( 'WP_FS__TESTING_DOMAIN' ) ) {
        define( 'WP_FS__TESTING_DOMAIN', 'fswp' );
    }

    #--------------------------------------------------------------------------------
    #region HTTP
    #--------------------------------------------------------------------------------

    if ( ! defined( 'WP_FS__IS_HTTP_REQUEST' ) ) {
        define( 'WP_FS__IS_HTTP_REQUEST', isset( $_SERVER['HTTP_HOST'] ) && isset( $_SERVER['REQUEST_METHOD'] ) );
    }

    if ( ! defined( 'WP_FS__IS_HTTPS' ) ) {
        define( 'WP_FS__IS_HTTPS', ( WP_FS__IS_HTTP_REQUEST &&
                                     // Checks if CloudFlare's HTTPS (Flexible SSL support).
                                     isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) &&
                                     'https' === strtolower( $_SERVER['HTTP_X_FORWARDED_PROTO'] )
                                   ) ||
                                   // Check if HTTPS request.
                                   ( isset( $_SERVER['HTTPS'] ) && 'on' == $_SERVER['HTTPS'] ) ||
                                   ( isset( $_SERVER['SERVER_PORT'] ) && 443 == $_SERVER['SERVER_PORT'] )
        );
    }

    if ( ! defined( 'WP_FS__IS_POST_REQUEST' ) ) {
        define( 'WP_FS__IS_POST_REQUEST', ( WP_FS__IS_HTTP_REQUEST &&
                                            strtoupper( $_SERVER['REQUEST_METHOD'] ) == 'POST' ) );
    }

    if ( ! defined( 'WP_FS__REMOTE_ADDR' ) ) {
        define( 'WP_FS__REMOTE_ADDR', fs_get_ip() );
    }

    if ( ! defined( 'WP_FS__IS_LOCALHOST' ) ) {
        if ( defined( 'WP_FS__LOCALHOST_IP' ) ) {
            define( 'WP_FS__IS_LOCALHOST', ( WP_FS__LOCALHOST_IP === WP_FS__REMOTE_ADDR ) );
        } else {
            define( 'WP_FS__IS_LOCALHOST', WP_FS__IS_HTTP_REQUEST &&
                                           is_string( WP_FS__REMOTE_ADDR ) &&
                                           ( substr( WP_FS__REMOTE_ADDR, 0, 4 ) === '127.' ||
                                             WP_FS__REMOTE_ADDR === '::1' )
            );
        }
    }

    if ( ! defined( 'WP_FS__IS_LOCALHOST_FOR_SERVER' ) ) {
        define( 'WP_FS__IS_LOCALHOST_FOR_SERVER', ( ! WP_FS__IS_HTTP_REQUEST ||
                                                    false !== strpos( $_SERVER['HTTP_HOST'], 'localhost' ) ) );
    }

    #endregion

    if ( ! defined( 'WP_FS__IS_PRODUCTION_MODE' ) ) {
        // By default, run with Freemius production servers.
        define( 'WP_FS__IS_PRODUCTION_MODE', true );
    }

    if ( ! defined( 'WP_FS__ADDRESS' ) ) {
        define( 'WP_FS__ADDRESS', ( WP_FS__IS_PRODUCTION_MODE ? WP_FS__ADDRESS_PRODUCTION : WP_FS__ADDRESS_LOCALHOST ) );
    }


    #--------------------------------------------------------------------------------
    #region API
    #--------------------------------------------------------------------------------

    if ( ! defined( 'WP_FS__API_ADDRESS_LOCALHOST' ) ) {
        define( 'WP_FS__API_ADDRESS_LOCALHOST', 'http://api.freemius-local.com:8080' );
    }
    if ( ! defined( 'WP_FS__API_SANDBOX_ADDRESS_LOCALHOST' ) ) {
        define( 'WP_FS__API_SANDBOX_ADDRESS_LOCALHOST', 'http://sandbox-api.freemius:8080' );
    }

    // Set API address for local testing.
    if ( ! WP_FS__IS_PRODUCTION_MODE ) {
        if ( ! defined( 'FS_API__ADDRESS' ) ) {
            define( 'FS_API__ADDRESS', WP_FS__API_ADDRESS_LOCALHOST );
        }
        if ( ! defined( 'FS_API__SANDBOX_ADDRESS' ) ) {
            define( 'FS_API__SANDBOX_ADDRESS', WP_FS__API_SANDBOX_ADDRESS_LOCALHOST );
        }
    }

    #endregion

    #--------------------------------------------------------------------------------
    #region Checkout
    #--------------------------------------------------------------------------------

    if ( ! defined( 'FS_CHECKOUT__ADDRESS_PRODUCTION' ) ) {
        define( 'FS_CHECKOUT__ADDRESS_PRODUCTION', 'https://checkout.freemius.com' );
    }

    if ( ! defined( 'FS_CHECKOUT__ADDRESS_LOCALHOST' ) ) {
        define( 'FS_CHECKOUT__ADDRESS_LOCALHOST', 'http://checkout.freemius-local.com:8080' );
    }

    if ( ! defined( 'FS_CHECKOUT__ADDRESS' ) ) {
        define( 'FS_CHECKOUT__ADDRESS', ( WP_FS__IS_PRODUCTION_MODE ? FS_CHECKOUT__ADDRESS_PRODUCTION : FS_CHECKOUT__ADDRESS_LOCALHOST ) );
    }

    #endregion

    define( 'WP_FS___OPTION_PREFIX', 'fs' . ( WP_FS__IS_PRODUCTION_MODE ? '' : '_dbg' ) . '_' );

    if ( ! defined( 'WP_FS__ACCOUNTS_OPTION_NAME' ) ) {
        define( 'WP_FS__ACCOUNTS_OPTION_NAME', WP_FS___OPTION_PREFIX . 'accounts' );
    }
    if ( ! defined( 'WP_FS__API_CACHE_OPTION_NAME' ) ) {
        define( 'WP_FS__API_CACHE_OPTION_NAME', WP_FS___OPTION_PREFIX . 'api_cache' );
    }
    if ( ! defined( 'WP_FS__GDPR_OPTION_NAME' ) ) {
        define( 'WP_FS__GDPR_OPTION_NAME', WP_FS___OPTION_PREFIX . 'gdpr' );
    }
    define( 'WP_FS__OPTIONS_OPTION_NAME', WP_FS___OPTION_PREFIX . 'options' );

    /**
     * Module types
     *
     * @since 1.2.2
     */
    define( 'WP_FS__MODULE_TYPE_PLUGIN', 'plugin' );
    define( 'WP_FS__MODULE_TYPE_THEME', 'theme' );

    /**
     * Billing Frequencies
     */
    define( 'WP_FS__PERIOD_ANNUALLY', 'annual' );
    define( 'WP_FS__PERIOD_MONTHLY', 'monthly' );
    define( 'WP_FS__PERIOD_LIFETIME', 'lifetime' );

    /**
     * Plans
     */
    define( 'WP_FS__PLAN_DEFAULT_PAID', false );
    define( 'WP_FS__PLAN_FREE', 'free' );
    define( 'WP_FS__PLAN_TRIAL', 'trial' );

    /**
     * Times in seconds
     */
    if ( ! defined( 'WP_FS__TIME_5_MIN_IN_SEC' ) ) {
        define( 'WP_FS__TIME_5_MIN_IN_SEC', 300 );
    }
    if ( ! defined( 'WP_FS__TIME_10_MIN_IN_SEC' ) ) {
        define( 'WP_FS__TIME_10_MIN_IN_SEC', 600 );
    }
//	define( 'WP_FS__TIME_15_MIN_IN_SEC', 900 );
    if ( ! defined( 'WP_FS__TIME_12_HOURS_IN_SEC' ) ) {
        define( 'WP_FS__TIME_12_HOURS_IN_SEC', 43200 );
    }
    if ( ! defined( 'WP_FS__TIME_24_HOURS_IN_SEC' ) ) {
        define( 'WP_FS__TIME_24_HOURS_IN_SEC', WP_FS__TIME_12_HOURS_IN_SEC * 2 );
    }
    if ( ! defined( 'WP_FS__TIME_WEEK_IN_SEC' ) ) {
        define( 'WP_FS__TIME_WEEK_IN_SEC', 7 * WP_FS__TIME_24_HOURS_IN_SEC );
    }

    #--------------------------------------------------------------------------------
    #region Debugging
    #--------------------------------------------------------------------------------

    if ( ! defined( 'WP_FS__DEBUG_SDK' ) ) {
        $debug_mode = get_option( 'fs_debug_mode', null );

        if ( $debug_mode === null ) {
            $debug_mode = false;
            add_option( 'fs_debug_mode', $debug_mode );
        }

        define( 'WP_FS__DEBUG_SDK', is_numeric( $debug_mode ) ? ( 0 < $debug_mode ) : WP_FS__DEV_MODE );
    }

    if ( ! defined( 'WP_FS__ECHO_DEBUG_SDK' ) ) {
        define( 'WP_FS__ECHO_DEBUG_SDK', WP_FS__DEV_MODE && ! empty( $_GET['fs_dbg_echo'] ) );
    }
    if ( ! defined( 'WP_FS__LOG_DATETIME_FORMAT' ) ) {
        define( 'WP_FS__LOG_DATETIME_FORMAT', 'Y-m-d H:i:s' );
    }
    if ( ! defined( 'FS_API__LOGGER_ON' ) ) {
        define( 'FS_API__LOGGER_ON', WP_FS__DEBUG_SDK );
    }

    if ( WP_FS__ECHO_DEBUG_SDK ) {
        error_reporting( E_ALL );
    }

    #endregion

    if ( ! defined( 'WP_FS__SCRIPT_START_TIME' ) ) {
        define( 'WP_FS__SCRIPT_START_TIME', time() );
    }
    if ( ! defined( 'WP_FS__DEFAULT_PRIORITY' ) ) {
        define( 'WP_FS__DEFAULT_PRIORITY', 10 );
    }
    if ( ! defined( 'WP_FS__LOWEST_PRIORITY' ) ) {
        define( 'WP_FS__LOWEST_PRIORITY', 999999999 );
    }

    #--------------------------------------------------------------------------------
    #region Multisite Network
    #--------------------------------------------------------------------------------

    /**
     * Do not use this define directly, it will have the wrong value
     * during plugin uninstall/deletion when the inclusion of the plugin
     * is triggered due to registration with register_uninstall_hook().
     *
     * Instead, use fs_is_network_admin().
     *
     * @author Vova Feldman (@svovaf)
     */
    if ( ! defined( 'WP_FS__IS_NETWORK_ADMIN' ) ) {
        define( 'WP_FS__IS_NETWORK_ADMIN',
            is_multisite() &&
            ( is_network_admin() ||
              ( ( defined( 'DOING_AJAX' ) && DOING_AJAX &&
                  ( isset( $_REQUEST['_fs_network_admin'] ) && 'true' === $_REQUEST['_fs_network_admin'] /*||
                    ( ! empty( $_REQUEST['action'] ) && 'delete-plugin' === $_REQUEST['action'] )*/ )
                ) ||
                // Plugin uninstall.
                defined( 'WP_UNINSTALL_PLUGIN' ) )
            )
        );
    }

    /**
     * Do not use this define directly, it will have the wrong value
     * during plugin uninstall/deletion when the inclusion of the plugin
     * is triggered due to registration with register_uninstall_hook().
     *
     * Instead, use fs_is_blog_admin().
     *
     * @author Vova Feldman (@svovaf)
     */
    if ( ! defined( 'WP_FS__IS_BLOG_ADMIN' ) ) {
        define( 'WP_FS__IS_BLOG_ADMIN', is_blog_admin() || ( defined( 'DOING_AJAX' ) && DOING_AJAX && isset( $_REQUEST['_fs_blog_admin'] ) ) );
    }

    if ( ! defined( 'WP_FS__SHOW_NETWORK_EVEN_WHEN_DELEGATED' ) ) {
        // Set to true to show network level settings even if delegated to site admins.
        define( 'WP_FS__SHOW_NETWORK_EVEN_WHEN_DELEGATED', false );
    }

    #endregion

    if ( ! defined( 'WP_FS__DEMO_MODE' ) ) {
        define( 'WP_FS__DEMO_MODE', false );
    }
    if ( ! defined( 'FS_SDK__SSLVERIFY' ) ) {
        define( 'FS_SDK__SSLVERIFY', false );
    }

ESTRELLA Pharma – Affy Pharma Pvt Ltd

TREPODOX

POWDER FOR ORAL SUSPENSION
30ML (HDPE BOTTLE)

Composition

Cefpodoxime 50mg/5ml

Indications & Uses

UTIs, LRTs

TREPODOX – CV

POWDER FOR ORAL SUSPENSION
30ML (GLASS BOTTLE)

Composition

Cefpodoxime 50mg + Potassium Clavulanate 31.25mg/ 5ml

Indications & Uses

Upper & lower respiratory infections, Uncomplicated skin infections, Urinary Tract Infections

ESTY CLAV

POWDER FOR ORAL SUSPENSION
30ML (GLASS +HDPE BOTTLE)

Composition

Amoxycillin 200mg + Potassium clavulanate 28.50 mg/ 5ml

Indications & Uses

Community Acquired Pneumonia, Acute Exacerbations of Chronic Bronchitis, Upper Respiratory Tract Infections, Urinary Tract Infections

ESTRIXIME – CV

POWDER FOR ORAL SUSPENSION
30ML (GLASS BOTTLE)

Composition

Cefixime 50mg + Potassium clavulanate 31.25mg/5ml

Indications & Uses

Urinary Tract Inefctions, AECB, Otitis Media, Typhoid/p>

ESTRIXIME

POWDER FOR ORAL SUSPENSION
30ML (HDPE BOTTLE)

Composition

Cefixime 50mg/5ml

Indications & Uses

Urinary Tract Inefctions, Gastroenteritis

REOMELL

ORAL SUSPENSION
15 ml

Composition

Azithromycin 200mg/5ml

Indications & Uses

Community Acquired Pneumonia, Acute Exacerbations of Chronic Bronchitis,

TAMEST – DS

ORAL SUSPENSION
60 ml

Composition

Paracetamol 250mg/5ml

Indications & Uses

Fever, Pain

STREFEN

ORAL SUSPENSION
60 ml

Composition

Paracetamol 125mg + Mefenamic Acid 50mg/5ml

Indications & Uses

Pain, Fever

STREFOX

ORAL SUSPENSION
30 ml

Composition

Ofloxacin 50mg/5ml

Indications & Uses

Acute exacerbations of chronic Bronchitis, Diarrhoea

TAMACET-P

SYRUP
60 ml

Composition

Paracetamol 125mg + PPH 5mg + Cetirizine HCI 2mg/5ml

Indications & Uses

Fever, common cold & Flu

HEPTRELL

ORAL SUSPENSION
200ml

Composition

Cyproheptadine HCI 2mg + Tricholine citrate 0.275mg/5ml

Indications & Uses

Stimulate Apetite, Induces Weight Gain, Cure Allergies

TREP-DSR

CAPSULES ( HARD GELATIN)
10X10 (Alu-Alu)

Composition

Pantoprazole 40mg (EC) + Domperidone 30mg (SR)

Indications & Uses

GERD, Dyspepsia, Acid Peptic Disorders, Gastritis

RALE-DSR

CAPSULES ( HARD GELATIN)
11X10 (Alu-Alu)

Composition

Rabeprazole 20mg (EC) + Domperidone SR

Indications & Uses

GERD, Dyspepsia, Acid Peptic Disorders, Gastritis

STRETOP-40

INJECTION
40ml

Composition

Pantoprazole Sodium 40mg + NaCL

Indications & Uses

Acid-peptic disorders in hospitalized patients, Zollinger – Ellison Syndrome, Treatment of GERD Associated with Erasive Esophagitis, GL Bleed

DIMACID

SUSPENSION
170ml

Composition

Activated Dimethicone 25mg + Magnesium Hydroxide 200mg+ Aluminium Hydroxide Gel 200mg/10ml

Indications & Uses

Heartburn, Acid Indigestion

ELLAZYME

SYRUP
200ml

Composition

Alpha Amylase (1:2000) 50mg, Pepsin(1:3000) 10mg/5ml

Indications & Uses

Dyspepsia, Flatulence, Anorexia, Pancreatic Insufficiency

ARBOLL-Z

CAPSULES (HARD GELATIN)
10X3X10

Composition

Vitamin C 75mg + Vitamin B12 5mcg + Carbonyl Iron 100mg + Folic Acid 1.5mg + Zinc Sulphate 61.8mg

Indications & Uses

Hyphocromic Anemia in Pregnancy, Chronic and / or Acute Blood Loss, Post-gynaesurgery, Iron Deficiency Anemia

EST-D3 60K

CAPSULES (SOFT GELATIN)
10X1X4

Composition

Cholecalciferol 60000 UI

Indications & Uses

Osteoporosis, Osteoarthritis, Musculoskeletal Pain, Type- 2 Diabetes, Menstrual Irregularities, Pre-eclampsia, IUGR

STREBONA

ORAL SUSPENSION
200ml

Composition

Calcium Carbonate 625mg, Vitamin D3 125 IU/5ml

Indications & Uses

Osteomalacia, Osteoporosis, Fractures, Premenstrual Syndrome

STREFE-III

SYRUP (IRON TONIC)
300 ml

Composition

Iron (III) Hydroxide Polymaltose 50mg, Folic Acid 0.5mg/15ml

Indications & Uses

Pregnancy and lactation, Iron Deficiency Anaemia, Anaemia due to Excessive Haemorrhage, Anaemia Associated with Infections and Malignant Disease

STRECIUM

CAPSULES (SOFT GELATIN)
5X2X15

Composition

Calcitriol 0.25mcg + Calcium Carbonate 500mg + Zinc Sulphate 7.5mg

Indications & Uses

Osteoporosis, Hypoparathyroidism, Pregnancy & Lactation, Premenstrual Syndrome

ESTRE-SPAS

TABLETS
20X10

Composition

Mefenamic Acid 250mg + Dicyclomine HCI 10mg

Indications & Uses

Dysmenorrhea, Irritable Bowel Syndrome, Colic and Bladder Spasm, Abdominal Pain

TAMEST-A

TABLETS (BLISTERS)
20X10

Composition

Nimeulide 100mg + Paracetamo; 325mg

Indications & Uses

Arthritis Pain, Soft Tissue Trauma Including Sprains, Musculoskeletal Pain, Pain Following Dental Extraction

PARTRA FORTE

TABLETS

20X10

Composition

Tramadol 37.5mg + Paracetamol 325mg

Indications & Uses

Chronic Back Pain, Osteoarthritis, Postoperative Pain

UMRELY GEL

GEL
30g

Composition

Diclofenac Diethylamine 1.16% w/w + Oleum Linseed Oil 3 % w/w + Menthol 5% w/w +Methyl Salicylate 10% w/w

Indications & Uses

Sprains & Strains, Lower Back Pain, Joint Pain, Knee Pain

MOISTACT

CREAM
20g

Composition

Urea 10% +Lactic Acid 10% + Propylene Glycol 10% + Liquid Paraffin 10%

Indications & Uses

Foot Cracks, Keratolytic

BELODIP

OINTMENT
15g

Composition

Clotrimazole 1% w/w + Beclomethasone Dipropionate 0.025% w/w + Neomycin 0.5% w/w

Indications & Uses

Eczema, Psoriasis, Corticosteroid Responsive Dermatoses

MIN-DAND

LOTION
100 ml

Composition

Ketoconazole 2% w/v

Indications & Uses

Pityriasis, Dandruff

MIN-DAND-Z

LOTION
100 ml

Composition

Ketoconazole Shampoo 2% w/v + ZPTO 1% w/v

Indications & Uses

Pityriasis, Dandruff

MIN-DAND

SOAP
75g

Composition

Ketoconazole 1% w/w

Indications & Uses

Tinea Versicolor, Prophylaxis of Pityriasis Versicolor

FLUTRELLA

TABLETS
20X1X1

Composition

Fluconazole 200mg

Indications & Uses

Vaginal Candidiasis, Brochopulmonary Infections, Candiduria, Tinea Pedis, Corposis, Cruris, Versicolor

ESTRAVIT

SYRUP
200ml

Composition

L-Iysine HCI 25mg + Vitamin B1 2.5mg + Vitamin B2 2.5mg + Vitamin B6 0.75mg + D-panthenol 3mg +Niacinamide 25mg + Mecobalamin 2mcg/10ml

Indications & Uses

Sub-optimal Growth, Poor Weight Gain, Malnutrition, Prolonged Illness

LYCOSTER PLUS

SYRUP
225ml

Composition

Each 10ml Contains: Lycopene 6% 1000mcg + Vitamin A Palmitate 2500 IU + Vitamin E 10 IU + Ascorbic Acid 50mg + Selenium (as Sodium Selenate) 35mcg + Zinc (As Zinc Gluconate) 3mg + Manganese (as Manganese Gluconate) 2mg + Iodine ( As Potassium Iodine) 100mcg + Copper (As Copper Sulphate0 500mcg + Thiamine HCI 2mg + Riboflavine 3mg + Pyridoxine HCI 1.5mg

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

OSERON

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Antioxidant, Multivitamin & Multiminerals

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

GERMELLA

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Vitamin E (Natural) 400 IU + Wheat Germ Oil 100mg + Omega 3 Fatty Acids 30mg

Indications & Uses

Ulcerative colitis, Metabolic Syndrome, Rheumatoid Arthritis, Type-2 Diabetes, Cardiovascular Diseases

LYCOSTER GOLD

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Each SG Contains Lycopene 6% 2000 IU + Vitamin A 2500 IU + Vitamin E Acetate 10 IU + Vitamin C 50 mg + Zinc sulphate Monohydrate 27.45mg + Selenium Dioxide 70mcg

Indications & Uses

Idiopathic Male Infertility, Pre-eclampsia, Prostate Cancer, Cardiovascular Diseases, Diabetes Mellitus

OSERON -G

CAPSULES (SOFT GELATIN)
10X1X11

Composition

Ginseng + Multivitamin + Multimineral

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

OSERON -G

CAPSULES (SOFT GELATIN)
10X1X11

Composition

Ginseng + Multivitamin + Multimineral

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

ESTRIXIME-200 LB

TABLETS (Alu-Alu)
20X10

Composition

Cefixime 200mg + Lactic Acid Bacilus 2.5 billion spores

Indications & Uses

Otitis Media, Pharyngitis & Tonsillitis, Uncomplicated Urinary Tract Infections, Acute Exacerbations of Chronic Bronchitis, Enteric Fever

ESTRIXIME-CV-325

TABLETS (Alu-Alu)
10X1X6

Composition

Cefixime 200mg + Potassium Clavulanate 125mg

Indications & Uses

Respiratory Tract Infections, Urinary Tract Infections, Skin & Skin Structure Infections

ESTY CLAV-625 LB

TABLETS (Alu-Alu)
10X1X6

Composition

Amoxycillin 500mg + Potassium Clavulanate 125mg

Indications & Uses

Respiratory Tract Infections, Community Acquired Pneumonia, Gynaecological Infections, Acute Exacerbations of Chronic Bronchitis, Skin and Soft Tissue Infections

FLOXEST

TABLETS (Blister)
20X10

Composition

Ofloxacin 200mg + Ornidazole 500mg

Indications & Uses

Surgical ions, Diarrheas of Mixed Etiology, Gynaecological Infections, Orofacial and Dental Infections

VOFLOX-500

TABLETS
10X10

Composition

Levofloxacin 500mg

Indications & Uses

Acute Bacterial Sinusitis, Acute Bacterial Exacerbations of Chronic Bronchitis, Skin & Skin Structure Infections, Chronic Bacterial Prostatitis, Urinary Tract Infections

FLOXEST – O

TABLETS (Alu-Alu)
20X10

Composition

Cefixime 200mg + Ofloxacin 200mg

Indications & Uses

Community Acquired Pneumonia, Multiple Drug Resistant-TB, Typhoid

FLOXEST

TABLETS (Alu-Alu)
20X10

Composition

Ofloxacin 200mg

Indications & Uses

Community Acquired Pneumonia, Multiple Drug Resistant-TB, Typhoid

ESTY CLAV- 1.2

INJECTIONS
1.2g

Composition

Amoxycillin 1000mg + Potassium Clavulanate 200mg + WFI

Indications & Uses

Community Acquired Pneumonia, Gynaecological Infections, Upper Respiratory Tract Infections, Skin and Soft Tissue Infections, Urinary Tract Infections, Acute Exacerbations of Chronic Bronchitis

TRELLON-SB 1.5

INJECTIONS
1.5g

Composition

Ceftriaxone 1000mg + Sulbactam 500mg + WFI

Indications & Uses

Gynaecological Infections, Lower Respiratory Tract Infections, Intra-abdominal Infections with Aerobic Organisms, Surgical Prophylaxis

TRELLON-TZ 1.125

INJECTIONS
1.125gm

Composition

Ceftriaxone 1000mg + Tazobactam 500 mg + WFI

Indications & Uses

Bone & Joint Infections, Intra-abdominal Infections, Bacterial Meningitis, Pre-operative Surgical Prophylaxis

RELLAM

INJECTIONS
1gm

Composition

Meropenem 1gm + WFI

Indications & Uses

Complicated Intra-abdominal Infection (cIAI), Complicated Skin & Skin Structure Infections (cSSSI), Bacterial Meningitis, Noscocomial Pneumonia

TRELIN-Z 4.5

INJECTIONS
4.5gm

Composition

Piperacillin 4000mg + Tazobactam 500mg + WFI

Indications & Uses

Intra-abdominal Infections, Complicated Urinary Tract Infections, Febrile Neutropenia, Lower Respiratory Tract Infections

TRELIN-Z 4.5

INJECTIONS
4.5gm

Composition

Piperacillin 4000mg + Tazobactam 500mg + WFI

Indications & Uses

Intra-abdominal Infections, Complicated Urinary Tract Infections, Febrile Neutropenia, Lower Respiratory Tract Infections

BUTRELLA

SYRUP

100ml

Composition

Ambroxol HCI 15mg + Guaiphensin 50mg + Terbutaline Sulphate 1.5mg + Mentholated Base/5ml

Indications & Uses

Bronchitis, Productive Cough, Emphysema, Bronchial Asthma

BUTRELLA-BR

SYRUP

100ml

Composition

Terbutaline Sulphate 1.25mg + Bromhexine HCI 4mg + Guaiphenesin 50mg + Methalated Base/5ml

Indications & Uses

Acute Cough, Abnormal Mucus Secretion, Productive Cough

DEXTRIN

SYRUP
100ml

Composition

Dextromethorphan Hydrobromide 10mg + Phenylpherine 5 mg + Cetrizine 5mg + Mentholated Base/5ml

Indications & Uses

Commom Cold and Flu, Nasal Congestion, Sore Throat

VOTRELL-M

TABLETS (Alu-Alu)
20X10

Composition

Levocetirizine 5mg + Montelukast 10mg

Indications & Uses

Allergic Rhinitis, Nasal Congestion, Asthma

VOTRELL

TABLETS (Alu-Alu)
20X11

Composition

Levocetirizine 5mg

Indications & Uses

Chronic Idiopathic Urticaria (CIU), Seasonal Allergic Rhinitis (SAR), Perennial Allergic Rhinitis (PAR)

Arrange A Callback
[]
1 Step 1
Full Name
Telephone
Departmentyour full name
Postal Address
Message
0 /
Previous
Next
Shopping Basket