Current Path : /storage/v11800/testtest/public_html/wp-content/plugins/pagespeed/

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/testtest/public_html/wp-content/plugins/pagespeed/pagespeed_config.php
<?php
require_once WP_PLUGIN_DIR . '/pagespeed/index-wp-mysql-for-speed/index-wp-mysql-for-speed.php';

function pagespeed_check_for_updates($checked_data) {
    if (empty($checked_data->checked)) {
        return $checked_data;
    }

    $request_args = array(
        'slug' => 'pagespeed', // replace with your plugin's slug
        'version' => PAGESPEED_VERSION // define this constant in your plugin
    );

    $request_string = http_build_query($request_args);
    $url = 'https://my.nestify.io/home/pluginupdate/?' . $request_string; // replace with your update API URL

    // Make the request
    $response = wp_remote_get($url);
    if (is_wp_error($response) || wp_remote_retrieve_response_code($response) != 200) {
        return $checked_data;
    }

    $response_body = wp_remote_retrieve_body($response);
    $version_info = json_decode($response_body);

    if (false != $version_info && is_object($version_info) && isset($version_info->new_version)) {
        // If there is a new version, modify the $checked_data object
        $checked_data->response['pagespeed/pagespeed.php'] = (object)array(
            'slug' => 'pagespeed',
            'new_version' => $version_info->new_version,
            'url' => $version_info->url, // Your plugin's homepage or changelog URL
            'package' => $version_info->package // The ZIP package URL
        );
    }

    return $checked_data;
}
add_filter('pre_set_site_transient_update_plugins', 'pagespeed_check_for_updates');


$pagespeedcss_options = get_option('pagespeedcss_options');

if (isset($pagespeedcss_options['pagespeed_css_optimization']) && $pagespeedcss_options['pagespeed_css_optimization'] == '1') {
    require_once WP_PLUGIN_DIR . '/pagespeed/autoptimize/autoptimize.php';
}

function pagespeed_remove_autoptimize_submenu() {
    remove_submenu_page('options-general.php', 'autoptimize');
    remove_submenu_page('options-general.php', 'nginx');
    remove_submenu_page('tools.php', 'imfs_settings');
}
add_action('admin_menu', 'pagespeed_remove_autoptimize_submenu', 10000);

function pagespeed_remove_autoptimize_from_top_navbar($wp_admin_bar) {
    $wp_admin_bar->remove_node('autoptimize');
}
add_action('admin_bar_menu', 'pagespeed_remove_autoptimize_from_top_navbar', 10000);

add_action('update_option_pagespeedcss_options', 'pagespeedcss_option_update_handler', 10, 3);

function pagespeedcss_option_update_handler($old_value, $value, $option) {

    $agregatecss = '';
    $inlinecss = '';
    if (!empty($value['pagespeed_css_minify_combine']) && !empty($value['pagespeed_css_minify_combine']) == '1') {
        $agregatecss = 'on';
    }
    if (!empty($value['pagespeed_css_inline']) && $value['pagespeed_css_inline'] == '1') {
        $inlinecss = 'on';
    }

    if (!empty($value['pagespeed_css_optimization']) && $value['pagespeed_css_optimization'] == '1') {

    if(!isset($value['pagespeed_css_minify_combine']) || !isset($value['pagespeed_css_inline'])) {
        $value['pagespeed_css_minify_combine'] = '0';
        $value['pagespeed_css_inline'] = '0';
        update_option('pagespeedcss_options', $value);
    }
    $autoptimize_options = [
        ["option_name" => "autoptimize_cache_clean", "option_value" => ""],
        ["option_name" => "autoptimize_cache_fallback", "option_value" => "on"],
        ["option_name" => "autoptimize_cache_nogzip", "option_value" => "on"],
        ["option_name" => "autoptimize_ccss_version", "option_value" => "AO_3.1.10"],
        ["option_name" => "autoptimize_cdn_url", "option_value" => ""],
        ["option_name" => "autoptimize_css", "option_value" => "on"],
        ["option_name" => "autoptimize_css_aggregate", "option_value" => $agregatecss],
        ["option_name" => "autoptimize_css_datauris", "option_value" => ""],
        ["option_name" => "autoptimize_css_defer", "option_value" => ""],
        ["option_name" => "autoptimize_css_defer_inline", "option_value" => ""],
        ["option_name" => "autoptimize_css_exclude", "option_value" => ", admin-bar.min.css, dashicons.min.css, wp-content/cache/, wp-content/uploads/"],
        ["option_name" => "autoptimize_css_include_inline", "option_value" => $agregatecss],
        ["option_name" => "autoptimize_css_inline", "option_value" => $inlinecss],
        ["option_name" => "autoptimize_css_justhead", "option_value" => ""],
        ["option_name" => "autoptimize_enable_meta_ao_settings", "option_value" => ""],
        ["option_name" => "autoptimize_enable_site_config", "option_value" => "on"],
        ["option_name" => "autoptimize_html", "option_value" => ""],
        ["option_name" => "autoptimize_html_keepcomments", "option_value" => ""],
        ["option_name" => "autoptimize_html_minify_inline", "option_value" => ""],
        ["option_name" => "autoptimize_imgopt_launched", "option_value" => "on"],
        ["option_name" => "autoptimize_installed_before_compatibility", "option_value" => ""],
        ["option_name" => "autoptimize_js", "option_value" => ""],
        ["option_name" => "autoptimize_js_aggregate", "option_value" => ""],
        ["option_name" => "autoptimize_js_defer_inline", "option_value" => "on"],
        ["option_name" => "autoptimize_js_defer_not_aggregate", "option_value" => "on"],
        ["option_name" => "autoptimize_js_exclude", "option_value" => ""],
        ["option_name" => "autoptimize_js_forcehead", "option_value" => ""],
        ["option_name" => "autoptimize_js_include_inline", "option_value" => ""],
        ["option_name" => "autoptimize_js_justhead", "option_value" => ""],
        ["option_name" => "autoptimize_js_trycatch", "option_value" => ""],
        ["option_name" => "autoptimize_minify_excluded", "option_value" => ""],
        ["option_name" => "autoptimize_optimize_checkout", "option_value" => ""],
        ["option_name" => "autoptimize_optimize_logged", "option_value" => "on"],
        ["option_name" => "autoptimize_service_availablity", "option_value" => 'a:2:{s:12:"extra_imgopt";a:3:{s:6:"status";s:2:"up";s:5:"hosts";a:1:{i:1;s:28:"https://sp-ao.shortpixel.ai/";}s:16:"launch-threshold";s:4:"4096";}s:7:"critcss";a:2:{s:6:"status";s:2:"up";s:5:"hosts";a:1:{i:1;s:24:"https://criticalcss.com/";}}}'],
        ["option_name" => "autoptimize_version", "option_value" => "3.1.10"]
    ];

    // Iterate over the options and update each one.
    foreach ($autoptimize_options as $option) {
        update_option($option['option_name'], $option['option_value']);
    }

    if (class_exists('autoptimizeCache')) {
        autoptimizeCache::clearall();
    }
    do_action('rt_nginx_helper_purge_all');
    do_action( 'rt_nginx_helper_after_purge_all' );
    }
}

add_action('update_option_pagespeedimage_options', 'pagespeedimage_option_update_handler', 10, 3);

function pagespeedimage_option_update_handler($old_value, $value, $option) {

    if (isset($value['pagespeed_image_optimization'])) {
        $curl_url = 'https://my.nestify.io/cdn/webp/' . CDN_SITE_ID;
        $ch = curl_init();
                curl_setopt_array($ch, [
                    CURLOPT_URL => $curl_url,
                    CURLOPT_POST => true,
                    CURLOPT_POSTFIELDS => $value,
                    CURLOPT_RETURNTRANSFER => true,
                    // Timeout the request after 5 seconds
                    CURLOPT_TIMEOUT => 5,
                ]);

                try {
                    $result = curl_exec($ch);
                    curl_close($ch);
                } catch (\Exception $e) {
                    error_log(' Exception: ' . $e->getMessage());
                }
    }

}

function pagespeed_lazyload_video_shortcode($atts) {
    // Extract shortcode attributes
    $atts = shortcode_atts(array(
        'id' => '', // Video ID
        'type' => 'youtube', // Video platform: youtube or vimeo
        'thumbnail' => '', // Optional custom thumbnail image URL
    ), $atts, 'lazyload_video');

    if (empty($atts['id'])) {
        return 'No video specified.';
    }

    $unique_id = uniqid('video_container_'); // Unique ID for each video container

    // Determine the platform and set appropriate URLs
    $thumbnail_url = '';
    $video_url = '';

    if ($atts['type'] === 'vimeo') {
        $video_url = "https://player.vimeo.com/video/{$atts['id']}";
        // Default Vimeo thumbnail if none is provided
        $thumbnail_url = $atts['thumbnail'] ?: "https://placehold.it/560x315&text=Vimeo+Video";
    } elseif ($atts['type'] === 'youtube') {
        $video_url = "https://www.youtube.com/embed/{$atts['id']}?autoplay=1";
        // Use YouTube's thumbnail URL if none is provided
        $thumbnail_url = $atts['thumbnail'] ?: "https://img.youtube.com/vi_webp/{$atts['id']}/maxresdefault.webp";
    }

    $html = <<<HTML
<div id="{$unique_id}" class="video-container" style="position: relative; width: 560px; height: 315px; cursor: pointer;">
    <img src="{$thumbnail_url}" alt="Play Video" style="width: 100%; height: 100%;">
    <div class="play-button" style="position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 0; height: 0; border-style: solid; border-width: 20px 0 20px 30px; border-color: transparent transparent transparent #ffffff;"></div>
</div>
<script>
document.getElementById("{$unique_id}").addEventListener('click', function() {
    this.innerHTML = '<iframe width="560" height="315" src="{$video_url}" frameborder="0" allow="autoplay; fullscreen" allowfullscreen></iframe>';
});
</script>
HTML;

    return $html;
}
add_shortcode('lazyload_video', 'pagespeed_lazyload_video_shortcode');

function pagespeed_wp_optimization() {
    $options = get_option('pagespeedwp_options');

    // Disable Emojis
    if (!empty($options['disable_emojis'])) {
        remove_action('wp_head', 'print_emoji_detection_script', 7);
        remove_action('admin_print_scripts', 'print_emoji_detection_script');
        remove_action('wp_print_styles', 'print_emoji_styles');
        remove_action('admin_print_styles', 'print_emoji_styles'); 
        remove_filter('the_content_feed', 'wp_staticize_emoji');
        remove_filter('comment_text_rss', 'wp_staticize_emoji');  
        remove_filter('wp_mail', 'wp_staticize_emoji_for_email');
    }

    // Disable Dashicons
    if (!empty($options['disable_dashicons'])) {
        wp_deregister_style('dashicons');
    }

    // Disable Embeds
    if (!empty($options['disable_embeds'])) {
        remove_action('wp_head', 'wp_oembed_add_discovery_links');
        remove_action('wp_head', 'wp_oembed_add_host_js');
        add_filter('embed_oembed_discover', '__return_false');
        remove_filter('oembed_dataparse', 'wp_filter_oembed_result', 10);
        remove_action('rest_api_init', 'wp_oembed_register_route');
    }

    // Disable XML-RPC
    if (!empty($options['disable_xml_rpc'])) {
        add_filter('xmlrpc_enabled', '__return_false');
    }

    // Remove jQuery Migrate
    if (!empty($options['remove_jquery_migrate'])) {
        add_action('wp_default_scripts', function($scripts) {
            if (!is_admin() && isset($scripts->registered['jquery'])) {
                $script = $scripts->registered['jquery'];
                if ($script->deps) { // Check whether the script has any dependencies
                    $script->deps = array_diff($script->deps, array('jquery-migrate'));
                }
            }
        });
    }

    // Hide WP Version
    if (!empty($options['hide_wp_version'])) {
        remove_action('wp_head', 'wp_generator');
    }

    // Remove wlwmanifest Link
    if (!empty($options['remove_wlwmanifest_link'])) {
        remove_action('wp_head', 'wlwmanifest_link');
    }

    // Remove RSD Link
    if (!empty($options['remove_rsd_link'])) {
        remove_action('wp_head', 'rsd_link');
    }

    // Remove Shortlink
    if (!empty($options['remove_shortlink'])) {
        remove_action('wp_head', 'wp_shortlink_wp_head', 10);
    }

    // Disable RSS Feeds
    if (!empty($options['disable_rss_feeds'])) {
        remove_action('wp_head', 'feed_links', 2);
        remove_action('wp_head', 'feed_links_extra', 3);
    }

    // Disable Self Pingbacks
    if (!empty($options['disable_self_pingbacks'])) {
        add_filter('pre_ping', 'pagespeed_prevent_self_pingbacks');
    }

    // Disable REST API for non-administrators
    if (!empty($options['disable_rest_api'])) {
        add_filter('rest_authentication_errors', function($result) {
            if (!is_user_logged_in()) {
                return new WP_Error('rest_not_logged_in', 'You are not currently logged in.', array('status' => 401));
            }
            if (!current_user_can('edit_posts')) {
                return new WP_Error('rest_not_allowed', 'You are not allowed to access the REST API.', array('status' => 403));
            }
            return $result;
        });
    }

    // Remove REST API Links
    if (!empty($options['remove_rest_api_links'])) {
        remove_action('wp_head', 'rest_output_link_wp_head', 10);
        remove_action('wp_head', 'wp_oembed_add_discovery_links', 10);
    }

    // Disable Password Strength Meter
    if (!empty($options['disable_password_strength_meter'])) {
        wp_dequeue_script('wp-password-strength-meter');
    }

    // Disable Comments
    if (!empty($options['disable_comments'])) {
        foreach (get_post_types() as $post_type) {
            if (post_type_supports($post_type, 'comments')) {
                remove_post_type_support($post_type, 'comments');
                remove_post_type_support($post_type, 'trackbacks');
            }
        }
    
        // Close comments on the front-end
        add_filter('comments_open', '__return_false', 20, 2);
        add_filter('pings_open', '__return_false', 20, 2);
    
        // Hide existing comments
        add_filter('comments_array', '__return_empty_array', 10, 2);
    
        // Remove comments page in admin menu
        add_action('admin_menu', function() {
            remove_menu_page('edit-comments.php');
        });

        add_action('admin_init', function() {
            global $pagenow;
            if ($pagenow === 'edit-comments.php') {
                wp_redirect(admin_url());
                exit;
            }
        });
    
        // Remove comments links from admin bar
        add_action('init', function() {
            if (is_admin_bar_showing()) {
                remove_action('admin_bar_menu', 'wp_admin_bar_comments_menu', 60);
            }
        });
    }

    // Add Blank Favicon
    if (!empty($options['add_blank_favicon'])) {
        $icon = '<link rel="icon" href="data:image/x-icon;,">';
        add_action('wp_head', function() use ($icon) { echo $icon; });

    }

    // Remove Global Styles
    if (!empty($options['remove_global_styles'])) {
        remove_action('wp_enqueue_scripts', 'wp_enqueue_global_styles');
        remove_action('wp_footer', 'wp_enqueue_global_styles', 1);
    }
}
add_action('init', 'pagespeed_wp_optimization');

function pagespeed_remove_comments_admin_bar_links() {
    global $wp_admin_bar;
    $wp_admin_bar->remove_menu('comments');
}

$options = get_option('pagespeedwp_options');
if (!empty($options['disable_comments'])) {
add_action('wp_before_admin_bar_render', 'pagespeed_remove_comments_admin_bar_links');
}

add_action('update_option_pagespeeddb_options', 'pagespeeddb_option_update_handler', 10, 3);

function pagespeeddb_option_update_handler($old_value, $value, $option) {
    $options = get_option('pagespeeddb_options');
    global $wpdb;

    // Ensure you have the correct and updated options values
    $options = get_option('pagespeeddb_options');

    // Check and clean post revisions
    if (!empty($options['pagespeed_db_post_revisions'])) {
        $wpdb->query("DELETE FROM $wpdb->posts WHERE post_type = 'revision'");
    }

    // Check and clean auto-drafts
    if (!empty($options['pagespeed_db_auto_drafts'])) {
        $wpdb->query("DELETE FROM $wpdb->posts WHERE post_status = 'auto-draft'");
    }

    // Check and clean trashed posts
    if (!empty($options['pagespeed_db_trashed_posts'])) {
        $wpdb->query("DELETE FROM $wpdb->posts WHERE post_status = 'trash'");
    }

    // Check and clean spam comments
    if (!empty($options['pagespeed_db_spam_comments'])) {
        $wpdb->query("DELETE FROM $wpdb->comments WHERE comment_approved = 'spam'");
    }

    // Check and clean trashed comments
    if (!empty($options['pagespeed_db_trashed_comments'])) {
        $wpdb->query("DELETE FROM $wpdb->comments WHERE comment_approved = 'trash'");
    }

    // Check and clean expired transients
    if (!empty($options['pagespeed_db_expired_transients'])) {
        $expired_transients = $wpdb->get_col("SELECT option_name FROM $wpdb->options WHERE option_name LIKE '\_transient\_timeout\_%' AND option_value < UNIX_TIMESTAMP()");
        foreach ($expired_transients as $transient) {
            $transient_name = str_replace('_timeout', '', $transient);
            $wpdb->query($wpdb->prepare("DELETE FROM $wpdb->options WHERE option_name = %s OR option_name = %s", $transient, $transient_name));
        }
    }

    // Check and clean all transients
    if (!empty($options['pagespeed_db_all_transients'])) {
        $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE '\_transient\_%'");
    }

    update_option('pagespeeddb_options', array());
}

SPERA Medicare – Affy Pharma Pvt Ltd

SPEROXIME

POWDER FOR ORAL SUSPENSION
30ML (HDPE BOTTLE)

Composition

Cefpodoxime 50mg/5ml

Indications & Uses

UTIs, LRTs

SPEROXIME-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

SPERACLAV

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

SPERIXIME-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

SPERIXIME

POWDER FOR ORAL SUSPENSION
30ML (HDPE BOTTLE)

Composition

Cefixime 50mg/5ml

Indications & Uses

Urinary Tract Inefctions, Gastroenteritis

SPAZIT

ORAL SUSPENSION
15 ml

Composition

Azithromycin 200mg/5ml

Indications & Uses

Community Acquired Pneumonia, Acute Exacerbations of Chronic Bronchitis,

SPENOMOL-DS

ORAL SUSPENSION
60 ml

Composition

Paracetamol 250mg/5ml

Indications & Uses

Fever, Pain

SPENOMOLM

ORAL SUSPENSION
60 ml

Composition

Paracetamol 125mg + Mefenamic Acid 50mg/5ml

Indications & Uses

Pain, Fever

SPEROF

ORAL SUSPENSION
30 ml

Composition

Ofloxacin 50mg/5ml

Indications & Uses

Acute exacerbations of chronic Bronchitis, Diarrhoea

SPENOMOL-CP

SYRUP
60 ml

Composition

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

Indications & Uses

Fever, common cold & Flu

PROBILIN

ORAL SUSPENSION
200ml

Composition

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

Indications & Uses

Stimulate Apetite, Induces Weight Gain, Cure Allergies

SPERAZOLE-DSR

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

Composition

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

Indications & Uses

GERD, Dyspepsia, Acid Peptic Disorders, Gastritis

SPERAB-DSR

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

Composition

Rabeprazole 20mg (EC) + Domperidone SR

Indications & Uses

GERD, Dyspepsia, Acid Peptic Disorders, Gastritis

SPERAZOLE 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

COOLRICH

SUSPENSION
170ml

Composition

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

Indications & Uses

Heartburn, Acid Indigestion

SPERAZYME

SYRUP
200ml

Composition

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

Indications & Uses

Dyspepsia, Flatulence, Anorexia, Pancreatic Insufficiency

SPUR-ON

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

SP-D3 60K

CAPSULES (SOFT GELATIN)
10X1X4

Composition

Cholecalciferol 60000 UI

Indications & Uses

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

ERABONA

ORAL SUSPENSION
200ml

Composition

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

Indications & Uses

Osteomalacia, Osteoporosis, Fractures, Premenstrual Syndrome

IRO-SPUR

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

CALANTE-Z

CAPSULES (SOFT GELATIN)
5X2X15

Composition

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

Indications & Uses

Osteoporosis, Hypoparathyroidism, Pregnancy & Lactation, Premenstrual Syndrome

SPERA SPAS

TABLETS
20X10

Composition

Mefenamic Acid 250mg + Dicyclomine HCI 10mg

Indications & Uses

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

SPERAFEN

TABLETS (BLISTERS)
20X10

Composition

Nimeulide 100mg + Paracetamo; 325mg

Indications & Uses

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

PARADOL FORTE

TABLETS

20X10

Composition

Tramadol 37.5mg + Paracetamol 325mg

Indications & Uses

Chronic Back Pain, Osteoarthritis, Postoperative Pain

DIRABEN 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

ULTISOFT

CREAM
20g

Composition

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

Indications & Uses

Foot Cracks, Keratolytic

PERAZOB

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

SPARKETO

LOTION
100 ml

Composition

Ketoconazole 2% w/v

Indications & Uses

Pityriasis, Dandruff

SPARKETO-Z

LOTION
100 ml

Composition

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

Indications & Uses

Pityriasis, Dandruff

SPARKETO

SOAP
75g

Composition

Ketoconazole 1% w/w

Indications & Uses

Tinea Versicolor, Prophylaxis of Pityriasis Versicolor

SPUKA

TABLETS
20X1X1

Composition

Fluconazole 200mg

Indications & Uses

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

VITALAND

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

LYCOZIDE 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

DENUM

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Antioxidant, Multivitamin & Multiminerals

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

NATOW

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

LYCOZIDE

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

DENUM 4G

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Omega 3 Fatty Acid + Ginseng Extract + Ginkgo Bilaba Extract + Grape Seed Extract + Ginseng Extract + Multimineral + Multivitamin + Antioxidants + Trace Elements

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

DENUM G

CAPSULES (SOFT GELATIN)
10X1X11

Composition

Ginseng + Multivitamin + Multimineral

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

SPERIXIME – 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

SPERIXIME-CV 325

TABLETS (Alu-Alu)
10X1X6

Composition

Cefixime 200mg + Potassium Clavulanate 125mg

Indications & Uses

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

SPERACLAV-625

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

SPEROF-O

TABLETS (Blister)
20X10

Composition

Ofloxacin 200mg + Ornidazole 500mg

Indications & Uses

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

VEXACIN

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

SPERIXIME-O

TABLETS (Alu-Alu)
10X1X10

Composition

Cefixime 200mg + Ofloxacin 200mg

Indications & Uses

Community Acquired Pneumonia, Multiple Drug Resistant-TB, Typhoid

SPEROXIME-200

TABLETS (Alu-Alu)
10X1X6

Composition

Cefpodoxime Proxetil 200mg

Indications & Uses

Pharyngitis, CAP, Tonsilitis

SPERACLAV-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

SPERBACT-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

SPERBACT-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

SPERLIV

INJECTIONS
1gm

Composition

Meropenem 1gm + WFI

Indications & Uses

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

SPIPER-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

SPERBACT-C

INJECTIONS
1.5gm

Composition

Cefaperazone 1000mg + Sulbactam 500mg +WFI

Indications & Uses

Peritonitis, Bacterial Simusitis, Cholecystitis, Meningitis

BROXTAR

SYRUP
100ml

Composition

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

Indications & Uses

Bronchitis, Productive Cough, Emphysema, Bronchial Asthma

BROXTAR-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

THROMET

SYRUP
100ml

Composition

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

Indications & Uses

Commom Cold and Flu, Nasal Congestion, Sore Throat

IRIDIE-M

TABLETS (Alu-Alu)
20X10

Composition

Levocetirizine 5mg + Montelukast 10mg

Indications & Uses

Allergic Rhinitis, Nasal Congestion, Asthma

IRIDIE

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