/*
 * Common code to check for toolbar and relevant info
 *
 * We include support for detecting Facebook toolbars.
 *
 * bInstalled = Any of the MyWebSearch, XPI or Vicinio toolbars are installed
 * bMWSInstalled = The MyWebSearch Toolbar is installed
 * bXPIInstalled = The Firefox XPI Toolbar is installed
 * bVicinioInstalled = The Vicinio Toolbar is installed
 * Dynamic JSON generated at Mon, 13 Feb 2012 14:49:49 EST
 */

var TOOLBAR = {
    bInstalled: false,
    oActiveXCtl: null,
    sVersion: null,
    sUID: null,
    sPartnerID: null,
    sParentPartnerID: null,
    sChildPartnerID: null,
    sBucket: "",
    sPartnerSource: "",
    sHtmlMenuCtlId: null,
    iToolbarType: -1,
    sLatestVersion: "",
    bLatestVersion: false,
    bUpgradeRequired: false, // why was this true by default?
    bScreenSaverCtl: false,
    oScreenSaverInstaller: null,
    bToolbarErrorCaught: false,
    specifiedToolbarId: null,
    detectionCachingEnabled: true,

    // debugging enabled/disabled
    debug_enabled: false,
    // code version for this object
    code_version: "2.0.2",

    //-- should not be using xpi specific vars anymore
    bXPIInstalled: false,
    bXPIErrorCaught: false,
    sXPIVersion: null,
    sXPILatestVersion: "",
    bXPILatestVersion: false,
    bXPIUpgradeRequired: false,

    //Specific toolbar installed booleans
    bMWSInstalled: false,
    bVicinioInstalled: false,

    // controller objects after instantiation
    oSettingsCtl: null,
    oHtmlMenuCtl: null,
    oScreenSaverCtl: null,
    oDataCtl: null,
    oChatCtl: null,

    xpi_interval: null,
    xpi_event: {
        TBCkElem: null,
        TBCkEvt: null
    },

    browser: {
        name: "",
        major_version: 0
    },

    os: {
        name: ""
    },

    toolbar_list: [],

    toolbar_test: true,

    //Keith, is this a good idea?
    toolbar_detectAll: false,

    cookie: {
        config: {
            name: "tsox_data",
            data: null
        }
    },

    winner: {},

    legacyToolbarGroups: new Array("mws", "vicinio", "mindspark", "mws_iwon_msie_old"),

    init: function( _opts )
    {
        this.get_browser();
        this.get_os();
        if ( _opts != undefined && _opts != null ){
            // If the user specified a toolbar id, use it.
            if (_opts.toolbarId != undefined && _opts.toolbarId != null) {
                this.specifiedToolbarId = _opts.toolbarId;
            }
            // If a custom toolbar list is provided, use it.
            if ( _opts.tb_list != undefined && _opts.tb_list != null ){
                this.toolbar_list = _opts.tb_list;
            }
            // If some products are listed as preferred, then they stand a
            // better chance of becoming the winner.
            if (_opts.preferred_products) {
                // Translate products to toolbars.
                var preferred_tb_list = [];
                for (var k = 0; k < _opts.preferred_products.length; k++) {
                    var preferred_product = _opts.preferred_products[k];
                    var preferred_tb = this._asControlName(preferred_product);
                    preferred_tb_list.push(preferred_tb);
                }

                this.toolbar_list = preferred_tb_list.concat(this.toolbar_list);
            }
            // If a custom toolbar test is provided, use it.
            if ( _opts.find != undefined && _opts.find != null && _opts.find != "" ){
                this.toolbar_test = _opts.find;
            }
            if ( _opts.detectAll != undefined && _opts.detectAll != null && _opts.detectAll != "" ){
                this.toolbar_detectAll = _opts.detectAll;
            }
        }

        // this.DEBUG("init: this.toolbar_list = " + this.toolbar_list);
        if ( this.toolbar_test ){ this.find_toolbar(); }
        if ( this.toolbar_detectAll ){ this.detect_toolbars(); }

        // TB-1288 Zwinky, PSS, Smiley, CursorMania must be treated differently.
        // For these websites, if any toolbar in the pool has been detected and
        // that toolbar is not MWS, then redirect to an error page.
        var nonMwsDetected = this.bInstalled && this.winner && this.winner.toolbar != 'mws';
        if (nonMwsDetected) {
            var website = this.getWebsiteInformation();
            if (website && website.denyAccess) {
                window.location.href = 'http://www.mywebface.com/toolbar/error.html?website=' + encodeURIComponent(website.name);
            }
        }
    },

    websites: [
        //{ denyAccess: true, name: 'Zwinky', match: '.zwinky.com/' },
        { denyAccess: true, name: 'Popular Screensavers', match: 'http[s]?://([^/]+\\.)?popularscreensavers\\.com(:[0-9]+)?/' }
        //{ denyAccess: true, name: 'Smiley Central', match: '.smileycentral.com/' }
    ],

    getWebsiteInformation: function() {
        // Looks at the location href to infer whether we're being visited by
        // one of the exception websites.
        var s = window.location.href.toLowerCase();
        for (var k = 0; k < this.websites.length; k++) {
            var website = this.websites[k];
            if (s.match(website.match)) {
                return website;
            }
        }
        return null;
    },

    isProductToolbarInstalled: function(productName) {
        var control = this._asControl(productName);
        return this.tb_exists(control);
    },

    isProductToolbarInstallable: function(productName, channel) {
        return productName == channel || productName.indexOf(channel + '.') == 0;
    },

    _normalizeProductName: function(productName) {
        var k = productName.length - '.current'.length;
        if (productName.indexOf('.current') == k) {
            productName = productName.substring(0, 1 + k) + this.browser.name;
        }
        return productName;
    },

    _asControlName: function(productName) {
        productName = this._normalizeProductName(productName);

        var object = this.get_toolbar_from_master(productName);
        if (!object.ctl) {
            throw 'Misconfigured product: ' + productName
                + '; must include main control name "ctl".';
        }
        var controlName = productName + '.' + object.ctl;
        return controlName;
    },

    _asControl: function(productName) {
        productName = this._normalizeProductName(productName);

        var object = this.get_toolbar_from_master(productName);
        if (!object.ctl) {
            throw 'Misconfigured product: ' + productName
                + '; must include main control name "ctl".';
        }
        return object[object.ctl];
    },

    find_toolbar: function()
    {
        var extensionResult = this.get_extension();
        if (extensionResult.found) {
            this.winner = extensionResult.toolbar;
            this.bInstalled = true;
        } else if (extensionResult.checkExe) {
            // loop through toolbar_list, stop on first match
            for ( var idx=0; idx < this.toolbar_list.length; idx++ ){
                var oTb = this.get_toolbar_from_master( this.toolbar_list[idx] );
                var currentBrowserEnabled = !oTb.browser || oTb.browser == this.browser.name || oTb.browser == 'dual';
                if ( currentBrowserEnabled && this.tb_exists( oTb ) ){
                    // Nonetheless, we could be trying to detect a dual install and
                    // happen to find a Firefox-only install (because the two
                    // install modes have the same class IDs), so find out for
                    // sure by checking the value of the BrowsersSupported flag.
                    var actuallyInstalled = true;

                    if (oTb.browser == 'dual') {
                        this.CreateInstance({ control: oTb });
                        var settingsControl = document.getElementById(oTb.html_id);
                        settingsControl.GetVersion('');

                        try {
                            var bsf = settingsControl.BrowsersSupported;
                            if (typeof (bsf) == 'undefined') {
                                // Not supported. Err on the side of allowing
                                // access.
                            } else {
                                var expectedBsf = 0x03;
                                if (bsf == expectedBsf) {
                                    // It is installed as a matter of fact.
                                } else {
                                    // Not truly installed; I'm just seeing a Firefox here.
                                    // --
                                    // TB-1341 - Ignore the BrowsersSupported flag
                                    // until we address TB-1287 in DLP.
                                    //actuallyInstalled = false;
                                    // --
                                }
                            }
                        } catch (e) {
                            // Not supported. Err on the side of allowing
                            // access.
                        }
                    }

                    if (actuallyInstalled) {
                        this.winner = oTb;
                        this.bInstalled = true;
                        return;
                    }
                }
            }
        }
    },

    get_extension: function() {
        var browserInfo = getBrowserInfo();
        //If we're not in an extension enabled browser, return false
        if (!browserInfo.isChrome && !browserInfo.isFirefox && !browserInfo.isSafari) {
            return {found: false, toolbar: null, checkExe: true};
        }
        var i, j;
        var allSupport = true;
        var specifiedToolbarIdHasSupport = false;
        //Put together a list of all the extension info
        for (i = 0; i < this.toolbar_list.length; i++) {
            var oTb = this.get_toolbar_from_master(this.toolbar_list[i]);
            if (oTb.extensionInfos) {
                for (j = 0; j < oTb.extensionInfos.length; j++) {
                    if (this.is_valid_extension(oTb.extensionInfos[j].id)) {
                        return {found: true, toolbar: oTb, checkExe: false};
                    } else {
                        //Find out if all the toolbars have the desired extension
                        if (browserInfo.isChrome) {
                            allSupport = allSupport && oTb.extensionInfos[j].hasChromeExtension;
                            if (oTb.extensionInfos[j].id == this.specifiedToolbarId) {
                                specifiedToolbarIdHasSupport = oTb.extensionInfos[j].hasChromeExtension;
                            }
                        } else if (browserInfo.isFirefox) {
                            allSupport = allSupport && oTb.extensionInfos[j].hasFirefoxExtension;
                            if (oTb.extensionInfos[j].id == this.specifiedToolbarId) {
                                specifiedToolbarIdHasSupport = oTb.extensionInfos[j].hasFirefoxExtension;
                            }
                        } else if (browserInfo.isSafari) {
                            allSupport = allSupport && oTb.extensionInfos[j].hasSafariExtension;
                            if (oTb.extensionInfos[j].id == this.specifiedToolbarId) {
                                specifiedToolbarIdHasSupport = oTb.extensionInfos[j].hasSafariExtension;
                            }
                        }
                    }
                }
            }
        }
        //Did not find the extension

        //If we're looking for firefox, we don't care if they have the extension or the exe.  so always check the exe if the extension is not found
        if (browserInfo.isFirefox) {
            return {found: false, toolbar: null, checkExe: true};
        }
        /*
            If they all the possible toolbars support the extension - we want them to download the extension
            If the specified toolbar id supports the extension - we want them to download the extension
         */
        if (allSupport || specifiedToolbarIdHasSupport) {
            return {found: false, toolbar: null, checkExe: false};
        }
        //The extension was not found and we aren't 100% sure the toolbar has the requested extension, check for exe
        return {found: false, toolbar: null, checkExe: true};
    },

    is_valid_extension: function(toolbarId) {
        //Check all the valid toolbar ids for a cookie.
        return !!getCookie('mindsparktb_' + toolbarId);
    },

    detect_toolbars: function()
    {
        // loop through toolbar_list, simply set toolbar installed booleans.  Do not pick a winner.  Leave that up to find_toolbar()
        for ( var idx=0; idx < this.toolbar_list.length; idx++ ){
            var oTb = this.get_toolbar_from_master( this.toolbar_list[idx] );
            var currentBrowserEnabled = !oTb.browser || oTb.browser == this.browser.name;
            if ( currentBrowserEnabled && this.tb_exists( oTb ) ){
                //this.winner = oTb;
                this.bInstalled = true;
                //Keith, I need some magic here... obviously this won't work.
                if (oTb == "mws") this.bMWSInstalled = true;
                else if (oTb == "xpi") this.bXPIInstalled = true;
                else if (oTb == "vicinio") this.bVicinioInstalled = true;
            }
        }
    },

    find_html_menu_ctl: function()
    {
        // this.DEBUG("find_html_menu_ctl: this.winner.toolbar = " + this.winner.toolbar);
        // this.DEBUG("find_html_menu_ctl: this.winner.xpi = " + this.winner.xpi);
        if ( this.winner.toolbar == null || this.winner.toolbar == undefined || this.winner.toolbar == "" ){
            return;
        }
        var oTb = this.get_toolbar_from_master( this.winner.toolbar + ".htmlMenuCtl" );
        this.get_toolbar_data( oTb );
    },

    get_toolbar_data: function( _ctl )
    {
        // this.DEBUG("get_toolbar_data: _ctl.xpi = " + _ctl.xpi);
        // this.DEBUG("get_toolbar_data: this.cookie.config.data = " + this.cookie.config.data);
        if ( _ctl.xpi && this.cookie.config.data == null ){
            // this.DEBUG("get_toolbar_data: xpi is true, coookie data is null");
            GetXpiConfig( this );
        } else if ( _ctl.xpi && this.cookie.config.data != null ){
            // this.DEBUG("get_toolbar_data: xpi is true, coookie data is NOT null");
            this.set_xpi_data();
        } else if ( _ctl.exe ){
            // this.DEBUG("get_toolbar_data: xpi is false, exe is true");
            // instantiate the control we want to use
            this.instantiate( _ctl );
        }
    },

    version_check: function( _ctl )
    {
        // this.DEBUG("version_check: _ctl.name = " + _ctl.name);
        // this.DEBUG("version_check: this.bInstalled = " + this.bInstalled);
        if ( this.bInstalled ){
            var versionCheck = this.check_versions( this.sVersion, _ctl.max_version, _ctl.required_version );
            this.bLatestVersion = versionCheck.latest;
            this.bUpgradeRequired = versionCheck.upgrade;
            if( this.bXPIInstalled ){
                this.bXPILatestVersion = this.bLatestVersion;
                this.bXPIUpgradeRequired = this.bUpgradeRequired;
            }
        }
    },

    set_xpi_data: function( _props )
    {
        if ( this.cookie.config.data != null ){
            // this.DEBUG("set_xpi_data: cookie data is NOT null");
            try {
                // this.DEBUG("set_xpi_data: this.cookie.config.data.gu = " + this.cookie.config.data.gu);
                this.sVersion = this.cookie.config.data.ver;
                this.sUID = this.cookie.config.data.gu;
                this.sPartnerID = this.cookie.config.data.cb;
                this.sBucket = this.cookie.config.data.trk;
                var partner = this.parse_partner( this.sPartnerID );

                this.sParentPartnerID = partner.parentid;
                this.sChildPartnerID = partner.childid;
                this.sBucket = partner.bucket;
                this.sPartnerSource = partner.source;
            } catch(Err){
                // this.DEBUG("set_xpi_data: woops! " + Err);
                this.bXPIErrorCaught = true;
            }
        } else {
            try {
                this.sUID = document.getElementsByTagName("TSOX_TBCk")[0].getAttribute("tbid");
                this.sPartnerID = document.getElementsByTagName("TSOX_TBCk")[0].getAttribute("cbid");
                this.sBucket = document.getElementsByTagName("TSOX_TBCk")[0].getAttribute("trkid");
                var partner = this.parse_partner( this.sPartnerID );

                this.sParentPartnerID = partner.parentid;
                this.sChildPartnerID = partner.childid;
                this.sBucket = partner.bucket;
                this.sPartnerSource = partner.source;
            } catch(Err){
                // this.DEBUG("set_xpi_data: woops! " + Err);
                this.bXPIErrorCaught = true;
            }
        }
    },

    get_settingsCtl_data: function()
    {
        try {
            // To ensure complete initialization of the settings control in the
            // presence of a bug, we require the call to GetVersion to be the
            // first call into the settings control once it is initialized.
            this.sVersion = this.oSettingsCtl.GetVersion('');

            this.sUID = this.oSettingsCtl.I;
            this.sPartnerID = this.oSettingsCtl.P;
            var partner = this.parse_partner( this.sPartnerID );

            this.sParentPartnerID = partner.parentid;
            this.sChildPartnerID = partner.childid;
            this.sBucket = partner.bucket;
            this.sPartnerSource = partner.source;
            this.iToolbarType = this.oSettingsCtl.Type;
            // oToolbarController.iToolbarType = oToolbarController.oActiveXCtl.Type;
        } catch(Err){
            this.bToolbarErrorCaught=true;
        }
    },

    get_htmlCtl_data: function()
    {
        this.DEBUG("get_htmlCtl_data: this.oHtmlMenuCtl  = " + this.oHtmlMenuCtl );
        this.sHtmlMenuCtlId = this.oHtmlMenuCtl.GetUID('http://www.funwebproducts.com/');
        // this.DEBUG("get_htmlCtl_data: this.sHtmlMenuCtlId  = " + this.sHtmlMenuCtlId );
        // this.DEBUG("get_htmlCtl_data: this.winner.classid  = " + this.winner.classid );
        // this.DEBUG("get_htmlCtl_data: winner = " + this.winner.toolbar + "." + this.winner.name );
    },

    parse_partner: function( _partnerid )
    {
        var parentid = null;
        var childid = null;
        var bucket = null;
        var source = null;

        var pf = new PartnerIdFactory();
        var p = pf.parse(_partnerid, null, null);
        if (p.hasParent()){
            parentid = p.getParent().toString();
            childid = p.getChild().toString();
        } else {
            parentid = p.toString();
        }
        if (p.hasCampaign())
            source = p.getCampaign();
        if (p.hasTrack())
            bucket = p.getTrack();

        return {
            parentid: parentid,
            childid: childid,
            bucket: bucket,
            source: source
        };
        //this.sParentPartnerID = parentid;
        //this.sBucket = ( bucket ) ? bucket : "" ;
    },

    instantiate: function( _props )
    {
        // switch
        switch ( _props.name ){
            case 'settingsCtl':
                this._instantiate_Ctl( _props );
                // this.DEBUG("instantiate: [settingsCtl] _props.html_id = " + _props.html_id);
                // this.DEBUG("instantiate: [settingsCtl] document.getElementById( _props.html_id ) = " + document.getElementById( _props.html_id ));
                this.oSettingsCtl = document.getElementById( _props.html_id );
                this.settingsCtlProperties = _props;
                this.get_settingsCtl_data();
                this.check_update_flag();
                // this.DEBUG( "[TOOLBAR::instantiate] check for if FF and tb version < 2.3.50.21");
                // check for if FF and tb version < 2.3.50.21
                this.require_update(
                    {
                        require_firefox: true,
                        required_version: "2.3.50.21",
                        redirect_url: "http://help.mywebsearch.com/upgrade_now.jsp?p=" + this.sPartnerID + "&url=" + escape(document.location.href)
                    }
                );
                // this.DEBUG( "[TOOLBAR::instantiate] after require_update");
                break;
            case 'htmlMenuCtl':
                this._instantiate_Ctl( _props );
                // this.DEBUG("instantiate: [htmlMenuCtl] _props.html_id = " + _props.html_id);
                // this.DEBUG("instantiate: [htmlMenuCtl] document.getElementById( _props.html_id ) = " + document.getElementById( _props.html_id ));
                this.oHtmlMenuCtl = document.getElementById( _props.html_id );
                this.get_htmlCtl_data( _props );
                break;
        }
    },

    _instantiate_Ctl: function( _props )
    {
        try {
            if ( window.ActiveXObject ){
                new ActiveXObject( _props.activeX_object );
                //var object_tag = "<object id=\""+_props.html_id+"\" classid=\"clsid:"+_props.classid+"\" width=1 height=1>&nbsp;</object>";
                var object_tag = this.get_tag_html( { tagname:"object", attribs: _props } );
                // this.DEBUG("_instantiate_Ctl: object_tag = " + object_tag);
                document.write(object_tag);
                //this.bInstalled = true;
            } else if ( this.plugin_exists( _props.mimetype ) ){
                /*
                var embed_tag = "<embed id=\""+_props.html_id+"\"" +
                                " type=\""+_props.mimetype+"\"" +
                                " ProgId=\""+_props.prog_id+"\"" +
                                " width=2 height=2>&nbsp;</embed>";
                */
                var embed_tag = this.get_tag_html( { tagname:"embed", attribs: _props } );
                document.write(embed_tag);
                //this.bInstalled = true;
            }
        } catch(Err){
            this.bToolbarErrorCaught=true;
        }
    },

    get_tag_html: function( _props )
    {
        if ( _props.tagname == undefined || _props.tagname == "" || _props.tagname == null ){ _props.tagname = "object"; }
        var html = "";
        if ( _props.tagname == 'embed' ){
            html = this._get_embed_tag_html( _props.attribs );
        } else {
            html = this._get_object_tag_html( _props.attribs );
        }
        return html;
    },

    _get_object_tag_html: function( _props )
    {
        var tag_html = "<object id=\""+_props.html_id+"\"" +
                        " classid=\"clsid:"+_props.classid+"\"" +
                " width=1 height=1>";
        var params_html = "";
        if ( _props.params ){
            for ( var key in _props.params ){
                this.DEBUG("_get_object_tag_html: "+key+" = " + _props.params[key]);
                params_html += "<param name=\""+key+"\" value=\""+_props.params[key]+"\" />";
            }
            this.DEBUG("_get_object_tag_html: params_html = " + params_html);
            tag_html += params_html;
        }
        tag_html += "&nbsp;</object>";
        return tag_html;
    },

    _get_embed_tag_html: function( _props )
    {
        var tag_html = "<embed id=\""+_props.html_id+"\"" +
                        " type=\""+_props.mimetype+"\"" +
                        " ProgId=\""+_props.prog_id+"\"" +
                        " width=2 height=2";
        var params_html = "";
        if ( _props.params ){
            for ( var key in _props.params ){
                this.DEBUG("_get_embed_tag_html: "+key+" = " + _props.params[key]);
                params_html += " param_" + key + "=\"" + _props.params[key] + "\"";
            }
            this.DEBUG("_get_embed_tag_html: params_html = " + params_html);
            tag_html += params_html;
        }
        tag_html += ">&nbsp;</embed>";
        return tag_html;
    },

    get_toolbar_from_master: function( _key )
    {
        var parts = _key.split('.');
        //this.DEBUG("get_toolbar_from_master: _key = " + _key);
        //this.DEBUG("get_toolbar_from_master: parts = " + parts);
        //this.DEBUG("get_toolbar_from_master: parts[0] = " + parts[0]);
        //this.DEBUG("get_toolbar_from_master: parts[1] = " + parts[1]);

        if (!this.contains(this.legacyToolbarGroups, parts[0])) {
            // conversion of legacy label names used to identify
            // toolbars to new style - <toolbar_id>_<browser>.<controlName>
            var partnerAndToolbar = parts[0].split('_');
            if (partnerAndToolbar.length > 2) {
                var toolbarId = this.toolbarIdLookupForLegacyLabels[partnerAndToolbar[0] + '_' + partnerAndToolbar[1]];
                parts[0] = toolbarId + '_' + partnerAndToolbar[2];
            }
        }

        var object = this.master_list;
        for (var k = 0; k < parts.length; k++) {
            var part = parts[k];
            object = object[part];
            if (typeof (object) == 'undefined') {
                throw 'Invalid master list key: ' + _key + '.';
            }
        }

        return object;
    },

    tb_exists: function( _props )
    {
        if (this.detectionCachingEnabled && _props.tested) {
            return _props.installed;
        }

        // this.DEBUG("tb_exists: is it exe/xpi = " + _props.exe + "/" + _props.xpi);
        if ( _props.exe ){
            var bExe = this._exe_exists( _props );
            // this.DEBUG("tb_exists: bExe = " + bExe);
            _props.tested = true;
            _props.installed = bExe;
            return bExe;
        } else if ( _props.xpi ){
            var bXpi = this._xpi_exists( _props );
            _props.tested = true;
            _props.installed = bXpi;
            return bXpi;
        }
    },

    _exe_exists: function( _props )
    {
        try {
            if (window.ActiveXObject) {
                new ActiveXObject( _props.activeX_object );
                return true;
            } else {
                if ( this.plugin_exists( _props.mimetype ) ){
                    return true;
                }
            }
        } catch(Err){
            // this.DEBUG("_exe_exists: Err = " + Err);
        }
        return false;
    },

    _xpi_exists: function( _props )
    {
        if ( this.browser.name == "firefox" ){
            var tsox_el = document.getElementById('tsox_ver_el');
            // this.DEBUG("_xpi_exists: tsox_el = " + tsox_el);
            if ( tsox_el ){
                try {
                    this.bInstalled = this.bXPIInstalled = true;
                    this.sVersion = this.sXPIVersion = tsox_el.getAttribute('ver');
                    return true;
                } catch(Err){}
            } else {
                this.get_tsox_cookies();
                if ( this.cookie.config.data != null ){
                    this.bInstalled = this.bXPIInstalled = true;
                    this.bXPILatestVersion = this.bLatestVersion;
                    return true;
                } else {
                    return false;
                }
                //return ( this.cookie.config.data != null );
            }
        }
        return false;
    },

    get_tsox_cookies: function()
    {
        //var cookie_strings = document.cookie.split(";");
        var cookie = {};
        var start = document.cookie.indexOf(this.cookie.config.name + "=");
        if ( start < 0 ){ return; }
        var end = document.cookie.indexOf(";",start);
        if ( end < 0 ){ end = document.cookie.length; }
        start += ( this.cookie.config.name.length + 1 );
        // this.DEBUG("get_tsox_cookies: start = " + start);
        // this.DEBUG("get_tsox_cookies: end = " + end);
        var data = unescape( document.cookie.substring(start,end) );
        // this.DEBUG("get_tsox_cookies: data = " + data);
        var params = data.split("&");
        // this.DEBUG("get_tsox_cookies: params.length = " + params.length);
        for ( var kvp in params ){
            var key = params[kvp].split("=")[0];
            var val = params[kvp].split("=")[1];
            // this.DEBUG("get_tsox_cookies: " + key + " = " + val);
            cookie[key] = val;
        }
        this.cookie.config.data = cookie;
    },

    NeedsUpgrade: function( _compare )
    {
        // this.DEBUG("NeedsUpgrade: typeof(_compare) = " + typeof(_compare));
        if ( typeof(_compare) == "string" ){
            if ( this.sVersion != this.get_max_version( _compare, this.sVersion ) ){
                return true;
            }
        } else if( _compare != null && _compare != undefined ) {
            // this.DEBUG("NeedsUpgrade: _compare.tb = " + _compare.tb );
            // this.DEBUG("NeedsUpgrade: _compare.ver = " + _compare.ver );
            try {
                var index = _compare.tb.lastIndexOf('.');
                var compareToolbar = _compare.tb.substring(0, index);
                var compareName = _compare.tb.substring(1 + index);
                var check = false;
                if ( this.winner.toolbar == compareToolbar && this.winner.name == compareName ) {
                    check = true;
                }
                // this.DEBUG("NeedsUpgrade: check = " + check );
                if ( check ){
                    // this.DEBUG("NeedsUpgrade: version match = " + ( this.sVersion != this.get_max_version( _compare.ver, this.sVersion ) ) );
                    return ( this.sVersion != this.get_max_version( _compare.ver, this.sVersion ) );
                }
            } catch(Err){}
        }

        return false;
    },

    check_versions: function( _current, _latest, _required )
    {
        // this.DEBUG("check_versions: _current = " + _current);
        // this.DEBUG("check_versions: _latest = " + _latest);
        // this.DEBUG("check_versions: _required = " + _required);
        if ( _current == null || _current == undefined ){ _current = ""; }
        if ( _latest == null || _latest == undefined ){ _latest = ""; }
        if ( _required == null || _required == undefined ){ _required = ""; }
        var aToolbarVersion = ( _current != "" ) ? _current.split('.') : [];
        var aLatestVersion = ( _latest != "" ) ? _latest.split('.') : ['0','0','0','0'];
        var aRequiredVersion = _required.split('.');

        for (i=0; i < aToolbarVersion.length; i++){
            // this.DEBUG("check_versions: i = " + i);
            if ( aToolbarVersion[i].length == 1 ) aToolbarVersion[i] = "0" + aToolbarVersion[i];
            if ( aLatestVersion[i].length == 1 ) aLatestVersion[i] = "0" + aLatestVersion[i];
            if ( aRequiredVersion[i].length == 1 ) aRequiredVersion[i] = "0" + aRequiredVersion[i];
        }

        var iToolbarVersion = aToolbarVersion.join("");
        var iLatestToolbarVersion = aLatestVersion.join("");
        var iRequiredToolbarVersion = aRequiredVersion.join("");

        // this.DEBUG("check_versions: iToolbarVersion = " + iToolbarVersion);
        // this.DEBUG("check_versions: iLatestToolbarVersion = " + iLatestToolbarVersion);
        // this.DEBUG("check_versions: iRequiredToolbarVersion = " + iRequiredToolbarVersion);

        iToolbarVersion = iToolbarVersion - 0;
        iLatestToolbarVersion = iLatestToolbarVersion - 0;
        iRequiredToolbarVersion = iRequiredToolbarVersion - 0;

        return {
                latest:(iToolbarVersion >= iLatestToolbarVersion),
                upgrade:(iToolbarVersion < iRequiredToolbarVersion)
        };
    },

    get_max_version: function( _v1, _v2 )
    {
        // this.DEBUG("get_max_version: _v1 = " + _v1);
        // this.DEBUG("get_max_version: _v2 = " + _v2);
        var aVersion1 = _v1.split('.');
        var aVersion2 = _v2.split('.');
        if ( aVersion1.length < aVersion2.length ){
            aVersion1 = this._pad_version_number( aVersion1, aVersion2.length );
        } else if ( aVersion1.length > aVersion2.length ){
            aVersion2 = this._pad_version_number( aVersion2, aVersion1.length );
        }
        for (i=0; i < aVersion1.length; i++){
            if (aVersion1[i].length == 1) aVersion1[i] = "0" + aVersion1[i];
            if (aVersion2[i].length == 1) aVersion2[i] = "0" + aVersion2[i];
        }
        // this.DEBUG("get_max_version: aVersion1 = " + aVersion1.join("."));
        // this.DEBUG("get_max_version: aVersion2 = " + aVersion2.join("."));

        var iToolbarVersion = aVersion1.join("");
        var iLatestToolbarVersion = aVersion2.join("");
        iToolbarVersion = iToolbarVersion - 0;
        iLatestToolbarVersion = iLatestToolbarVersion - 0;

        return ( iToolbarVersion >= iLatestToolbarVersion ) ? _v1 : _v2 ;
    },

    _pad_version_number: function( _value_array, _max )
    {
        // this.DEBUG("_pad_version_number: _value_array.length = " + _value_array.length);
        // this.DEBUG("_pad_version_number: _max = " + _max);
        for( var idx=_value_array.length; idx < _max; idx++ ){
            _value_array[idx] = "0";
        }
        return _value_array;
    },

    plugin_exists: function( _mimetype )
    {
        navigator.plugins.refresh(false);
        var numPlugins = navigator.plugins.length;
        for (var i = 0; i < numPlugins; i++) {
            var plugin = navigator.plugins[i];
            var numTypes = plugin.length;
            var mimetype;
            var enabled;
            var enabledPlugin;
            for (var j = 0; j < numTypes; j++) {
                mimetype = plugin[j];
                if (mimetype) {
                    if (mimetype.type == _mimetype) {
                        return true;
                    }
                }
            }
        }
        return false;
    },

    get_browser: function()
    {
        if ( navigator.userAgent.search(/Firefox/i) > -1 ){
            this.browser.name = "firefox";
            try {
                this.browser.major_version = navigator.userAgent.match(/Firefox\/(\d+(\.\d*)*)/i)[1].split(".")[0];
            } catch(err){}
            return;
        }
        // make sure it's not Opera which sometimes reports itself as IE
        if ( navigator.appName.search(/Internet Explorer/i) > -1 ){
            if ( navigator.userAgent.search(/Opera\s/i) < 0 ){
                this.browser.name = "msie";
                try {
                    this.browser.major_version = navigator.userAgent.match(/msie\s(\d+(\.\d*)*)/i)[1].split(".")[0];
                } catch(err){}
                return;
            }
        }
    },

    get_os: function()
    {
        var uA = navigator.userAgent.toLowerCase();
        if ( uA.indexOf("windows nt 5.1") > -1 ) {
            this.os.name = "xp";
        } else if ( uA.indexOf("windows nt 6.0") > -1 ) {
            this.os.name = "vista";
        } else if ( uA.indexOf("windows nt 6.1") > -1 ) {
            this.os.name = "win7";
        } else if ( uA.indexOf("mac") > -1 ) {
            this.os.name = "mac";
        }
    },

    get_property: function( _prop, _alt )
    {
        if ( _prop == undefined || _prop == null || _prop == "" ){ return ""; }
        if ( _alt == undefined ){ _alt = ""; }
        var pvalue = ( this[_prop] ) ? this[_prop] : _alt ;
        // this.DEBUG("get_property: this["+_prop+"] = " + this[_prop]);
        return pvalue;
    },

	/**
	 * @deprecated: use getToolbarStatus(toolbarKey) instead
	 */
	check_disable: function( _ctl, productCode, bReturnValue, successURL )
	{
		try {
			//Check if IE8+ has the Toolbar Enabled
            var toolbandClassid = this.settingsCtlProperties.toolbandClassid;
            var enabled
                    = toolbandClassid && toolbandClassid != '-'
                    && this.oSettingsCtl.IsObjectEnabled('{' + toolbandClassid + '}');
            //Assume IE9 is installed for Vista/Win7 and let in
            if ( this.os.name == "vista" || this.os.name == "win7" ) {
                if(bReturnValue) return false;
            } else if (!enabled) {
				// this.DEBUG("disabled");
				if(typeof(urchinTracker)=="function")urchinTracker('/toolbar/detect/disabled/viewdialog');
				if(bReturnValue) {
					return true;
				} else {
					showModal(productCode,this.sPartnerID,"disabled",successURL);
				}
			//Check if IE5+ has the Toolbar visible
			} else if (! this.oSettingsCtl.ToolbarVisible) {
				// this.DEBUG("not visible");
				if(typeof(urchinTracker)=="function")urchinTracker('/toolbar/detect/hidden/viewdialog');
				if(bReturnValue) {
					return true;
				} else {
					showModal(productCode,this.sPartnerID,"hidden",successURL);
				}
			} else {
				// this.DEBUG("enabled");
				if(typeof(urchinTracker)=="function")urchinTracker('/toolbar/detect/enabled');
				if(bReturnValue) return false;
			}
		} catch(e) {
			// this.DEBUG("method not available");
			if(bReturnValue) return false;
		}
	},

    /**
	 * Tells whether the exe toolbar identified by 'toolbarKey' is installed & enabled
	 * @param toolbarKey: toolbarKey as a String
	 * see https://confluence.iaccap.com:8443/display/ENG/Feature+Detect
	 * @return Object{bInstalled: booleanValue, bEnabled: booleanValue}
	 */
	getToolbarStatus: function(sToolbarKey)
    {
		var result = {bInstalled: false, bEnabled: false};

		if (sToolbarKey != undefined && sToolbarKey.length > 1) {
			if (!this.contains(this.legacyToolbarGroups, sToolbarKey)) {
				sToolbarKey += "_dual";
			}
			sToolbarKey += ".settingsCtl";
		}
		else {
			return result;
		}

        try {
			var oTb = this.get_toolbar_from_master(sToolbarKey);
			result.bInstalled = this._exe_exists(oTb);
			if (result.bInstalled) {
				this.instantiate(oTb);
				var toolbandClassid = oTb.toolbandClassid;
				if ((toolbandClassid != undefined && this.oSettingsCtl.IsObjectEnabled('{'+toolbandClassid+'}') == 1)
						|| this.oSettingsCtl.ToolbarVisible) {
					result.bEnabled = true;
				}
			}
			return result;
        }
		catch(e) {
            this.DEBUG("failed to determine toolbar status");
            return result;
        }
    },

	contains: function(arrayList, data) {
		if (arrayList != null && arrayList.length > 0) {
			for (var i=0; i<arrayList.length; i++) {
				if (arrayList[i] == data)
					return true;
			}
		}
		return false;
	},

    check_update_flag: function()
    {
        // this.DEBUG( "[TOOLBAR::check_update_flag]");
        try {
            // this.DEBUG( "[TOOLBAR::check_update_flag] check for au");
            if (! this.oSettingsCtl.GetRegistryToggle("au") ) {
                // this.DEBUG( "[TOOLBAR::check_update_flag] au = " + this.oSettingsCtl.GetRegistryToggle("au") );
                this.oSettingsCtl.SetRegistryToggle("ua",false);
                this.oSettingsCtl.SetRegistryToggle("au",true);
                if (this.oSettingsCtl.GetRegistryToggle("au")) {
                    var pxUAUrl='http://imgfarm.com/images/nocache/tr/tb/ua.gif?uid='+this.sUID+'&p='+this.sPartnerID+'&v='+this.sVersion+'&url='+escape(window.location.href);
                    var pxUAImage = new Image();
                    pxUAImage.src = pxUAUrl;
                }
            }
        } catch(Err){
            // this.DEBUG( "[TOOLBAR::check_update_flag] Err.msg = " + Err.msg );
        }
    },

    require_update: function( _opts )
    {
        var bReqFF = false;
        var bReqIE = false;
        var sTbReqVer = "";
        var sRedirect = "";

        // this.DEBUG( "[TOOLBAR::require_update] _opts.require_firefox = " + _opts.require_firefox );
        // this.DEBUG( "[TOOLBAR::require_update] _opts.required_version = " + _opts.required_version );
        this.DEBUG( "[TOOLBAR::require_update] _opts.redirect_url = " + _opts.redirect_url );

        // check for values passed in
        if ( _opts == undefined ){ _opts = {} }
        if ( typeof _opts.require_firefox == 'boolean' ){
            bReqFF = _opts.require_firefox;
        }
        // not needed now, but for future use
        if ( typeof _opts.require_ie == 'boolean' ){
            bReqIE = _opts.require_ie;
        }

        if ( _opts.required_version != null && _opts.required_version != undefined ){
            sTbReqVer = _opts.required_version;
        }

        if ( _opts.redirect_url != null && _opts.redirect_url != undefined ){
            sRedirect = _opts.redirect_url;
        }

        if ( bReqFF && this.browser.name == "firefox" && this.sVersion!=null && this.sVersion!="undefined" && this.sVersion!=""){
            // check_versions: function( _current, _latest, _required )

            var vcheck = this.check_versions( this.sVersion, this.winner.max_version, "2.3.50.21" );
            // this.DEBUG( "[TOOLBAR::RequiredUpdate] vcheck.latest = " + vcheck.latest );
            // this.DEBUG( "[TOOLBAR::require_update] vcheck.upgrade = " + vcheck.upgrade );
            if ( vcheck.upgrade && sRedirect != "" ){
                this.send_to_upgrade( { url: sRedirect } );
            }
        }

    },

    send_to_upgrade: function( _opts )
    {
        // this.DEBUG( "[TOOLBAR::send_to_upgrade] _opts.url = " + _opts.url );
        // check for values passed in
        if ( _opts == undefined ){ _opts = {} }
        if ( _opts.url != null && _opts.url != undefined ){
            window.location.replace( _opts.url );
        }
    },

    get_segment: function()
    {
        var legend = "0123456789abcdefghijklmnopqrstuvwxyz_";
        var key = this.sUID.substr(-1).toLowerCase();
        return legend.indexOf(key);
    },

/*
possible key/value pairs for _options
control (object)      : similar to master_list objects, will be used if present, else winner is used
tbtype (string)       : mws|vicinio|mindspark|xpi
element (object)      : html element to write to
element_id (string)   : id of htmle element to write to (if object not provided)
override (object)     : override the default values for select properties of a control object
        ex: override { html_id: "SettingsControl", min_version: "2.4.0.1" }
        excludes name,toolbar,exe,xpi
write_to_client (boolean) : write object/embed tag to client
write_to_element (boolean) : write object/embed tag to innerHTML of html element
*/

    // generic get data from toolbar
    // uses settingsCtl to get data
    GetDataFromToolbar: function( _options )
    {
        this.DEBUG("GetDataFromToolbar: _options = " + _options);
        if ( _options == undefined || _options == null ){
            _options = {
                control: this.winner,
                element: null,
                element_id: "",
                override: {},
                write_to_element: false
            };
        }
        if ( _options.control.xpi && this.cookie.config.data == null ){
            this.DEBUG("GetDataFromToolbar: xpi is true, coookie data is null");
            GetXpiConfig( this );
        } else if ( _options.control.xpi && this.cookie.config.data != null ){
            this.DEBUG("GetDataFromToolbar: xpi is true, coookie data is NOT null");
            this.set_xpi_data();
        } else if ( _options.control.exe ){
            // init the settingsCtl via instantiating it and reading data from it
            this.DEBUG("GetDataFromToolbar: _options.control.exe = " + _options.control.exe);
            this.InitSettingsCtl( _options );
        }
    },

    // get data from xpi toolbar
    InitXpiToolbar: function( _options )
    {

    },

    CreateInstance: function( _options )
    {
        this.DEBUG("CreateInstance: _options.control = " + _options.control);
        var html = "";
        try {
            if ( window.ActiveXObject ){
                this.DEBUG("CreateInstance: activeX_object = " + _options.control.activeX_object);
                if ( _options.control.activeX_object ) { new ActiveXObject( _options.control.activeX_object ); }
                html = this.get_tag_html( { tagname:"object", attribs: _options.control } );
                this.DEBUG("CreateInstance: html = " + html);
            } else if ( this.plugin_exists( _options.control.mimetype ) ){
                html = this.get_tag_html( { tagname:"embed", attribs: _options.control } );
            }

            //this.DEBUG("CreateInstance: _options.write_to_element = " + _options.write_to_element);
            if ( _options.write_to_element ){
                var html_element = ( _options.element ) ? _options.element : document.getElementById( _options.element_id ) ;

                if ( html_element ){
                    html_element.innerHTML = html;
                } else {
                    document.write( html );
                }
            } else {
                document.write( html );
            }

        } catch(Err){
            this.DEBUG("CreateInstance: catch(Err) = " + Err.message);
            this.bToolbarErrorCaught=true;
        }
    },

    // instantiate settings control
    InitSettingsCtl: function( _options )
    {
        if ( _options == undefined || _options == null ){
            _options = {};
        }
        this.DEBUG("InitSettingsCtl: _options.control [1] = " + _options.control);
        this.DEBUG("InitSettingsCtl: _options.write_to_element = " + _options.write_to_element);
        //this.DEBUG("InitSettingsCtl: _options.control [2] = " + _options.control);
        if ( _options.control ){
            this.DEBUG("InitSettingsCtl: _options.control exists and is not null or undefined");
            this.CreateInstance( _options );
            this.oSettingsCtl = document.getElementById( _options.control.html_id );
            this.settingsCtlProperties = _options.control;
            this.get_settingsCtl_data();
        } else if( this.winner.exe ){
            var control = this.get_toolbar_from_master( this.winner.toolbar + ".settingsCtl" );
            this.DEBUG("InitSettingsCtl: control = " + control);
            if ( control ){
                _options.control = control;
                this.CreateInstance( _options );
                this.oSettingsCtl = document.getElementById( control.html_id );
                this.settingsCtlProperties = control;
                this.get_settingsCtl_data();
            }
        }
    },

    InitHtmlMenuCtl: function( _options )
    {
        if ( _options == undefined || _options == null ){
            _options = {};
        }
        if ( _options.control ){
            this.DEBUG("InitHtmlMenuCtl: _options.control exists and is not null or undefined");
            this.CreateInstance( _options );
            this.oHtmlMenuCtl = document.getElementById( _options.control.html_id );
            this.get_htmlCtl_data();
        } else if( this.winner.exe ){
            var control = this.get_toolbar_from_master( this.winner.toolbar + ".htmlMenuCtl" );
            this.DEBUG("InitHtmlMenuCtl: control = " + control);
            if ( control ){
                _options.control = control;
                this.DEBUG("InitHtmlMenuCtl: control.html_id = " + control.html_id);
                this.CreateInstance( _options );
                this.oHtmlMenuCtl = document.getElementById( control.html_id );
                this.get_htmlCtl_data();
            }
        }
        /*
        if ( this.winner.toolbar == null || this.winner.toolbar == undefined || this.winner.toolbar == "" ){
            return;
        }
        var oTb = this.get_toolbar_from_master( this.winner.toolbar + ".htmlMenuCtl" );
        */
    },

    InitChatCtl: function( _options )
    {
        this.DEBUG("InitSettingsCtl: _options = " + _options);
        if ( _options == undefined || _options == null ){
            _options = {};
        }

        if( this.winner.exe ){
            var control = this.get_toolbar_from_master( this.winner.toolbar + ".chatCtl" );
            this.DEBUG("InitChatCtl: control = " + control);
            if ( control ){
                _options.control = control;
                this.CreateInstance( _options );
                this.DEBUG("InitChatCtl: control.html_id = " + control.html_id);
                this.oChatCtl = document.getElementById( control.html_id );
                this.DEBUG("InitChatCtl: oChatCtl = " + oChatCtl);
            }
        }

    },

    InitScreenSaverCtl: function( _options )
    {
        this.DEBUG("InitScreenSaverCtl: _options = " + _options);
        if ( _options == undefined || _options == null ){
            _options = {};
        }
        if ( _options.control ){
            this.DEBUG("InitScreenSaverCtl: _options.control exists and is not null or undefined");
            this.CreateInstance( _options );
            this.oScreenSaverCtl = document.getElementById( _options.control.html_id );
        } else if( this.winner.exe ){
            var control = this.get_toolbar_from_master( this.winner.toolbar + ".screenSaverCtl" );
            this.DEBUG("InitScreenSaverCtl: control = " + control);
            if ( control ){
                _options.control = control;
                this.DEBUG("InitScreenSaverCtl: control.html_id = " + control.html_id);
                this.CreateInstance( _options );
                this.oScreenSaverCtl = document.getElementById( control.html_id );
                //this.get_htmlCtl_data();
            }
        }
        this.DEBUG("InitScreenSaverCtl: oScreenSaverCtl = " + this.oScreenSaverCtl);
        this.DEBUG("InitScreenSaverCtl: oScreenSaverCtl.version = " + this.oScreenSaverCtl.version);


    },

    InitDataCtl: function( _options )
    {
        this.DEBUG("InitDataCtl: _options = " + _options);
        if ( _options == undefined || _options == null ){
            _options = {};
        }
        if ( _options.control ){
            this.DEBUG("InitDataCtl: _options.control exists and is not null or undefined");
            this.CreateInstance( _options );
            this.oDataCtl = document.getElementById( _options.control.html_id );
        } else if( this.winner.exe ){
            var control = this.get_toolbar_from_master( this.winner.toolbar + ".dataCtl" );
            this.DEBUG("InitDataCtl: control = " + control);
            if ( control ){
                _options.control = control;
                this.DEBUG("InitDataCtl: control.html_id = " + control.html_id);
                this.CreateInstance( _options );
                this.oDataCtl = document.getElementById( control.html_id );
            }
        }
    },

    DataCtl_SetFileName: function( _name )
    {
        this.DEBUG("DataCtl_SetFileName: _name = " + _name);
        try {
            this.oDataCtl.DataFileName = _name;
        } catch(Err) {
            this.DEBUG("DataCtl_SetFileName: catch(Err) = " + Err.message);
        }
    },

    DataCtl_Set: function( _data )
    {
        this.DEBUG("DataCtl_Set: _data = " + _data);
        try {
            this.oDataCtl.SetData( _data );
            //this.DEBUG("DataCtl_Set: _data = " + _data);
        } catch(Err) {
            this.DEBUG("DataCtl_Set: catch(Err) = " + Err.message);
        }
    },

    DataCtl_Get: function()
    {
        var data = "";
        try {
            data = this.oDataCtl.GetData();
            this.DEBUG("DataCtl_Get: data = " + data);
        } catch(Err) {
            this.DEBUG("DataCtl_Get: catch(Err) = " + Err.message);
        }
        return data;
    },

    DEBUG: function( _msg )
    {
        if ( !this.debug_enabled ){ return; }
        try {
            console.log( _msg );
        }catch(err){
            /*
            try {
                document.getElementById('data_output').innerHTML += _msg + "<br />\n";
            } catch(err2){
                debug_string += _msg + "<br />\n";
            }
            */
        }
    }
};

function GetXpiConfig( _tb_object )
{
    var tsox_el = document.getElementById('tsox_ver_el');
    // this.DEBUG("GetXpiConfig: tsox_el = " + tsox_el);
    if ( tsox_el ) {
        try {
            TBCkElem = document.createElement("TSOX_TBCk");
            document.getElementsByTagName('head')[0].appendChild(TBCkElem);
            TBCkEvt = document.createEvent('Events');
            TBCkEvt.initEvent('TSOX_TBChkHandlerEvent', true, false);
            TBCkElem.dispatchEvent(TBCkEvt);
            (
                function(){
                    if ( document.getElementsByTagName("TSOX_TBCk")[0].getAttribute("tbid")==null ){
                        setTimeout( arguments.callee,50 );
                    } else {
                        _tb_object.set_xpi_data( { event: TBCkEvt, element: TBCkElem } );
                    }
                }
            )();
        } catch(ERR){
            // this.DEBUG("GetXpiConfig: ERR = " + ERR);
        }
    } else if( this.cookie.config.data != null ) {

    }
}

function hoverButton(btn,pos){
    btn.style.backgroundPosition = pos;
}

function enableToolbar( disableType, successURL ) {
    var url=document.location.href;
    if(typeof(successURL)!="undefined"&&successURL!="undefined"&&successURL!="") url=successURL;
    if(typeof(urchinTracker)=="function")urchinTracker('/toolbar/detect/'+disableType+'/clickenabled');
    if(document.location.href.indexOf("local") != -1 || document.location.href.indexOf("dev") != -1){
        window.location.replace("http://edits.dev.mywebsearch.com/toolbaredits/barenable.jhtml?successURL="+url);
    } else {
        window.location.replace("http://edits.mywebsearch.com/toolbaredits/barenable.jhtml?successURL="+url);
    }
}

function showModal( productCode, partnerId, disableType, successURL ) {
    var wbHtml = new Array();
    wbHtml.push("<div style='color:#009900;font-family:Trebuchet MS;font-weight:bold;font-size:36px;'>Welcome back!</div>");
    wbHtml.push("<div style='color:#333333;font-family:Trebuchet MS;font-weight:bold;font-size:15px;'>To restore access to this free feature, click the button below:</div>");
    wbHtml.push("<div style='margin-top:20px;background-image:url(http://ak.imgfarm.com/images/mindspark/toolbar/yellow_bar.png);width:522px;height:91px;'><div style='float:left;display:inline;margin: 17px 0px 0px 118px; background-image:url(http://ak.imgfarm.com/images/mindspark/toolbar/btn_enable.png);background-position:top;width:285px;height:57px;cursor:pointer;cursor:hand;' onclick='enableToolbar(\""+disableType+"\",\""+successURL+"\")' onmouseover='hoverButton(this,\"bottom\")' onmouseout='hoverButton(this,\"top\")'></div></div>");
    wbHtml.push("<div style='margin-top:25px;color:#333333;font-family:Trebuchet MS;font-weight:bold;font-size:14px;'>How did I lose access?</div>");
    wbHtml.push("<div style='width:500px;color:#333333;font-family:Trebuchet MS;font-size:14px;'>It appears your MyWebSearch toolbar has been disabled. By re-enabling the toolbar, your access to this feature will be instantly restored.</div>");

    var welcomeHtml = new Array();
    welcomeHtml.push("<div style='color:#009900;font-family:Trebuchet MS;font-weight:bold;font-size:36px;'>Welcome!</div>");
    welcomeHtml.push("<div style='color:#333333;font-family:Trebuchet MS;font-weight:bold;font-size:15px;'>To get unlimited access to this free feature, just click the button below:</div>");
    welcomeHtml.push("<div style='margin-top:20px;background-image:url(http://ak.imgfarm.com/images/mindspark/toolbar/yellow_bar.png);width:522px;height:91px;'><div style='float:left;display:inline;margin: 17px 0px 0px 118px; background-image:url(http://ak.imgfarm.com/images/mindspark/toolbar/btn_click_here.png);background-position:top;width:285px;height:57px;cursor:pointer;cursor:hand;' onclick='enableToolbar(\""+disableType+"\",\""+successURL+"\")' onmouseover='hoverButton(this,\"bottom\")' onmouseout='hoverButton(this,\"top\")'></div></div>");
    welcomeHtml.push("<div style='margin-top:25px;color:#333333;font-family:Trebuchet MS;font-weight:bold;font-size:14px;'>How do I access this feature in the future?</div>");
    welcomeHtml.push("<div style='width:500px;color:#333333;font-family:Trebuchet MS;font-size:14px;'>It's easy! By keeping your MyWebSearch toolbar enabled in your browser, you can access this feature directly from your toolbar - from anywhere on the web!</div>");

    var modalHtml = welcomeHtml.join("");
    if(partnerId.indexOf(productCode) != -1 ) {
        modalHtml = wbHtml.join("");
    }

    var oOverlay=document.createElement('div');
    var iDisplayHeight=0;
    iDisplayHeight=Math.max(iDisplayHeight,document.body.offsetHeight);
    iDisplayHeight=Math.max(iDisplayHeight,document.body.scrollHeight);
    iDisplayHeight=Math.max(iDisplayHeight,document.body.parentNode.offsetHeight);
    iDisplayHeight=Math.max(iDisplayHeight,document.body.parentNode.scrollHeight);
    oOverlay.style.height=(iDisplayHeight)+'px';
    var iDisplayWidth=0;
    iDisplayWidth=Math.max(iDisplayWidth,document.body.scrollWidth);
    iDisplayWidth=Math.max(iDisplayWidth,document.body.offsetWidth);
    oOverlay.className="TOOLBAR_enable_modal_bg";
    oOverlay.style.width=(iDisplayWidth)+'px';
    oOverlay.style.backgroundColor = "black";
    oOverlay.style.display = "block";
    oOverlay.style.position = "absolute";
    oOverlay.style.top = "0";
    oOverlay.style.left = "0";
    oOverlay.style.opacity = (75 / 100);
    oOverlay.style.filter = "alpha(opacity=75)";
    document.body.appendChild(oOverlay);

    var oDiv=document.createElement('div');
    oDiv.innerHTML=modalHtml;
    oDiv.className="TOOLBAR_enable_modal";
    oDiv.style.backgroundImage = "url(http://ak.imgfarm.com/images/mindspark/toolbar/back.png)";
    oDiv.style.backgroundRepeat = "no-repeat";
    oDiv.style.width = "614px";
    oDiv.style.height = "364px";
    oDiv.style.position = "absolute";
    var viewPortWidth = document.body.clientWidth;
    var viewPortHeight = document.body.clientHeight;
    if (self.innerHeight){ // all except Explorer
        viewPortWidth = self.innerWidth;
        viewPortHeight = self.innerHeight;
    } else if (document.documentElement && document.documentElement.clientHeight){// Explorer 6 Strict Mode
        viewPortWidth = document.documentElement.clientWidth;
        viewPortHeight = document.documentElement.clientHeight;
    }
    var scrollT = Math.max(document.body.scrollTop,document.documentElement.scrollTop);
    var top = Math.floor(viewPortHeight/2) - 157;//placing in middle minus modal offsetX
    var left = Math.floor(viewPortWidth/2) - 307;//placing in middle minus modal offsetY
    top += scrollT;
    oDiv.style.top = top + "px";
    oDiv.style.left = left + "px";
    oDiv.style.padding = "50px";
    document.body.appendChild(oDiv);

    document.body.style.overflowX = "hidden";
    document.documentElement.style.overflowX = "hidden";
}

// Copied from PartnerId.js
// See com.mindspark.util.partnerid.PartnerId.java

INVALID_SUB_ID = 'XXXXXXXXXX';

function PartnerIdFactory() {
    // Parses a serialized partner ID in either old or new format.
    // @param s  serialized partner ID
    // @param subId  sub-ID (not part of the serialized string) -- can be null or omitted
    // @param defaultCobrand  cobrand to use if serialized cobrand is invalid
    // @return  partner ID object (will never be null).  If the serialized ID is
    // empty or invalid, and defaultCobrand is specified, this will return a
    // valid partner ID consisting of just the default cobrand, using the new
    // format if the serialized ID begins with a '^' or the default cobrand is
    // longer than 2 characters, or the old format otherwise.  If the serialized
    // ID is empty or invalid, and defaultCobrand is null or omitted, this will
    // return an empty (invalid) partner ID object.
    var _parse = function (s, subId, defaultCobrand) {
        if (typeof(s) === 'undefined')
            s = null;
        if (typeof(subId) === 'undefined')
            subId = null;
        if (typeof(defaultCobrand) === 'undefined')
            defaultCobrand = null;

        s = trim(s);
        if (isEmpty(s)) {
            if (defaultCobrand === null)
                return new PartnerId(null, null, null, null, null, null, "", null, false);

            return getDefaultPartnerId(defaultCobrand, subId, s, defaultCobrand.length === 2);
        }

        if (s.charAt(0) == DELIMITER)
            return parseNew(s, subId, defaultCobrand);

        return parseOld(s, null, subId, defaultCobrand);
    };
    this.parse = _parse;

    // Creates a new partner ID from its components.  It will be serialized using the new format.
    // All the parameters except cobrand may be null or omitted (useOldFormat defaults to false) --
    // if the cobrand is invalid, returns a PartnerId object flagged invalid.
    // All the parameters will be validated.  If the sub-ID is invalid, it will be set to
    // INVALID_SUB_ID.  If any other parameters are invalid, they will be null in the resulting
    // PartnerId object.
    this.makePartnerId = function (cobrand, campaign, track, country, subId, parent, useOldFormat) {
        if (typeof(cobrand) === 'undefined')
            cobrand = null;
        if (typeof(campaign) === 'undefined')
            campaign = null;
        if (typeof(track) === 'undefined')
            track = null;
        if (typeof(country) === 'undefined')
            country = null;
        if (typeof(subId) === 'undefined')
            subId = null;
        if (typeof(parent) === 'undefined')
            parent = null;
        if (typeof(useOldFormat) === 'undefined')
            useOldFormat = false;

        return new PartnerId(cobrand, campaign, track, country, _validateSubId(subId), parent, null, null, useOldFormat);
    };

    // Constructs a "viral" partner ID given parent and child strings.  The new partner ID will use
    // the new format unless both parent and child use the old format.
    // Note that if the parent ID itself has a parent, that parent (the grandparent) will be used
    // as the parent of the resulting ID.
    var _makeViralPartnerId = function (child, parent, subId) {
        if (typeof(subId) === 'undefined')
            subId = null;

        var childId = _parse(child, subId);
        if (typeof(parent) === 'undefined' || parent === null) {
            return childId;
        }

        var parentId = _parse(parent);
        var useOldFormat = childId.isOldFormat() && (!parentId.hasParent() && parentId.isOldFormat() || parentId.hasParent() && parentId.getParent().isOldFormat())
        return new PartnerId(childId.getCobrand(), childId.getCampaign(), childId.getTrack(), childId.getCountry(),
            _validateSubId(subId), parentId, null, null, useOldFormat);
    };
    this.makeViralPartnerId = _makeViralPartnerId;

    this.validateField = _validateField;
    this.isFieldValid = _isFieldValid;
    this.validateCountry = _validateCountry;
    this.validateSubId = _validateSubId;
    this.urlEncodePartnerId = _urlEncodePartnerId;

    // Private "constants"
    var DELIMITER = '^';
    var PARENT_DELIMITER = '_';

    var NEW_PARTNER_PARAM = 'p2';
    var MAX_ID_LEN = 23;   // this is the size of Vlad's buffer

    var VALID_FIELD = /^[a-zA-Z0-9]{1,6}$/;
    var VALID_SUB_ID = /^[a-zA-Z0-9_-]{2,26}$/;
    var TRIM_LEFT = /^\s+/;
    var TRIM_RIGHT = /\s+$/;

    // Private constructor
    function PartnerId(_cobrand, _campaign, _track, _country, _subId, _parent, _serializedForm, _reportingTrack, useOldFormat) {
        var cobrand = toUpperCase(_validateField(_cobrand));
        var campaign = null;
        var track = null;
        var country = null;
        var parent = null;
        var subId = null;
        var reportingTrack = null;
        var serializedForm = "";

        if (cobrand != null) {
            // If no cobrand, partner ID is invalid -- all fields should be null
            // except serializedForm, which will be the empty string
            campaign = toLowerCase(_validateField(_campaign));
            track = toUpperCase(_validateField(_track));
            country = _validateCountry(_country);

            if (_parent != null)
            {
                // Use the grandparent if present
                if (_parent.hasParent())
                    _parent = _parent.getParent();

                if (!_parent.isValid())
                    _parent = null;

                // Forget the parent sub-ID, since it will not be serialized
                if (_parent != null && _parent.hasSubId())
                {
                    _parent = new PartnerId (_parent.getCobrand(), _parent.getCampaign(), _parent.getTrack(), _parent.getCountry(),
                        null, null, _parent.toString(), _parent.getReportingTrack(), _parent.isOldFormat());
                }
            }
            parent = _parent;

            // Don't validate subId here -- if we're synthesizing a new partner ID,
            // it will have been validated by the public makePartnerId method; if
            // we're processing an existing partner ID, leave it unvalidated since
            // reporting doesn't validate it.
            if (!isEmpty(_subId))
                subId = trim(_subId);

            serializedForm = trim(_serializedForm);
            if (serializedForm == null) {
                // Make sure to use the validated values!
                var pair = [];
                if (useOldFormat)
                    pair = serializeOld(cobrand, campaign, track, country, parent);
                else
                    pair = serializeNew(cobrand, campaign, track, country, parent);
                serializedForm = pair[0];
                reportingTrack = pair[1];
            }
            else
            	reportingTrack = trim(toLowerCase(_reportingTrack));
        }

        this.toString = function () {
            return serializedForm;
        }

        this.getCobrand = function () {
            return cobrand;
        };
        this.getCampaign = function () {
            return campaign;
        };
        this.getTrack = function () {
            return track;
        };
        this.getCountry = function () {
            return country;
        };
        this.getSubId = function () {
            return subId;
        };
        this.getReportingTrack = function () {
        	return reportingTrack;
        };
        this.getParent = function () {
            return parent;
        };
        this.getChild = function () {
            if (parent == null)
                return this;

            return new PartnerId(cobrand, campaign, track, country, subId, null, null, null, useOldFormat);
        };
        this.hasCobrand = function () {
            return cobrand != null;
        }
        this.hasCampaign = function () {
            return campaign != null;
        }
        this.hasTrack = function () {
            return track != null;
        }
        this.hasCountry = function () {
            return country != null;
        }
        this.hasSubId = function () {
            return subId != null;
        }
        this.hasParent = function () {
            return parent != null;
        }

        this.addToUrl = function (baseUrl, oldParamName, oldParamName2) {
            var s = '';
            if (baseUrl != null)
                s = trim(baseUrl);

            if (_isValid()) {
                var lastChar = '\0';
                if (s.length > 0)
                    lastChar = s.charAt(s.length - 1);
                if (lastChar != '?' && lastChar != '&') {
                    if (s.indexOf('?') >= 0 || s.indexOf('&') >= 0)
                        s += '&';
                    else
                        s += '?';
                }

                s += _appendQueryParameters(oldParamName, oldParamName2);
            }

            return s;
        }

        // Convenience method which returns a new partner ID object using this
        // partner ID as the parent.
        // @param child  serialized child partner ID (old or new format)
        // @return  new partner ID object.  If both the child and parent use the old format,
        // the new partner ID will also use the old format; otherwise, it will use the new format.
        this.makeViralPartnerId = function (child, childSubId) {
            if (typeof(childSubId) === 'undefined')
                childSubId = null;
            return _makeViralPartnerId(child, serializedForm, childSubId);
        }

        this.isValid = _isValid;
        this.isNewFormat = _isNewFormat;
        this.isOldFormat = _isOldFormat;
        this.appendQueryParameters = _appendQueryParameters;

        function _isValid() {
            return cobrand != null;
        }

        function _isNewFormat() {
            return serializedForm.length > 0 && serializedForm.charAt(0) == DELIMITER;
        }

        function _isOldFormat() {
            return serializedForm.length > 0 && serializedForm.charAt(0) != DELIMITER;
        }

        function _appendQueryParameters(oldParamName, oldParamName2) {
            var s = '';
            if (!_isValid())
                return s;

            var encoded = _urlEncodePartnerId(serializedForm);
            if (_isNewFormat())
                s += 'p2=';
            else {
            	if (!isEmpty(oldParamName2))
            		s += oldParamName2 + '=' + encoded + '&';
                s += oldParamName + '=';
            }
            s += encoded;

            if (subId != null) {
                s += '&si=' + urlEncode(subId);
            }

            return s;
        }
    }

    function parseNew(s, subId, defaultCobrand) {
        // First, apply reporting's validation
        if (s.charAt(0) != DELIMITER)
            return getDefaultPartnerId(defaultCobrand, subId, s, false);

        // 1. Extract and validate cobrand
        var leadingDelimiterStripped = s.substring(1);
        var st = new StringTokenizer(leadingDelimiterStripped);
        var cobrand = st.nextToken(DELIMITER);
        if (!_isFieldValid(cobrand))
            return getDefaultPartnerId(defaultCobrand, subId, s, false);

        // 2. If "track" contains any invalid characters (currently only pipes),
        // treat it as empty.
        if (st.hasMoreTokens() && st.remainder().indexOf('|') > 0)
            return getDefaultPartnerId(cobrand, subId, s, false);

        // As far as reporting is concerned, this is a valid partner ID, so we
        // can now break out the remaining fields.
        // First see if there's a parent partner ID
        var childPart = st.nextToken (PARENT_DELIMITER);
        var parent = null;
        if (st.hasMoreTokens()) {
            // Parent may be old or new format due to legacy code
            // If the parent cobrand is invalid, ignore the parent partner ID
            parent = _parse(normalizeParent(st.remainder()), null, null);
        }

        var stChild = new StringTokenizer(childPart);
        var campaign = stChild.nextToken(DELIMITER);
        var track = stChild.nextToken(DELIMITER);
        var country = stChild.nextToken(DELIMITER);   // allow for more (currently undefined) fields

        // Extract the reporting track (all but the cobrand)
        var reportingTrack = null;
        var pos = leadingDelimiterStripped.indexOf(DELIMITER);
        if (pos > 0)
            reportingTrack = leadingDelimiterStripped.substring(pos);

        return new PartnerId(cobrand, campaign, track, country, subId, parent, s, reportingTrack, false);
    }

    function normalizeParent(parent) {
        // Parent may be old format due to some legacy code which constructs viral partner IDs
        // by simply concatenating the child and parent.  It may be ambiguous whether the parent
        // is an old-format ID or a new-format ID containing just the cobrand.  Since old-format
        // IDs must be either 2, 8, 10, or 12 characters long, and new-format cobrands must be
        // 6 chars or fewer, we can use the length to discriminate.
        var parentIsOldFormat = parent.indexOf (DELIMITER) < 0 && (parent.length === 2 || parent.length > 6);

        // Legacy code may include an extraneous delimiter
        if (!parentIsOldFormat && parent.charAt(0) !== DELIMITER)
            parent = DELIMITER + parent;

        return parent;
    }

    // Logic is copied from search, which is based on Vlad's parser
    function parseOld(partnerParam, idCookie, subId, defaultCobrand) {
        var serializedPartnerString = null;
        var cobrand = null;
        var reportingTrack = null;
        var campaign = null;
        var track = null;
        var country = null;
        var parent = null;

        if (partnerParam != null) {
            serializedPartnerString = partnerParam;
            partnerParam = partnerParam.toUpperCase();
            if (partnerParam.length > 2) {
                reportingTrack = partnerParam.substring(2);
                cobrand = partnerParam.substring(0, 2);
            }
            else {
                cobrand = partnerParam;
            }
            if (reportingTrack==null && idCookie != null && idCookie.length <= MAX_ID_LEN) {
                reportingTrack = idCookie;

                // The "original partner ID" is a somewhat hazy concept.
                // It is intended to be either the ptnrS parameter or the
                // ptnrS + id cookies concatenated, hence this logic.
                if (serializedPartnerString.length == 2)
                    serializedPartnerString += idCookie;
            }

            // If cobrand is not valid, use default
            if (!_isFieldValid(cobrand) || cobrand.length != 2) {
                cobrand = defaultCobrand;
            }
        }
        else {
            // No cobrand found -- use default
            cobrand = defaultCobrand;
        }

        if (cobrand == null)
            return new PartnerId(null, null, null, null, null, null, "", null);

        // If id contains a pipe, consider it invalid
        if (reportingTrack != null && reportingTrack.indexOf('|') >= 0)
            reportingTrack = null;

		var origTid = reportingTrack;
        if (reportingTrack != null) {
            // Break out parts of id
            // Use serializedPartnerString, not reportingTrack so that parent will have original case
            var pos = serializedPartnerString.indexOf(PARENT_DELIMITER);
            if (pos >= 0) {
                // Parent may be old or new format due to legacy code
                // If the parent cobrand is invalid, ignore the parent partner ID
                parent = _parse(normalizeParent(serializedPartnerString.substring(pos + 1)), null, null);

                pos = reportingTrack.indexOf (PARENT_DELIMITER);
                if (pos >= 0)   // should always be true
                    reportingTrack = reportingTrack.substring (0, pos);
            }

            var len = reportingTrack.length;
            if (len <= 6)
                campaign = reportingTrack;
            else
                campaign = reportingTrack.substring(0, 6);

            if (len >= 8) {
                track = reportingTrack.substring(6, 8);
                if (len >= 10)
                    country = reportingTrack.substring(8, 10);
            }
        }

        return new PartnerId(cobrand, campaign, track, country, subId, parent, serializedPartnerString, origTid, true);
    }

    function serializeNew(cobrand, campaign, track, country, parent) {
        var s = DELIMITER;
        if (cobrand != null)
            s += cobrand;

        var reportingTrackStart = s.length;
        s += DELIMITER;
        if (campaign != null)
            s += campaign;

        s += DELIMITER;
        if (track != null)
            s += track;

        s += DELIMITER;
        if (country != null)
            s += country;

        if (parent != null) {
            s += PARENT_DELIMITER;
            // Even if parent partner ID was in old format, when we serialize
            // the compound partner ID, we must use the new format.
            // Also, don't serialize the parent's parent (if any).
            s += serializeNew(parent.getCobrand(), parent.getCampaign(), parent.getTrack(),
                parent.getCountry(), null)[0].substring(1);
        }

        var reportingTrack = s.substring(reportingTrackStart).toLowerCase();
        return [s, reportingTrack];
    }

    function serializeOld(cobrand, campaign, track, country, parent) {
        if (cobrand == null)
            return ["", ""];

        if (cobrand.length != 2)
            return ["", ""];   // throw an exception?

        var s = cobrand;
        var reportingTrackStart = s.length;

        if (length(campaign) == 6) {
            s += campaign;
            if (length(track) == 2) {
                s += track;
                if (length(country) == 2)
                    s += country;
            }
        }

        if (parent != null) {
            // Even if parent partner ID was in new format, when we serialize
            // the compound partner ID, we must use the old format.
            // Also, don't serialize the parent's parent (if any).
            var serializedParent = serializeOld(parent.getCobrand(), parent.getCampaign(),
                    parent.getTrack(), parent.getCountry(), null)[0];
            if (serializedParent.length > 0) {
                s += '_' + serializedParent;
            }
        }

        var reportingTrack = s.substring(reportingTrackStart).toLowerCase();
        return [s, reportingTrack];
    }

    function length(s) {
        if (s == null)
            return 0;

        return s.length;
    }

    function _validateField(field) {
        field = trim(field);
        if (isEmpty(field)) {
            return null;
        }

        if (!VALID_FIELD.test(field)) {
            return null;
        }

        return field;
    }

    function _validateCountry(country) {
        country = _validateField(country);
        if (country == null)
            return null;

        if (country.length != 2)
            return null;

        return country.toLowerCase();
    }

    function _validateSubId(subId) {
        subId = trim(subId);
        if (isEmpty(subId)) {
            return null;
        }

        if (!VALID_SUB_ID.test(subId)) {
            return INVALID_SUB_ID;
        }

        return subId;
    }

    function _isFieldValid(field) {
        return _validateField(field) != null;
    }

    function getDefaultPartnerId(cobrand, subId, origValue, useOldFormat) {
        return new PartnerId(cobrand, null, null, null, subId, null, origValue, null, useOldFormat);
    }

    function isEmpty(s) {
        return s == null || s.length == 0;
    }

    function toUpperCase(s) {
        if (s == null)
            return null;

        return s.toUpperCase();
    }

    function toLowerCase(s) {
        if (s == null)
            return null;

        return s.toLowerCase();
    }

    // From jQuery, but returns null if arg is null
    trim = String.prototype.trim ?
        function (text) {
            return text == null ?
                null :
                String.prototype.trim.call(text);
        } :
        function (text) {
            return text == null ?
                null :
                text.toString().replace(TRIM_LEFT, "").replace(TRIM_RIGHT, "");
        };

    // encodeURI and encodeURIComponent, conforming to the RFC, encode the caret delimiter,
    // which will mess up reporting (they don't URL-decode) and may significantly increase
    // the length of the URL.
    function _urlEncodePartnerId(partnerId) {
        return encodeURIComponent(partnerId).replace(/%5[eE]/g, '^');
    }

    function urlEncode(s) {
        return encodeURIComponent(s);
    }

    function StringTokenizer(text) {
        var s = text;
        var start = 0;
        var len = 0;
        if (text != null)
            len = text.length;

        this.hasMoreTokens = function() {
            return start < len;
        };

        this.nextToken = function (delim) {
            if (!this.hasMoreTokens())
                return null;

            var pos;
            for (pos = start; pos < len; pos++) {
                if (s.charAt(pos) == delim) {
                    var result = s.substring(start, pos);
                    start = pos + 1;
                    return result;
                }
            }

            // No more delimiters found -- return the rest of the string
            var result = s.substring(start);
            start = len;
            return result;
        };

        this.remainder = function () {
            if (!this.hasMoreTokens())
                return null;

            return s.substring(start);
        };
    }
}
// End PartnerId.js

// Creates a viral (parent/child) partner ID string using a specified child partner ID string and the toolbar's partner ID as the parent.
// The resulting partner ID will use the old format if both parent and child are in the old format, otherwise the new format.
// @param child serialized child partner ID, in either old or new format.
// @param parent serialized (optional) parent partner ID, in either old or new format.  If null or omitted, will use the toolbar's partner ID, if any.
// @return serialized viral partner ID
function makeViralPartnerId(child, parent) {
    if (typeof(parent) === 'undefined' || parent === null) {
        parent = TOOLBAR.sPartnerID;
    }

    var pf = new PartnerIdFactory();
    return pf.makeViralPartnerId(child, parent).toString();
}

function getCookie(cookieName) {
    //Taken from jquery
    return (result = new RegExp('(?:^|; )' + encodeURIComponent(cookieName) + '=([^;]*)').exec(document.cookie)) ? decodeURIComponent(result[1]) : null;
}

function getBrowserInfo() {
    //This should match the logic from the download app.
    var browserInfo = {
        isIE: false,
        isFirefox: false,
        isChrome: false,
        isSafari: false,
        isOther: false
    };
    var userAgent = navigator.userAgent.toUpperCase();
    if (userAgent.indexOf('MSIE 6.0') >= 0 || userAgent.indexOf('MSIE 7.0') >= 0 ||
        userAgent.indexOf('MSIE 8.0') >= 0 || userAgent.indexOf('MSIE 9.0') >= 0) {
        browserInfo.isIE = true;
    } else if (userAgent.indexOf('FIREFOX') >= 0) {
        browserInfo.isFirefox = true;
    } else if (userAgent.indexOf('CHROME') >= 0) {
        browserInfo.isChrome = true;
    } else if (userAgent.indexOf('SAFARI') >= 0) {
        browserInfo.isSafari = true;
    } else {
        browserInfo.isOther = true;
    }
    return browserInfo;
}
TOOLBAR.master_list = {
  "203040006_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 203040006,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "203040006_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-chimpoo_3aplugin",
      "prog_id" : "Chimpoo_3a.SettingsPlugin",
      "activeX_object" : "Chimpoo_3a.SettingsPlugin",
      "classid" : "c59074a9-b755-4abc-b0c5-dd96f18aea97",
      "html_id" : "ChimpooSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3a",
      "toolbandClassid" : "5b010b98-98f5-4faf-bdc5-f24746d465ce",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "203040006_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-chimpoo_3aplugin",
      "prog_id" : "Chimpoo_3a.HTMLMenu",
      "activeX_object" : "Chimpoo_3a.HTMLMenu",
      "classid" : "6e229f6a-b2b1-49de-b8ce-0d120e40f198",
      "html_id" : "ChimpooHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000606_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000606,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000606_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-dailyfitnesscenter_53plugin",
      "prog_id" : "DailyFitnessCenter_53.SettingsPlugin",
      "activeX_object" : "DailyFitnessCenter_53.SettingsPlugin",
      "classid" : "73c3a474-f0f8-4274-ba4a-96f216fca42d",
      "html_id" : "DailyFitnessCenterSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "53",
      "toolbandClassid" : "a6547405-a964-4600-8326-e91c95218964",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000606_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-dailyfitnesscenter_53plugin",
      "prog_id" : "DailyFitnessCenter_53.HTMLMenu",
      "activeX_object" : "DailyFitnessCenter_53.HTMLMenu",
      "classid" : "b8bdde9b-bea1-4160-82bb-d32a7a041d25",
      "html_id" : "DailyFitnessCenterHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000487_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000487,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000487_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-couponalertie_2qplugin",
      "prog_id" : "CouponAlertIE_2q.SettingsPlugin",
      "activeX_object" : "CouponAlertIE_2q.SettingsPlugin",
      "classid" : "76c943ba-1a71-4688-8ea9-fe9ffed69f3c",
      "html_id" : "CouponAlertSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2q",
      "toolbandClassid" : "ea5fac6a-ab35-4e03-995f-2f7e744117dd",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000487_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-couponalertie_2qplugin",
      "prog_id" : "CouponAlertIE_2q.HTMLMenu",
      "activeX_object" : "CouponAlertIE_2q.HTMLMenu",
      "classid" : "4827ab21-4da3-40b9-bbc0-2bc051471ef4",
      "html_id" : "CouponAlertHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "204840007_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 204840007,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "204840007_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-holidaylaughs_48plugin",
      "prog_id" : "HolidayLaughs_48.SettingsPlugin",
      "activeX_object" : "HolidayLaughs_48.SettingsPlugin",
      "classid" : "ae232251-ec7b-448f-8528-1d2c1461a0d0",
      "html_id" : "HolidayLaughsSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "48",
      "toolbandClassid" : "a52980de-57ae-4084-ba3e-9a594ba41316",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "204840007_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-holidaylaughs_48plugin",
      "prog_id" : "HolidayLaughs_48.HTMLMenu",
      "activeX_object" : "HolidayLaughs_48.HTMLMenu",
      "classid" : "f101dfe5-e740-41a9-aabc-2211dc6df2be",
      "html_id" : "HolidayLaughsHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "200400322_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 200400322,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "200400322_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-cieonetutilities_0eplugin",
      "prog_id" : "CieoNetUtilities_0e.SettingsPlugin",
      "activeX_object" : "CieoNetUtilities_0e.SettingsPlugin",
      "classid" : "1b3cf572-0d15-4e95-bd03-c59a653b30cd",
      "html_id" : "CieoNetUtilitiesSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "0e",
      "toolbandClassid" : "8175e372-1ff1-4288-8e6e-addebd415d47",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "200400322_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-cieonetutilities_0eplugin",
      "prog_id" : "CieoNetUtilities_0e.HTMLMenu",
      "activeX_object" : "CieoNetUtilities_0e.HTMLMenu",
      "classid" : "6ec936e8-224e-41ab-8a5d-e5d62eb3b6f3",
      "html_id" : "CieoNetUtilitiesHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "200400322_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 200400322,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "200400322_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-cieonetutilities_0eplugin",
      "prog_id" : "CieoNetUtilities_0e.SettingsPlugin",
      "activeX_object" : "CieoNetUtilities_0e.SettingsPlugin",
      "classid" : "1b3cf572-0d15-4e95-bd03-c59a653b30cd",
      "html_id" : "CieoNetUtilitiesSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "0e",
      "toolbandClassid" : "8175e372-1ff1-4288-8e6e-addebd415d47",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "200400322_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-cieonetutilities_0eplugin",
      "prog_id" : "CieoNetUtilities_0e.HTMLMenu",
      "activeX_object" : "CieoNetUtilities_0e.HTMLMenu",
      "classid" : "6ec936e8-224e-41ab-8a5d-e5d62eb3b6f3",
      "html_id" : "CieoNetUtilitiesHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000414_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000414,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000414_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-v4-dictionarybossplugin",
      "prog_id" : "DictionaryBoss.SettingsPlugin",
      "activeX_object" : "DictionaryBoss.SettingsPlugin",
      "classid" : "8eb0aaa0-2ffe-4326-8331-efe2d5d15ec7",
      "html_id" : "DictionaryBossSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "v4",
      "toolbandClassid" : "3042df7a-e900-4389-9b94-923df0daa57e",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000414_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-v4-dictionarybossplugin",
      "prog_id" : "DictionaryBoss.HTMLMenu",
      "activeX_object" : "DictionaryBoss.HTMLMenu",
      "classid" : "f9a402fd-82c8-4743-991e-bc77e62da0e5",
      "html_id" : "DictionaryBossHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "mws_iwon_msie_old" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000507,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "mws_iwon_msie_old",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-iwonie_3qplugin",
      "prog_id" : "iWon_3q.SettingsPlugin",
      "activeX_object" : "iWon_3q.SettingsPlugin",
      "classid" : "e869c769-0611-4be5-ba23-1a23915e138e",
      "html_id" : "iWonSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3q",
      "toolbandClassid" : "ec10cb1c-b9f6-460c-ae70-943eed99b5d0",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "mws_iwon_msie_old",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-iwonie_3qplugin",
      "prog_id" : "iWon_3q.HTMLMenu",
      "activeX_object" : "iWon_3q.HTMLMenu",
      "classid" : "e38b85d6-51e3-4b60-acce-ccbbf23fdf5c",
      "html_id" : "iWonHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000508_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000508,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000508_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-iwong_3rplugin",
      "prog_id" : "iWonG_3r.SettingsPlugin",
      "activeX_object" : "iWonG_3r.SettingsPlugin",
      "classid" : "b26e7254-59fd-4b7a-9bb7-98baa91745d8",
      "html_id" : "IWONGlobalSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3r",
      "toolbandClassid" : "82f32b41-9289-44d1-90a1-4837c46a79a0",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000508_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-iwong_3rplugin",
      "prog_id" : "iWonG_3r.HTMLMenu",
      "activeX_object" : "iWonG_3r.HTMLMenu",
      "classid" : "0e80cafb-86da-4cd2-b416-3bfaa748c1fc",
      "html_id" : "IWONGlobalHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "206800353_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 206800353,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "206800353_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-marineaquarium3free_57plugin",
      "prog_id" : "MarineAquarium3Free_57.SettingsPlugin",
      "activeX_object" : "MarineAquarium3Free_57.SettingsPlugin",
      "classid" : "d35349a7-84d1-4a70-8536-e9c1f77dcf5b",
      "html_id" : "MarineAquariumFreeSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "57",
      "toolbandClassid" : "07189b84-b33b-4a1e-9b32-ad203c983c20",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "206800353_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-marineaquarium3free_57plugin",
      "prog_id" : "MarineAquarium3Free_57.HTMLMenu",
      "activeX_object" : "MarineAquarium3Free_57.HTMLMenu",
      "classid" : "c0fd73b4-c692-4061-b36f-bc15b111314c",
      "html_id" : "MarineAquariumFreeHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "202040436_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 202040436,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "202040436_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-sounddabble_2lplugin",
      "prog_id" : "SoundDabble_2l.SettingsPlugin",
      "activeX_object" : "SoundDabble_2l.SettingsPlugin",
      "classid" : "a2445a6a-f630-4114-9baa-7182cfda41c7",
      "html_id" : "SoundDabbleSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2l",
      "toolbandClassid" : "7748e11f-41eb-4ebd-9ae8-3f7dc602da73",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "202040436_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-sounddabble_2lplugin",
      "prog_id" : "SoundDabble_2l.HTMLMenu",
      "activeX_object" : "SoundDabble_2l.HTMLMenu",
      "classid" : "c173da6e-e22c-42aa-91ee-b0422ebcb3c5",
      "html_id" : "SoundDabbleHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "200781283_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 200781283,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "200781283_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-myscrapnookie_13plugin",
      "prog_id" : "MyScrapNookIE_13.SettingsPlugin",
      "activeX_object" : "MyScrapNookIE_13.SettingsPlugin",
      "classid" : "596c5969-8964-4a84-bc66-e0d363b24846",
      "html_id" : "MyScrapNookSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "13",
      "toolbandClassid" : "f1cd8969-75e6-4f6b-8abb-e89104d6706e",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "200781283_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-myscrapnookie_13plugin",
      "prog_id" : "MyScrapNookIE_13.HTMLMenu",
      "activeX_object" : "MyScrapNookIE_13.HTMLMenu",
      "classid" : "dff14fb0-aef4-4a45-a000-42d38b8ed426",
      "html_id" : "MyScrapNookHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000482_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000482,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000482_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bettercareersearch_2bplugin",
      "prog_id" : "BetterCareerSearch_2b.SettingsPlugin",
      "activeX_object" : "BetterCareerSearch_2b.SettingsPlugin",
      "classid" : "ec54856f-49da-470e-8f12-6912dde37262",
      "html_id" : "BetterCareerSearchSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2b",
      "toolbandClassid" : "7ff70c81-f37a-4d7b-9d30-ba8ee8c80d5f",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000482_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bettercareersearch_2bplugin",
      "prog_id" : "BetterCareerSearch_2b.HTMLMenu",
      "activeX_object" : "BetterCareerSearch_2b.HTMLMenu",
      "classid" : "2d73a47a-f51b-4210-905c-6d5170b4a9b6",
      "html_id" : "BetterCareerSearchHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "206800353_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 206800353,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "206800353_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-marineaquarium3free_57plugin",
      "prog_id" : "MarineAquarium3Free_57.SettingsPlugin",
      "activeX_object" : "MarineAquarium3Free_57.SettingsPlugin",
      "classid" : "d35349a7-84d1-4a70-8536-e9c1f77dcf5b",
      "html_id" : "MarineAquariumFreeSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "57",
      "toolbandClassid" : "07189b84-b33b-4a1e-9b32-ad203c983c20",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "206800353_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-marineaquarium3free_57plugin",
      "prog_id" : "MarineAquarium3Free_57.HTMLMenu",
      "activeX_object" : "MarineAquarium3Free_57.HTMLMenu",
      "classid" : "c0fd73b4-c692-4061-b36f-bc15b111314c",
      "html_id" : "MarineAquariumFreeHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000417_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000417,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000417_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-j2-soccerinfernoplugin",
      "prog_id" : "SoccerInferno.SettingsPlugin",
      "activeX_object" : "SoccerInferno.SettingsPlugin",
      "classid" : "8bb0336e-419b-4059-9647-db7d98088895",
      "html_id" : "SoccerInfernoSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "j2",
      "toolbandClassid" : "c5a318c1-d1d9-41f0-85fe-41cc9fb25e75",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000417_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-j2-soccerinfernoplugin",
      "prog_id" : "SoccerInferno.HTMLMenu",
      "activeX_object" : "SoccerInferno.HTMLMenu",
      "classid" : "d75cf7ce-914d-4254-b71d-b002493eff5d",
      "html_id" : "SoccerInfernoHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000414_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000414,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000414_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-kg-dictionarybossieplugin",
      "prog_id" : "DictionaryBossIE.SettingsPlugin",
      "activeX_object" : "DictionaryBossIE.SettingsPlugin",
      "classid" : "22784789-94d5-482d-829e-3fc79e73a5b2",
      "html_id" : "DictionaryBossSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "kg",
      "toolbandClassid" : "d42bfdf4-675e-4e2a-bc01-6279400cda74",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000414_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-kg-dictionarybossieplugin",
      "prog_id" : "DictionaryBossIE.HTMLMenu",
      "activeX_object" : "DictionaryBossIE.HTMLMenu",
      "classid" : "3816e0ad-be43-4138-a828-e06b1ad8fab9",
      "html_id" : "DictionaryBossHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000526_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000526,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000526_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mmainmotionie_3nplugin",
      "prog_id" : "MMAinMotionIE_3n.SettingsPlugin",
      "activeX_object" : "MMAinMotionIE_3n.SettingsPlugin",
      "classid" : "3581a46e-2f2c-4b05-ab9a-9bd962ecd41b",
      "html_id" : "MMAinMotionSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3n",
      "toolbandClassid" : "dc298731-1206-4083-a6de-355472b23092",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000526_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mmainmotionie_3nplugin",
      "prog_id" : "MMAinMotionIE_3n.HTMLMenu",
      "activeX_object" : "MMAinMotionIE_3n.HTMLMenu",
      "classid" : "6ce11528-811c-415c-8723-8b79694c6968",
      "html_id" : "MMAinMotionHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "202820547_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 202820547,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "202820547_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-seconddomain_35plugin",
      "prog_id" : "SecondDomain_35.SettingsPlugin",
      "activeX_object" : "SecondDomain_35.SettingsPlugin",
      "classid" : "1642997d-6a3b-42b0-84b4-d066f7165f1d",
      "html_id" : "SecondDomainSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "35",
      "toolbandClassid" : "02734475-8fdc-47b8-b534-665a74fe8107",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "202820547_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-seconddomain_35plugin",
      "prog_id" : "SecondDomain_35.HTMLMenu",
      "activeX_object" : "SecondDomain_35.HTMLMenu",
      "classid" : "be8f561f-0558-41ba-bdba-67549e8b8fbc",
      "html_id" : "SecondDomainHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "202120498_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 202120498,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "202120498_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-timesofindia_2rplugin",
      "prog_id" : "TimesofIndia_2r.SettingsPlugin",
      "activeX_object" : "TimesofIndia_2r.SettingsPlugin",
      "classid" : "b89d0e8a-61f6-4ce9-bd43-84ec86d4bc8c",
      "html_id" : "TimesofIndiaSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2r",
      "toolbandClassid" : "c7b65ba1-339d-4327-81ab-1b4e03d80a50",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "202120498_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-timesofindia_2rplugin",
      "prog_id" : "TimesofIndia_2r.HTMLMenu",
      "activeX_object" : "TimesofIndia_2r.HTMLMenu",
      "classid" : "4c58dbed-6822-405d-95eb-5a1c34573fb1",
      "html_id" : "TimesofIndiaHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000535_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000535,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000535_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-astrology_4aplugin",
      "prog_id" : "Astrology_4a.SettingsPlugin",
      "activeX_object" : "Astrology_4a.SettingsPlugin",
      "classid" : "ed2a6fea-bbbb-4c47-a650-b91229645b1f",
      "html_id" : "AstrologySettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4a",
      "toolbandClassid" : "ea184a40-b71a-4aa7-b3be-596349038fa0",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000535_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-astrology_4aplugin",
      "prog_id" : "Astrology_4a.HTMLMenu",
      "activeX_object" : "Astrology_4a.HTMLMenu",
      "classid" : "58e70e22-730a-416b-b3d6-43f39eeaaa4c",
      "html_id" : "AstrologyHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000441_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000441,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000441_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-pg-fantasyfootballbossplugin",
      "prog_id" : "FantasyFootballBoss.SettingsPlugin",
      "activeX_object" : "FantasyFootballBoss.SettingsPlugin",
      "classid" : "cdbbe93c-dcaf-4def-91c5-5f3265b5cda8",
      "html_id" : "FantasyFootballBossSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "pg",
      "toolbandClassid" : "7d216e01-5ac0-4268-b014-7c35c769b312",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000441_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-pg-fantasyfootballbossplugin",
      "prog_id" : "FantasyFootballBoss.HTMLMenu",
      "activeX_object" : "FantasyFootballBoss.HTMLMenu",
      "classid" : "179a214f-1f5f-4ae2-babd-0231d8421b07",
      "html_id" : "FantasyFootballBossHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000507_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000507,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000507_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-iwon_3pplugin",
      "prog_id" : "iWon_3p.SettingsPlugin",
      "activeX_object" : "iWon_3p.SettingsPlugin",
      "classid" : "afea8331-f904-4f59-8559-72eb095f0d68",
      "html_id" : "IWONSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3p",
      "toolbandClassid" : "228d4a48-0340-4cf3-b116-53e6c5ed7d96",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000507_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-iwon_3pplugin",
      "prog_id" : "iWon_3p.HTMLMenu",
      "activeX_object" : "iWon_3p.HTMLMenu",
      "classid" : "52355466-731e-490c-a62e-a6cb9889db52",
      "html_id" : "IWONHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "205320000_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 205320000,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "205320000_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-videodownloadconverter_4zplugin",
      "prog_id" : "VideoDownloadConverter_4z.SettingsPlugin",
      "activeX_object" : "VideoDownloadConverter_4z.SettingsPlugin",
      "classid" : "a86782d8-7b41-452f-a217-1854f72dba54",
      "html_id" : "VideoDownloadConverterSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4z",
      "toolbandClassid" : "48586425-6bb7-4f51-8dc6-38c88e3ebb58",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "205320000_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-videodownloadconverter_4zplugin",
      "prog_id" : "VideoDownloadConverter_4z.HTMLMenu",
      "activeX_object" : "VideoDownloadConverter_4z.HTMLMenu",
      "classid" : "71144427-1368-4d18-8dc9-2ae3cc4c4f83",
      "html_id" : "VideoDownloadConverterHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "201100000_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 201100000,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "201100000_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-popularscreensavers_3fplugin",
      "prog_id" : "PopularScreenSavers_3f.SettingsPlugin",
      "activeX_object" : "PopularScreenSavers_3f.SettingsPlugin",
      "classid" : "fb7a1924-a414-42c0-af46-3c20cf7ee7e0",
      "html_id" : "PopularScreenSaversSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3f",
      "toolbandClassid" : "8afc2231-7185-44d7-9399-95a84c9e55cd",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "201100000_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-popularscreensavers_3fplugin",
      "prog_id" : "PopularScreenSavers_3f.HTMLMenu",
      "activeX_object" : "PopularScreenSavers_3f.HTMLMenu",
      "classid" : "ed74e19b-8b9e-4ac6-ae34-b8309edecae5",
      "html_id" : "PopularScreenSaversHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000450_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000450,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000450_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mortgagehawkie_1mplugin",
      "prog_id" : "MortgageHawkIE_1m.SettingsPlugin",
      "activeX_object" : "MortgageHawkIE_1m.SettingsPlugin",
      "classid" : "76511ea6-c0c5-4ddf-b6b7-c32bf8806775",
      "html_id" : "MortgageHawkSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1m",
      "toolbandClassid" : "ed0e8fc9-c2ca-4338-8282-01fdb03a410e",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000450_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mortgagehawkie_1mplugin",
      "prog_id" : "MortgageHawkIE_1m.HTMLMenu",
      "activeX_object" : "MortgageHawkIE_1m.HTMLMenu",
      "classid" : "bab0152f-4776-4c5b-bc74-6f9d64fd73b5",
      "html_id" : "MortgageHawkHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000606_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000606,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000606_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-dailyfitnesscenterie_54plugin",
      "prog_id" : "DailyFitnessCenterIE_54.SettingsPlugin",
      "activeX_object" : "DailyFitnessCenterIE_54.SettingsPlugin",
      "classid" : "96faa594-3c3b-4070-b3a3-fb791f3af327",
      "html_id" : "DailyFitnessCenterSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "54",
      "toolbandClassid" : "d6689e58-46d8-4d18-b1f4-d3006472c29b",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000606_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-dailyfitnesscenterie_54plugin",
      "prog_id" : "DailyFitnessCenterIE_54.HTMLMenu",
      "activeX_object" : "DailyFitnessCenterIE_54.HTMLMenu",
      "classid" : "f02420eb-21f5-4e77-920c-343767d9ffd2",
      "html_id" : "DailyFitnessCenterHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "206620473_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 206620473,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "206620473_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-electiontracker_59plugin",
      "prog_id" : "ElectionTracker_59.SettingsPlugin",
      "activeX_object" : "ElectionTracker_59.SettingsPlugin",
      "classid" : "de9f2bde-6dc4-43f9-a438-9a6e537d4c80",
      "html_id" : "ElectionTrackerSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "59",
      "toolbandClassid" : "de1540e3-8f32-491f-9868-e0b9c191cdd7",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "206620473_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-electiontracker_59plugin",
      "prog_id" : "ElectionTracker_59.HTMLMenu",
      "activeX_object" : "ElectionTracker_59.HTMLMenu",
      "classid" : "37b3c8be-ccc2-4035-a4de-d31050863fc3",
      "html_id" : "ElectionTrackerHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000452_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000452,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000452_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-ah-orytegames113plugin",
      "prog_id" : "orytegames113.SettingsPlugin",
      "activeX_object" : "orytegames113.SettingsPlugin",
      "classid" : "7734ed47-de89-448f-b983-50ef02142978",
      "html_id" : "OryteGames113ToolbarSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "ah",
      "toolbandClassid" : "31af2c4c-c0f5-4478-8f6c-477026348c86",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000452_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-ah-orytegames113plugin",
      "prog_id" : "orytegames113.HTMLMenu",
      "activeX_object" : "orytegames113.HTMLMenu",
      "classid" : "3aebf93c-ffb0-4338-8562-0abf4219a05c",
      "html_id" : "OryteGames113ToolbarHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000531_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000531,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000531_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-zwinkyie_43plugin",
      "prog_id" : "ZwinkyIE_43.SettingsPlugin",
      "activeX_object" : "ZwinkyIE_43.SettingsPlugin",
      "classid" : "db397d85-a8d1-4e62-a079-655f610f051b",
      "html_id" : "ZwinkyFBSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "43",
      "toolbandClassid" : "8fd0b26b-7f02-4871-b7c0-f70e35a216f9",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000531_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-zwinkyie_43plugin",
      "prog_id" : "ZwinkyIE_43.HTMLMenu",
      "activeX_object" : "ZwinkyIE_43.HTMLMenu",
      "classid" : "1e478d21-0344-4c3a-8be3-1a2daad5bdc7",
      "html_id" : "ZwinkyFBHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000419_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000419,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000419_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-6h-retrogamerieplugin",
      "prog_id" : "RetrogamerIE.SettingsPlugin",
      "activeX_object" : "RetrogamerIE.SettingsPlugin",
      "classid" : "bd95583c-30c9-4799-a068-8de08913cbb6",
      "html_id" : "RetrogamerFacebookSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "6h",
      "toolbandClassid" : "4d96ce9c-9788-44a5-bfbc-45e4e745afb5",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000419_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-6h-retrogamerieplugin",
      "prog_id" : "RetrogamerIE.HTMLMenu",
      "activeX_object" : "RetrogamerIE.HTMLMenu",
      "classid" : "6325f1f7-d4ad-47f6-bcff-069b2d72a5b0",
      "html_id" : "RetrogamerFacebookHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000531_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000531,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000531_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-zwinky_42plugin",
      "prog_id" : "Zwinky_42.SettingsPlugin",
      "activeX_object" : "Zwinky_42.SettingsPlugin",
      "classid" : "151885bd-6ddd-47df-9266-da3f86e1f5fe",
      "html_id" : "ZwinkyFBSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "42",
      "toolbandClassid" : "1df01b27-e0d6-40d5-a8ce-0d926d6f39f3",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000531_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-zwinky_42plugin",
      "prog_id" : "Zwinky_42.HTMLMenu",
      "activeX_object" : "Zwinky_42.HTMLMenu",
      "classid" : "5f65a73d-9fdf-44c9-9f25-4cc36213c7bf",
      "html_id" : "ZwinkyFBHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000442_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000442,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000442_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-u4-guffinsplugin",
      "prog_id" : "Guffins.SettingsPlugin",
      "activeX_object" : "Guffins.SettingsPlugin",
      "classid" : "f8f03266-dec7-4f5c-a6d3-d88533ee9070",
      "html_id" : "GuffinsSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "u4",
      "toolbandClassid" : "de2fdf7c-2637-4ba3-b427-3fce2d331db5",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000442_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-u4-guffinsplugin",
      "prog_id" : "Guffins.HTMLMenu",
      "activeX_object" : "Guffins.HTMLMenu",
      "classid" : "1d69e858-32d5-4888-a395-579c8124112b",
      "html_id" : "GuffinsHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000486_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000486,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000486_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-radiorage_4jplugin",
      "prog_id" : "RadioRage_4j.SettingsPlugin",
      "activeX_object" : "RadioRage_4j.SettingsPlugin",
      "classid" : "9638b7d6-11f5-4406-b387-327642a11ffb",
      "html_id" : "RadioRageSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4j",
      "toolbandClassid" : "78ba36c9-6036-482b-b48d-ecca6f964b84",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000486_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-radiorage_4jplugin",
      "prog_id" : "RadioRage_4j.HTMLMenu",
      "activeX_object" : "RadioRage_4j.HTMLMenu",
      "classid" : "581c7d7d-f809-4e03-a631-74c069d5f04a",
      "html_id" : "RadioRageHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "200400749_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 200400749,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "200400749_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-translatelite_0gplugin",
      "prog_id" : "TranslateLite_0g.SettingsPlugin",
      "activeX_object" : "TranslateLite_0g.SettingsPlugin",
      "classid" : "659171b5-d8aa-4cdd-863c-1abebfc380d2",
      "html_id" : "TranslateLiteSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "0g",
      "toolbandClassid" : "8c068c2f-44c4-4a88-a18e-b1a612803bb5",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "200400749_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-translatelite_0gplugin",
      "prog_id" : "TranslateLite_0g.HTMLMenu",
      "activeX_object" : "TranslateLite_0g.HTMLMenu",
      "classid" : "bada09e6-824b-433a-ac80-dea453e32c53",
      "html_id" : "TranslateLiteHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "201420000_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 201420000,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "201420000_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-yourlocallotto1_20plugin",
      "prog_id" : "yourlocallotto1_20.SettingsPlugin",
      "activeX_object" : "yourlocallotto1_20.SettingsPlugin",
      "classid" : "af3e93e3-6e1c-4dcb-bc1f-68f038c2bc17",
      "html_id" : "YourLocalLottoSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "20",
      "toolbandClassid" : "e2993f50-db88-405c-baec-91a1805c3517",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "201420000_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-yourlocallotto1_20plugin",
      "prog_id" : "yourlocallotto1_20.HTMLMenu",
      "activeX_object" : "yourlocallotto1_20.HTMLMenu",
      "classid" : "92891aac-af09-4f18-9410-31944e3384c0",
      "html_id" : "YourLocalLottoHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000606_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000606,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000606_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-dailyfitnesscenter_53plugin",
      "prog_id" : "DailyFitnessCenter_53.SettingsPlugin",
      "activeX_object" : "DailyFitnessCenter_53.SettingsPlugin",
      "classid" : "73c3a474-f0f8-4274-ba4a-96f216fca42d",
      "html_id" : "DailyFitnessCenterSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "53",
      "toolbandClassid" : "a6547405-a964-4600-8326-e91c95218964",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000606_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-dailyfitnesscenter_53plugin",
      "prog_id" : "DailyFitnessCenter_53.HTMLMenu",
      "activeX_object" : "DailyFitnessCenter_53.HTMLMenu",
      "classid" : "b8bdde9b-bea1-4160-82bb-d32a7a041d25",
      "html_id" : "DailyFitnessCenterHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000417_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000417,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000417_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-w4-soccerinfernoieplugin",
      "prog_id" : "SoccerInfernoIE.SettingsPlugin",
      "activeX_object" : "SoccerInfernoIE.SettingsPlugin",
      "classid" : "78b1c0fd-1a34-4afb-8f23-5f5b891ce92c",
      "html_id" : "SoccerInfernoSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "w4",
      "toolbandClassid" : "93f2f6b3-fb6b-4d95-aee8-d5918943a190",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000417_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-w4-soccerinfernoieplugin",
      "prog_id" : "SoccerInfernoIE.HTMLMenu",
      "activeX_object" : "SoccerInfernoIE.HTMLMenu",
      "classid" : "b3cffb62-15ae-44ae-868d-a706fd5b1a62",
      "html_id" : "SoccerInfernoHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000457_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000457,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000457_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-videoscavenger_1eplugin",
      "prog_id" : "VideoScavenger_1e.SettingsPlugin",
      "activeX_object" : "VideoScavenger_1e.SettingsPlugin",
      "classid" : "94c801cd-46bf-4b4d-834b-8f0a69bdff24",
      "html_id" : "VideoScavengerSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1e",
      "toolbandClassid" : "acf7da4c-eeb2-484a-a3a1-303d4054d50c",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000457_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-videoscavenger_1eplugin",
      "prog_id" : "VideoScavenger_1e.HTMLMenu",
      "activeX_object" : "VideoScavenger_1e.HTMLMenu",
      "classid" : "f53c4ffc-1a47-4eca-b372-014ec02f7301",
      "html_id" : "VideoScavengerHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000546_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000546,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000546_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-radiopi_4eplugin",
      "prog_id" : "RadioPI_4e.SettingsPlugin",
      "activeX_object" : "RadioPI_4e.SettingsPlugin",
      "classid" : "d16cb545-c8a6-4441-8936-bbe56c0c497a",
      "html_id" : "RadioPISettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4e",
      "toolbandClassid" : "92926b63-5116-4c6f-a33e-378767b8d15f",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000546_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-radiopi_4eplugin",
      "prog_id" : "RadioPI_4e.HTMLMenu",
      "activeX_object" : "RadioPI_4e.HTMLMenu",
      "classid" : "1c42ebd4-5b08-4481-b789-dde76af8c266",
      "html_id" : "RadioPIHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "206720000_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 206720000,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "206720000_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mywebface_5aplugin",
      "prog_id" : "MyWebFace_5a.SettingsPlugin",
      "activeX_object" : "MyWebFace_5a.SettingsPlugin",
      "classid" : "c522512a-9c2c-4de5-9f63-976b560fef14",
      "html_id" : "MyWebFaceSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "5a",
      "toolbandClassid" : "af94b35c-3ac5-4030-9f9c-15fb4e3dc339",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "206720000_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mywebface_5aplugin",
      "prog_id" : "MyWebFace_5a.HTMLMenu",
      "activeX_object" : "MyWebFace_5a.HTMLMenu",
      "classid" : "41b7c739-4708-42a5-85ca-eede4c816578",
      "html_id" : "MyWebFaceHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "203040006_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 203040006,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "203040006_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-chimpoo_3aplugin",
      "prog_id" : "Chimpoo_3a.SettingsPlugin",
      "activeX_object" : "Chimpoo_3a.SettingsPlugin",
      "classid" : "c59074a9-b755-4abc-b0c5-dd96f18aea97",
      "html_id" : "ChimpooSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3a",
      "toolbandClassid" : "5b010b98-98f5-4faf-bdc5-f24746d465ce",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "203040006_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-chimpoo_3aplugin",
      "prog_id" : "Chimpoo_3a.HTMLMenu",
      "activeX_object" : "Chimpoo_3a.HTMLMenu",
      "classid" : "6e229f6a-b2b1-49de-b8ce-0d120e40f198",
      "html_id" : "ChimpooHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "200401157_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 200401157,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "200401157_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-maps4pcie_0dplugin",
      "prog_id" : "Maps4PCIE_0d.SettingsPlugin",
      "activeX_object" : "Maps4PCIE_0d.SettingsPlugin",
      "classid" : "1e60ed87-ad0c-4177-beeb-8a630308f7ee",
      "html_id" : "Maps4PCSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "0d",
      "toolbandClassid" : "2e7a28a3-53ed-491c-a453-e5ea092ef095",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "200401157_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-maps4pcie_0dplugin",
      "prog_id" : "Maps4PCIE_0d.HTMLMenu",
      "activeX_object" : "Maps4PCIE_0d.HTMLMenu",
      "classid" : "e2489b5e-f26f-4a85-9617-c492a06dfbc2",
      "html_id" : "Maps4PCHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000547_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000547,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000547_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-conservativetalknow_4nplugin",
      "prog_id" : "ConservativeTalkNow_4n.SettingsPlugin",
      "activeX_object" : "ConservativeTalkNow_4n.SettingsPlugin",
      "classid" : "e5280609-bf3f-4b1c-aa62-d3f6e69d00b3",
      "html_id" : "ConservativeTalkNowSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4n",
      "toolbandClassid" : "533329c9-ca91-42a2-8792-7f91c7b4172a",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000547_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-conservativetalknow_4nplugin",
      "prog_id" : "ConservativeTalkNow_4n.HTMLMenu",
      "activeX_object" : "ConservativeTalkNow_4n.HTMLMenu",
      "classid" : "f24ce9b7-7f63-4ba7-b81f-2bcccd881403",
      "html_id" : "ConservativeTalkNowHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000425_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000425,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000425_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-1z-gamingwonderlandieplugin",
      "prog_id" : "GamingWonderlandIE.SettingsPlugin",
      "activeX_object" : "GamingWonderlandIE.SettingsPlugin",
      "classid" : "8964a731-e2f9-4b55-b652-553de4ca0a4f",
      "html_id" : "GamingWonderlandSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1z",
      "toolbandClassid" : "aeab7aec-d98c-4a17-b837-47be1ce0c9ab",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000425_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-1z-gamingwonderlandieplugin",
      "prog_id" : "GamingWonderlandIE.HTMLMenu",
      "activeX_object" : "GamingWonderlandIE.HTMLMenu",
      "classid" : "6eb4b285-1b8f-4467-8cdc-9b205a45deb1",
      "html_id" : "GamingWonderlandHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000524_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000524,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000524_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-crazyforcricketie_3lplugin",
      "prog_id" : "CrazyForCricketIE_3l.SettingsPlugin",
      "activeX_object" : "CrazyForCricketIE_3l.SettingsPlugin",
      "classid" : "65456324-85f0-4a22-aaec-506044ae65da",
      "html_id" : "CrazyForCricketSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3l",
      "toolbandClassid" : "f01062f8-e01f-4c83-9b5e-e798d5db8398",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000524_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-crazyforcricketie_3lplugin",
      "prog_id" : "CrazyForCricketIE_3l.HTMLMenu",
      "activeX_object" : "CrazyForCricketIE_3l.HTMLMenu",
      "classid" : "8f0309bc-431c-4cfc-9b33-87b3b4f87159",
      "html_id" : "CrazyForCricketHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000420_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000420,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000420_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-9u-iwongplugin",
      "prog_id" : "IWONG.SettingsPlugin",
      "activeX_object" : "IWONG.SettingsPlugin",
      "classid" : "bf2f395d-8edb-4a01-9b04-cbaae0a0f69e",
      "html_id" : "IWONGlobalFacebookSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "9u",
      "toolbandClassid" : "97facf40-32b1-4e02-bd2d-073dac256e8b",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000420_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-9u-iwongplugin",
      "prog_id" : "IWONG.HTMLMenu",
      "activeX_object" : "IWONG.HTMLMenu",
      "classid" : "13a5e233-f88a-40f3-ac78-972b14f74e7e",
      "html_id" : "IWONGlobalFacebookHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000415_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000415,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000415_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-64-televisionfanaticplugin",
      "prog_id" : "TelevisionFanatic.SettingsPlugin",
      "activeX_object" : "TelevisionFanatic.SettingsPlugin",
      "classid" : "04d2b915-19ff-41e9-994d-95dc898bea43",
      "html_id" : "TelevisionFanaticSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "64",
      "toolbandClassid" : "c98d5b61-b0ea-4d48-9839-1079d352d880",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000415_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-64-televisionfanaticplugin",
      "prog_id" : "TelevisionFanatic.HTMLMenu",
      "activeX_object" : "TelevisionFanatic.HTMLMenu",
      "classid" : "1d7e63af-274b-426b-b51d-adf161df7f24",
      "html_id" : "TelevisionFanaticHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "201420000_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 201420000,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "201420000_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-yourlocallotto1_20plugin",
      "prog_id" : "yourlocallotto1_20.SettingsPlugin",
      "activeX_object" : "yourlocallotto1_20.SettingsPlugin",
      "classid" : "af3e93e3-6e1c-4dcb-bc1f-68f038c2bc17",
      "html_id" : "YourLocalLottoSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "20",
      "toolbandClassid" : "e2993f50-db88-405c-baec-91a1805c3517",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "201420000_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-yourlocallotto1_20plugin",
      "prog_id" : "yourlocallotto1_20.HTMLMenu",
      "activeX_object" : "yourlocallotto1_20.HTMLMenu",
      "classid" : "92891aac-af09-4f18-9410-31944e3384c0",
      "html_id" : "YourLocalLottoHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "201221175_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 201221175,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "201221175_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-uplayer_1oplugin",
      "prog_id" : "uPlayer_1o.SettingsPlugin",
      "activeX_object" : "uPlayer_1o.SettingsPlugin",
      "classid" : "a55d5cee-a73d-4af4-9f42-db885f7b85c3",
      "html_id" : "uPlayerSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1o",
      "toolbandClassid" : "b7cfe315-e504-4acf-81a4-ad18f1a57404",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "201221175_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-uplayer_1oplugin",
      "prog_id" : "uPlayer_1o.HTMLMenu",
      "activeX_object" : "uPlayer_1o.HTMLMenu",
      "classid" : "f365e999-d8c4-4423-b10e-1c77c8c79785",
      "html_id" : "uPlayerHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "201140006_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 201140006,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "201140006_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-smileycentral_34plugin",
      "prog_id" : "SmileyCentral_34.SettingsPlugin",
      "activeX_object" : "SmileyCentral_34.SettingsPlugin",
      "classid" : "102c151a-e6c5-487e-a347-3b5ad5b1ccc9",
      "html_id" : "SmileyCentralSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "34",
      "toolbandClassid" : "4babac09-4562-413f-a07b-a4c25b037882",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "201140006_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-smileycentral_34plugin",
      "prog_id" : "SmileyCentral_34.HTMLMenu",
      "activeX_object" : "SmileyCentral_34.HTMLMenu",
      "classid" : "821ebeb6-ee47-4736-824b-8551e50e75d3",
      "html_id" : "SmileyCentralHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "207040002_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 207040002,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "207040002_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-petsharmony_5bplugin",
      "prog_id" : "PetsHarmony_5b.SettingsPlugin",
      "activeX_object" : "PetsHarmony_5b.SettingsPlugin",
      "classid" : "743f7e3d-fa49-49c1-91b9-f76b2fbceb31",
      "html_id" : "PetsHarmonySettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "5b",
      "toolbandClassid" : "dc257d0d-f11b-4312-bb34-ee22ea4ba68a",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "207040002_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-petsharmony_5bplugin",
      "prog_id" : "PetsHarmony_5b.HTMLMenu",
      "activeX_object" : "PetsHarmony_5b.HTMLMenu",
      "classid" : "923f3e68-b6bc-4070-b276-8e8c70141e58",
      "html_id" : "PetsHarmonyHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000489_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000489,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000489_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-64-televisionfanaticplugin",
      "prog_id" : "TelevisionFanatic.SettingsPlugin",
      "activeX_object" : "TelevisionFanatic.SettingsPlugin",
      "classid" : "04d2b915-19ff-41e9-994d-95dc898bea43",
      "html_id" : "TelevisionFanaticSafariSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "64",
      "toolbandClassid" : "c98d5b61-b0ea-4d48-9839-1079d352d880",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000489_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-64-televisionfanaticplugin",
      "prog_id" : "TelevisionFanatic.HTMLMenu",
      "activeX_object" : "TelevisionFanatic.HTMLMenu",
      "classid" : "1d7e63af-274b-426b-b51d-adf161df7f24",
      "html_id" : "TelevisionFanaticSafariHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "206620473_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 206620473,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "206620473_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-electiontracker_59plugin",
      "prog_id" : "ElectionTracker_59.SettingsPlugin",
      "activeX_object" : "ElectionTracker_59.SettingsPlugin",
      "classid" : "de9f2bde-6dc4-43f9-a438-9a6e537d4c80",
      "html_id" : "ElectionTrackerSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "59",
      "toolbandClassid" : "de1540e3-8f32-491f-9868-e0b9c191cdd7",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "206620473_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-electiontracker_59plugin",
      "prog_id" : "ElectionTracker_59.HTMLMenu",
      "activeX_object" : "ElectionTracker_59.HTMLMenu",
      "classid" : "37b3c8be-ccc2-4035-a4de-d31050863fc3",
      "html_id" : "ElectionTrackerHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000511_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000511,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000511_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-myfuncards_3vplugin",
      "prog_id" : "MyFunCards_3v.SettingsPlugin",
      "activeX_object" : "MyFunCards_3v.SettingsPlugin",
      "classid" : "c0e76156-53c4-4a53-960e-4c01a2eb51c5",
      "html_id" : "MyFunCardsSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3v",
      "toolbandClassid" : "775fb81e-c515-4bcc-8842-d241fd015aaa",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000511_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-myfuncards_3vplugin",
      "prog_id" : "MyFunCards_3v.HTMLMenu",
      "activeX_object" : "MyFunCards_3v.HTMLMenu",
      "classid" : "74aee6d9-ec2b-4738-a587-e54f5878a432",
      "html_id" : "MyFunCardsHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "202540009_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 202540009,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "202540009_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bringmesportstennis_2tplugin",
      "prog_id" : "bringmesportstennis_2t.SettingsPlugin",
      "activeX_object" : "bringmesportstennis_2t.SettingsPlugin",
      "classid" : "f4025e25-12ba-486d-9b23-dda386fb0065",
      "html_id" : "BringMeSportsTennisSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2t",
      "toolbandClassid" : "3e4bc2c4-d202-4bcb-a326-9efd5160ef9b",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "202540009_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bringmesportstennis_2tplugin",
      "prog_id" : "bringmesportstennis_2t.HTMLMenu",
      "activeX_object" : "bringmesportstennis_2t.HTMLMenu",
      "classid" : "ed6f251d-9569-4300-88d5-23a3ab1e0ae5",
      "html_id" : "BringMeSportsTennisHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000393_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000393,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000393_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-jf-iwonplugin",
      "prog_id" : "iWon.SettingsPlugin",
      "activeX_object" : "iWon.SettingsPlugin",
      "classid" : "c94072e9-9edf-423f-b8ca-a4c95bbd15d7",
      "html_id" : "IWONFacebookSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "jf",
      "toolbandClassid" : "8ff0d967-9ff2-47ae-9794-a22fcae4f485",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000393_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-jf-iwonplugin",
      "prog_id" : "iWon.HTMLMenu",
      "activeX_object" : "iWon.HTMLMenu",
      "classid" : "c70efa5e-5f49-4c4f-8459-d15f47d4802e",
      "html_id" : "IWONFacebookHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "201220870_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 201220870,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "201220870_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-playfin_1tplugin",
      "prog_id" : "Playfin_1t.SettingsPlugin",
      "activeX_object" : "Playfin_1t.SettingsPlugin",
      "classid" : "f01f30f1-81a3-4417-8858-72964bae2919",
      "html_id" : "PlayfinSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1t",
      "toolbandClassid" : "d30bc29f-19f6-40b3-a91f-d4707048ade6",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "201220870_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-playfin_1tplugin",
      "prog_id" : "Playfin_1t.HTMLMenu",
      "activeX_object" : "Playfin_1t.HTMLMenu",
      "classid" : "b5b8d7f5-e93e-4510-b260-e1da10c09b12",
      "html_id" : "PlayfinHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000471_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000471,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000471_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-ourbabymakerie_28plugin",
      "prog_id" : "OurBabyMakerIE_28.SettingsPlugin",
      "activeX_object" : "OurBabyMakerIE_28.SettingsPlugin",
      "classid" : "f6cd95d4-943b-42a2-b45e-83d78b6bcf67",
      "html_id" : "OurBabyMakerSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "28",
      "toolbandClassid" : "00f8409c-be53-4b12-9e21-ef2d6ff051b4",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000471_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-ourbabymakerie_28plugin",
      "prog_id" : "OurBabyMakerIE_28.HTMLMenu",
      "activeX_object" : "OurBabyMakerIE_28.HTMLMenu",
      "classid" : "a667c60f-e58f-48b1-8c79-14f3e8cf1ba9",
      "html_id" : "OurBabyMakerHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000417_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000417,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000417_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-j2-soccerinfernoplugin",
      "prog_id" : "SoccerInferno.SettingsPlugin",
      "activeX_object" : "SoccerInferno.SettingsPlugin",
      "classid" : "8bb0336e-419b-4059-9647-db7d98088895",
      "html_id" : "SoccerInfernoSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "j2",
      "toolbandClassid" : "c5a318c1-d1d9-41f0-85fe-41cc9fb25e75",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000417_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-j2-soccerinfernoplugin",
      "prog_id" : "SoccerInferno.HTMLMenu",
      "activeX_object" : "SoccerInferno.HTMLMenu",
      "classid" : "d75cf7ce-914d-4254-b71d-b002493eff5d",
      "html_id" : "SoccerInfernoHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000458_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000458,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000458_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-samplesaledashie_1bplugin",
      "prog_id" : "SampleSaleDashIE_1b.SettingsPlugin",
      "activeX_object" : "SampleSaleDashIE_1b.SettingsPlugin",
      "classid" : "186be97e-5d77-4204-8d76-501bef92fddc",
      "html_id" : "SampleSaleDashSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1b",
      "toolbandClassid" : "4f868571-4ea6-4fb8-b55b-052962830544",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000458_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-samplesaledashie_1bplugin",
      "prog_id" : "SampleSaleDashIE_1b.HTMLMenu",
      "activeX_object" : "SampleSaleDashIE_1b.HTMLMenu",
      "classid" : "61e6729d-8000-4d2c-9d11-0cc0f975871c",
      "html_id" : "SampleSaleDashHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000451_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000451,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000451_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bringmesports_1cplugin",
      "prog_id" : "BringMeSports_1c.SettingsPlugin",
      "activeX_object" : "BringMeSports_1c.SettingsPlugin",
      "classid" : "82c7004a-078e-468c-9c0f-2243618ff7cb",
      "html_id" : "BringMeSportsSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1c",
      "toolbandClassid" : "cc53bd19-7b23-43b0-ab7c-0e06c708cced",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000451_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bringmesports_1cplugin",
      "prog_id" : "BringMeSports_1c.HTMLMenu",
      "activeX_object" : "BringMeSports_1c.HTMLMenu",
      "classid" : "0a8cc25d-66ff-41df-b3b4-416079ef8f87",
      "html_id" : "BringMeSportsHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000471_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000471,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000471_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-ourbabymaker_27plugin",
      "prog_id" : "OurBabyMaker_27.SettingsPlugin",
      "activeX_object" : "OurBabyMaker_27.SettingsPlugin",
      "classid" : "6fb2c9e3-a8cd-42f3-a80d-7fe582164231",
      "html_id" : "OurBabyMakerSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "27",
      "toolbandClassid" : "e0b0df9f-34a3-4db1-becc-621697348607",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000471_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-ourbabymaker_27plugin",
      "prog_id" : "OurBabyMaker_27.HTMLMenu",
      "activeX_object" : "OurBabyMaker_27.HTMLMenu",
      "classid" : "03a6cf83-55b3-4c34-a29f-8747cdbfe61c",
      "html_id" : "OurBabyMakerHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000450_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000450,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000450_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mortgagehawk_1lplugin",
      "prog_id" : "MortgageHawk_1l.SettingsPlugin",
      "activeX_object" : "MortgageHawk_1l.SettingsPlugin",
      "classid" : "da50d915-d0fe-42eb-b661-bc7877dbef4e",
      "html_id" : "MortgageHawkSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1l",
      "toolbandClassid" : "2f44dfe6-379a-4bc5-b5f4-fed46ab249a1",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000450_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mortgagehawk_1lplugin",
      "prog_id" : "MortgageHawk_1l.HTMLMenu",
      "activeX_object" : "MortgageHawk_1l.HTMLMenu",
      "classid" : "145360af-c1df-4f79-8242-9185eba03972",
      "html_id" : "MortgageHawkHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "204800921_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 204800921,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "204800921_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-quotationcafe_45plugin",
      "prog_id" : "QuotationCafe_45.SettingsPlugin",
      "activeX_object" : "QuotationCafe_45.SettingsPlugin",
      "classid" : "3b069953-cf59-4926-9d28-a4589c462859",
      "html_id" : "QuotationCafeSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "45",
      "toolbandClassid" : "99bced2f-1db3-4ecd-8e35-8906428a6cfe",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "204800921_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-quotationcafe_45plugin",
      "prog_id" : "QuotationCafe_45.HTMLMenu",
      "activeX_object" : "QuotationCafe_45.HTMLMenu",
      "classid" : "ca98876e-bbeb-41bb-ad8a-972f1c7b4706",
      "html_id" : "QuotationCafeHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000466_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000466,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000466_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-dailydollarguide_1rplugin",
      "prog_id" : "DailyDollarGuide_1r.SettingsPlugin",
      "activeX_object" : "DailyDollarGuide_1r.SettingsPlugin",
      "classid" : "5b219bd4-56c3-4c02-ba47-ba52c42007b1",
      "html_id" : "DailyDollarGuideSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1r",
      "toolbandClassid" : "0fa062e5-899c-4f51-a364-3fabbb73f0be",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000466_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-dailydollarguide_1rplugin",
      "prog_id" : "DailyDollarGuide_1r.HTMLMenu",
      "activeX_object" : "DailyDollarGuide_1r.HTMLMenu",
      "classid" : "2f27214f-df0c-44e8-845f-0247a029de09",
      "html_id" : "DailyDollarGuideHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000486_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000486,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000486_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-radiorage_4jplugin",
      "prog_id" : "RadioRage_4j.SettingsPlugin",
      "activeX_object" : "RadioRage_4j.SettingsPlugin",
      "classid" : "9638b7d6-11f5-4406-b387-327642a11ffb",
      "html_id" : "RadioRageSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4j",
      "toolbandClassid" : "78ba36c9-6036-482b-b48d-ecca6f964b84",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000486_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-radiorage_4jplugin",
      "prog_id" : "RadioRage_4j.HTMLMenu",
      "activeX_object" : "RadioRage_4j.HTMLMenu",
      "classid" : "581c7d7d-f809-4e03-a631-74c069d5f04a",
      "html_id" : "RadioRageHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000526_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000526,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000526_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mmainmotion_3mplugin",
      "prog_id" : "MMAinMotion_3m.SettingsPlugin",
      "activeX_object" : "MMAinMotion_3m.SettingsPlugin",
      "classid" : "de20d4f4-04a7-42fc-84f7-c8bc9ebd170d",
      "html_id" : "MMAinMotionSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3m",
      "toolbandClassid" : "2276b36b-5661-4a30-9057-6dcaf592d05e",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000526_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mmainmotion_3mplugin",
      "prog_id" : "MMAinMotion_3m.HTMLMenu",
      "activeX_object" : "MMAinMotion_3m.HTMLMenu",
      "classid" : "79df866f-526b-4f1a-8f17-53a16317b524",
      "html_id" : "MMAinMotionHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "200820000_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 200820000,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "200820000_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-dailyjewishguideie_19plugin",
      "prog_id" : "DailyJewishGuideIE_19.SettingsPlugin",
      "activeX_object" : "DailyJewishGuideIE_19.SettingsPlugin",
      "classid" : "01021cb9-7c27-4f6f-ad10-37ef86eaea81",
      "html_id" : "DailyJewishGuideSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "19",
      "toolbandClassid" : "bfb58dad-52da-4b42-ab3d-b2a50db57a02",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "200820000_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-dailyjewishguideie_19plugin",
      "prog_id" : "DailyJewishGuideIE_19.HTMLMenu",
      "activeX_object" : "DailyJewishGuideIE_19.HTMLMenu",
      "classid" : "7f9d17d3-5368-4a42-954a-5b55e5604723",
      "html_id" : "DailyJewishGuideHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000562_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000562,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000562_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-minddabble_4pplugin",
      "prog_id" : "MindDabble_4p.SettingsPlugin",
      "activeX_object" : "MindDabble_4p.SettingsPlugin",
      "classid" : "e61f988f-451f-432f-8e85-e3f716c33302",
      "html_id" : "MindDabbleSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4p",
      "toolbandClassid" : "30ea28da-b2b8-4555-a80e-310d546d5f3d",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000562_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-minddabble_4pplugin",
      "prog_id" : "MindDabble_4p.HTMLMenu",
      "activeX_object" : "MindDabble_4p.HTMLMenu",
      "classid" : "94cd37d0-d27e-4873-8227-53525406d7bb",
      "html_id" : "MindDabbleHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000562_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000562,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000562_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-minddabbleie_4rplugin",
      "prog_id" : "MindDabbleIE_4r.SettingsPlugin",
      "activeX_object" : "MindDabbleIE_4r.SettingsPlugin",
      "classid" : "d9eb124c-c67e-47a7-b15f-bc7678a7b0f1",
      "html_id" : "MindDabbleSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4r",
      "toolbandClassid" : "fd72504a-9955-438e-bd16-17b4bd23844f",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000562_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-minddabbleie_4rplugin",
      "prog_id" : "MindDabbleIE_4r.HTMLMenu",
      "activeX_object" : "MindDabbleIE_4r.HTMLMenu",
      "classid" : "8be8cadb-8aec-4f20-9872-494f8f857f51",
      "html_id" : "MindDabbleHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "202040436_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 202040436,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "202040436_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-sounddabble_2lplugin",
      "prog_id" : "SoundDabble_2l.SettingsPlugin",
      "activeX_object" : "SoundDabble_2l.SettingsPlugin",
      "classid" : "a2445a6a-f630-4114-9baa-7182cfda41c7",
      "html_id" : "SoundDabbleSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2l",
      "toolbandClassid" : "7748e11f-41eb-4ebd-9ae8-3f7dc602da73",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "202040436_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-sounddabble_2lplugin",
      "prog_id" : "SoundDabble_2l.HTMLMenu",
      "activeX_object" : "SoundDabble_2l.HTMLMenu",
      "classid" : "c173da6e-e22c-42aa-91ee-b0422ebcb3c5",
      "html_id" : "SoundDabbleHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000451_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000451,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000451_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bringmesports_1cplugin",
      "prog_id" : "BringMeSports_1c.SettingsPlugin",
      "activeX_object" : "BringMeSports_1c.SettingsPlugin",
      "classid" : "82c7004a-078e-468c-9c0f-2243618ff7cb",
      "html_id" : "BringMeSportsSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1c",
      "toolbandClassid" : "cc53bd19-7b23-43b0-ab7c-0e06c708cced",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000451_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bringmesports_1cplugin",
      "prog_id" : "BringMeSports_1c.HTMLMenu",
      "activeX_object" : "BringMeSports_1c.HTMLMenu",
      "classid" : "0a8cc25d-66ff-41df-b3b4-416079ef8f87",
      "html_id" : "BringMeSportsHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "202540009_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 202540009,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "202540009_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bringmesportstennis_2tplugin",
      "prog_id" : "bringmesportstennis_2t.SettingsPlugin",
      "activeX_object" : "bringmesportstennis_2t.SettingsPlugin",
      "classid" : "f4025e25-12ba-486d-9b23-dda386fb0065",
      "html_id" : "BringMeSportsTennisSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2t",
      "toolbandClassid" : "3e4bc2c4-d202-4bcb-a326-9efd5160ef9b",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "202540009_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bringmesportstennis_2tplugin",
      "prog_id" : "bringmesportstennis_2t.HTMLMenu",
      "activeX_object" : "bringmesportstennis_2t.HTMLMenu",
      "classid" : "ed6f251d-9569-4300-88d5-23a3ab1e0ae5",
      "html_id" : "BringMeSportsTennisHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000507_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000507,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000507_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-iwonie_3qplugin",
      "prog_id" : "iWonIE_3q.SettingsPlugin",
      "activeX_object" : "iWonIE_3q.SettingsPlugin",
      "classid" : "e869c769-0611-4be5-ba23-1a23915e138e",
      "html_id" : "IWONSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3q",
      "toolbandClassid" : "ec10cb1c-b9f6-460c-ae70-943eed99b5d0",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000507_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-iwonie_3qplugin",
      "prog_id" : "iWonIE_3q.HTMLMenu",
      "activeX_object" : "iWonIE_3q.HTMLMenu",
      "classid" : "e38b85d6-51e3-4b60-acce-ccbbf23fdf5c",
      "html_id" : "IWONHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000487_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000487,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000487_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-couponalert_2pplugin",
      "prog_id" : "CouponAlert_2p.SettingsPlugin",
      "activeX_object" : "CouponAlert_2p.SettingsPlugin",
      "classid" : "23b38049-323f-443d-9732-f454e5b15b72",
      "html_id" : "CouponAlertSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2p",
      "toolbandClassid" : "3462c343-be19-4143-af70-cefb56f46fc6",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000487_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-couponalert_2pplugin",
      "prog_id" : "CouponAlert_2p.HTMLMenu",
      "activeX_object" : "CouponAlert_2p.HTMLMenu",
      "classid" : "95b3f577-d54a-4831-b2b4-8aaceeda85cf",
      "html_id" : "CouponAlertHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "206720000_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 206720000,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "206720000_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mywebface_5aplugin",
      "prog_id" : "MyWebFace_5a.SettingsPlugin",
      "activeX_object" : "MyWebFace_5a.SettingsPlugin",
      "classid" : "c522512a-9c2c-4de5-9f63-976b560fef14",
      "html_id" : "MyWebFaceSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "5a",
      "toolbandClassid" : "af94b35c-3ac5-4030-9f9c-15fb4e3dc339",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "206720000_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mywebface_5aplugin",
      "prog_id" : "MyWebFace_5a.HTMLMenu",
      "activeX_object" : "MyWebFace_5a.HTMLMenu",
      "classid" : "41b7c739-4708-42a5-85ca-eede4c816578",
      "html_id" : "MyWebFaceHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000562_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000562,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000562_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-minddabble_4pplugin",
      "prog_id" : "MindDabble_4p.SettingsPlugin",
      "activeX_object" : "MindDabble_4p.SettingsPlugin",
      "classid" : "e61f988f-451f-432f-8e85-e3f716c33302",
      "html_id" : "MindDabbleSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4p",
      "toolbandClassid" : "30ea28da-b2b8-4555-a80e-310d546d5f3d",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000562_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-minddabble_4pplugin",
      "prog_id" : "MindDabble_4p.HTMLMenu",
      "activeX_object" : "MindDabble_4p.HTMLMenu",
      "classid" : "94cd37d0-d27e-4873-8227-53525406d7bb",
      "html_id" : "MindDabbleHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "200781283_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 200781283,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "200781283_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-myscrapnook_12plugin",
      "prog_id" : "MyScrapNook_12.SettingsPlugin",
      "activeX_object" : "MyScrapNook_12.SettingsPlugin",
      "classid" : "0a4d512d-697e-4ad5-872d-5a9941af6ebb",
      "html_id" : "MyScrapNookSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "12",
      "toolbandClassid" : "fe6f06fb-0fc0-4499-828f-ee48088f504f",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "200781283_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-myscrapnook_12plugin",
      "prog_id" : "MyScrapNook_12.HTMLMenu",
      "activeX_object" : "MyScrapNook_12.HTMLMenu",
      "classid" : "5db6f0a5-c6e8-41c6-b88a-94551911a53f",
      "html_id" : "MyScrapNookHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000420_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000420,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000420_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-vr-iwongieplugin",
      "prog_id" : "IWONGIE.SettingsPlugin",
      "activeX_object" : "IWONGIE.SettingsPlugin",
      "classid" : "92b978e8-af43-4d1a-887f-233c034ed189",
      "html_id" : "IWONGlobalFacebookSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "vr",
      "toolbandClassid" : "43a3055a-6ff3-4aa5-90e6-18a10297cb53",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000420_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-vr-iwongieplugin",
      "prog_id" : "IWONGIE.HTMLMenu",
      "activeX_object" : "IWONGIE.HTMLMenu",
      "classid" : "8879c48b-facd-4909-83e2-f19a74aa04e1",
      "html_id" : "IWONGlobalFacebookHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000430_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000430,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000430_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-ka-celebsauceplugin",
      "prog_id" : "CelebSauce.SettingsPlugin",
      "activeX_object" : "CelebSauce.SettingsPlugin",
      "classid" : "eb358b58-deb0-4dfa-b31a-98e73e0a973b",
      "html_id" : "CelebSauceSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "ka",
      "toolbandClassid" : "1558273e-0e2b-49c8-b7bd-24b26e5e4262",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000430_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-ka-celebsauceplugin",
      "prog_id" : "CelebSauce.HTMLMenu",
      "activeX_object" : "CelebSauce.HTMLMenu",
      "classid" : "4a595cd9-95f3-4f86-8f47-52d6b4074aaa",
      "html_id" : "CelebSauceHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000545_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000545,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000545_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-tvvie_4gplugin",
      "prog_id" : "TVvie_4g.SettingsPlugin",
      "activeX_object" : "TVvie_4g.SettingsPlugin",
      "classid" : "37c95f22-a8ef-4c20-ab72-a0aa9ae46dbc",
      "html_id" : "TVvieSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4g",
      "toolbandClassid" : "5fc8ff1f-c136-4abb-9a78-9c7cd19d21e2",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000545_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-tvvie_4gplugin",
      "prog_id" : "TVvie_4g.HTMLMenu",
      "activeX_object" : "TVvie_4g.HTMLMenu",
      "classid" : "ffe46f9d-8808-4db4-8740-c4950f7b32e1",
      "html_id" : "TVvieHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "202360838_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 202360838,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "202360838_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-gamenutt_2splugin",
      "prog_id" : "GameNutt_2s.SettingsPlugin",
      "activeX_object" : "GameNutt_2s.SettingsPlugin",
      "classid" : "42253fd3-214d-40a3-a27e-ccdc0bc388cf",
      "html_id" : "UltimateGamesBarSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2s",
      "toolbandClassid" : "15c23c48-f231-4557-8eee-da3152e2e7dd",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "202360838_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-gamenutt_2splugin",
      "prog_id" : "GameNutt_2s.HTMLMenu",
      "activeX_object" : "GameNutt_2s.HTMLMenu",
      "classid" : "fc3d32f8-2b96-40b0-b34e-5bee62834a4a",
      "html_id" : "UltimateGamesBarHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000458_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000458,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000458_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-samplesaledash_1aplugin",
      "prog_id" : "SampleSaleDash_1a.SettingsPlugin",
      "activeX_object" : "SampleSaleDash_1a.SettingsPlugin",
      "classid" : "4aff26fc-ae69-405b-9a33-50480291de3b",
      "html_id" : "SampleSaleDashSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1a",
      "toolbandClassid" : "14e93681-160d-4290-a717-bf9f0e3c6ed5",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000458_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-samplesaledash_1aplugin",
      "prog_id" : "SampleSaleDash_1a.HTMLMenu",
      "activeX_object" : "SampleSaleDash_1a.HTMLMenu",
      "classid" : "7714fe88-9991-4b97-a5a5-26ded48e280d",
      "html_id" : "SampleSaleDashHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000494_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000494,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000494_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-retrogamerie_30plugin",
      "prog_id" : "RetrogamerIE_30.SettingsPlugin",
      "activeX_object" : "RetrogamerIE_30.SettingsPlugin",
      "classid" : "c28a86d2-c24b-4478-9e20-9efe02535738",
      "html_id" : "RetrogamerSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "30",
      "toolbandClassid" : "67c6b665-3add-4b60-8486-03335d231372",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000494_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-retrogamerie_30plugin",
      "prog_id" : "RetrogamerIE_30.HTMLMenu",
      "activeX_object" : "RetrogamerIE_30.HTMLMenu",
      "classid" : "118782e4-8041-448d-9d00-7349c8b06df5",
      "html_id" : "RetrogamerHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000475_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000475,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000475_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mywebface_2uplugin",
      "prog_id" : "myWebFace_2u.SettingsPlugin",
      "activeX_object" : "myWebFace_2u.SettingsPlugin",
      "classid" : "83cb59f3-5afc-4ee8-895c-0d78c395d66d",
      "html_id" : "MyWebFaceFacebookSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2u",
      "toolbandClassid" : "c618bed0-c03c-4113-a6dd-d73a1d495ad7",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000475_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mywebface_2uplugin",
      "prog_id" : "myWebFace_2u.HTMLMenu",
      "activeX_object" : "myWebFace_2u.HTMLMenu",
      "classid" : "c1ee4f30-d6ba-489d-ae9e-aca469e911c2",
      "html_id" : "MyWebFaceFacebookHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000531_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000531,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000531_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-zwinky_42plugin",
      "prog_id" : "Zwinky_42.SettingsPlugin",
      "activeX_object" : "Zwinky_42.SettingsPlugin",
      "classid" : "151885bd-6ddd-47df-9266-da3f86e1f5fe",
      "html_id" : "ZwinkyFBSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "42",
      "toolbandClassid" : "1df01b27-e0d6-40d5-a8ce-0d926d6f39f3",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000531_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-zwinky_42plugin",
      "prog_id" : "Zwinky_42.HTMLMenu",
      "activeX_object" : "Zwinky_42.HTMLMenu",
      "classid" : "5f65a73d-9fdf-44c9-9f25-4cc36213c7bf",
      "html_id" : "ZwinkyFBHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000469_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000469,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000469_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-smileycentral_1vplugin",
      "prog_id" : "SmileyCentral_1v.SettingsPlugin",
      "activeX_object" : "SmileyCentral_1v.SettingsPlugin",
      "classid" : "6a2c7b59-76ca-415b-83fb-8d89932a6b37",
      "html_id" : "SmileyFacebookSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1v",
      "toolbandClassid" : "32014f65-8c22-49ad-899b-475549e3e596",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000469_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-smileycentral_1vplugin",
      "prog_id" : "SmileyCentral_1v.HTMLMenu",
      "activeX_object" : "SmileyCentral_1v.HTMLMenu",
      "classid" : "62db1239-0df3-4ad7-9313-317682b4ac78",
      "html_id" : "SmileyFacebookHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000459_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000459,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000459_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-totalrecipesearchie_15plugin",
      "prog_id" : "TotalRecipeSearchIE_15.SettingsPlugin",
      "activeX_object" : "TotalRecipeSearchIE_15.SettingsPlugin",
      "classid" : "3cc5c71a-784f-4c45-8f72-a19964c6cb8b",
      "html_id" : "TotalRecipeSearchSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "15",
      "toolbandClassid" : "73ee9aa5-eb45-420a-9838-506ee872c833",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000459_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-totalrecipesearchie_15plugin",
      "prog_id" : "TotalRecipeSearchIE_15.HTMLMenu",
      "activeX_object" : "TotalRecipeSearchIE_15.HTMLMenu",
      "classid" : "11eb9942-206b-4f06-926f-2c18eb40b3e4",
      "html_id" : "TotalRecipeSearchHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "204800921_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 204800921,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "204800921_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-quotationcafe_45plugin",
      "prog_id" : "QuotationCafe_45.SettingsPlugin",
      "activeX_object" : "QuotationCafe_45.SettingsPlugin",
      "classid" : "3b069953-cf59-4926-9d28-a4589c462859",
      "html_id" : "QuotationCafeSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "45",
      "toolbandClassid" : "99bced2f-1db3-4ecd-8e35-8906428a6cfe",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "204800921_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-quotationcafe_45plugin",
      "prog_id" : "QuotationCafe_45.HTMLMenu",
      "activeX_object" : "QuotationCafe_45.HTMLMenu",
      "classid" : "ca98876e-bbeb-41bb-ad8a-972f1c7b4706",
      "html_id" : "QuotationCafeHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "205560572_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 205560572,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "205560572_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-gamingassassin_4splugin",
      "prog_id" : "GamingAssassin_4s.SettingsPlugin",
      "activeX_object" : "GamingAssassin_4s.SettingsPlugin",
      "classid" : "0259fb21-c6e2-466b-a625-040f78458ca6",
      "html_id" : "GamingAssassinSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4s",
      "toolbandClassid" : "92a33663-79aa-4df4-b801-43e1e6d3ed3b",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "205560572_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-gamingassassin_4splugin",
      "prog_id" : "GamingAssassin_4s.HTMLMenu",
      "activeX_object" : "GamingAssassin_4s.HTMLMenu",
      "classid" : "cf10bf23-cf0f-4682-8cc2-e0af3799ca05",
      "html_id" : "GamingAssassinHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000455_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000455,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000455_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-pa-filmfanaticplugin",
      "prog_id" : "FilmFanatic.SettingsPlugin",
      "activeX_object" : "FilmFanatic.SettingsPlugin",
      "classid" : "4c2743f0-a2e2-41a0-9e65-798943109f42",
      "html_id" : "FilmFanaticFacebookSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "pa",
      "toolbandClassid" : "0b84b4b4-8af8-4f1f-91fe-074a666f6425",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000455_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-pa-filmfanaticplugin",
      "prog_id" : "FilmFanatic.HTMLMenu",
      "activeX_object" : "FilmFanatic.HTMLMenu",
      "classid" : "37a2255c-d173-4b54-a455-13de1dda9f44",
      "html_id" : "FilmFanaticFacebookHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "203320254_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 203320254,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "203320254_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bringmesportsrugby_3eplugin",
      "prog_id" : "BringMeSportsRugby_3e.SettingsPlugin",
      "activeX_object" : "BringMeSportsRugby_3e.SettingsPlugin",
      "classid" : "e8b2cb46-bcc1-4b9c-b1ba-033936ca16e2",
      "html_id" : "BringMeSportsRugbySettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3e",
      "toolbandClassid" : "93ba951f-1216-4cd5-be90-89123d18af4c",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "203320254_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bringmesportsrugby_3eplugin",
      "prog_id" : "BringMeSportsRugby_3e.HTMLMenu",
      "activeX_object" : "BringMeSportsRugby_3e.HTMLMenu",
      "classid" : "0a7bbe7b-7c30-4d88-8d7d-6a43fdc699c5",
      "html_id" : "BringMeSportsRugbyHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "206620473_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 206620473,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "206620473_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-electiontracker_59plugin",
      "prog_id" : "ElectionTracker_59.SettingsPlugin",
      "activeX_object" : "ElectionTracker_59.SettingsPlugin",
      "classid" : "de9f2bde-6dc4-43f9-a438-9a6e537d4c80",
      "html_id" : "ElectionTrackerSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "59",
      "toolbandClassid" : "de1540e3-8f32-491f-9868-e0b9c191cdd7",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "206620473_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-electiontracker_59plugin",
      "prog_id" : "ElectionTracker_59.HTMLMenu",
      "activeX_object" : "ElectionTracker_59.HTMLMenu",
      "classid" : "37b3c8be-ccc2-4035-a4de-d31050863fc3",
      "html_id" : "ElectionTrackerHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000430_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000430,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000430_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-v9-celebsauceieplugin",
      "prog_id" : "CelebSauceIE.SettingsPlugin",
      "activeX_object" : "CelebSauceIE.SettingsPlugin",
      "classid" : "d0e3a220-6ac8-448a-b17c-d98420afae3a",
      "html_id" : "CelebSauceSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "v9",
      "toolbandClassid" : "2399fc18-b779-419e-b120-02f20c9938be",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000430_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-v9-celebsauceieplugin",
      "prog_id" : "CelebSauceIE.HTMLMenu",
      "activeX_object" : "CelebSauceIE.HTMLMenu",
      "classid" : "bb494109-ed31-4b30-9e0a-ed11c815f9c2",
      "html_id" : "CelebSauceHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000413_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000413,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000413_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-gc-weatherblinkplugin",
      "prog_id" : "WeatherBlink.SettingsPlugin",
      "activeX_object" : "WeatherBlink.SettingsPlugin",
      "classid" : "d229a1e0-7b36-4912-a874-0f0a4e1c039d",
      "html_id" : "WeatherBlinkSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "gc",
      "toolbandClassid" : "f20de5e0-2a6e-4c54-985f-1cf59551ce39",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000413_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-gc-weatherblinkplugin",
      "prog_id" : "WeatherBlink.HTMLMenu",
      "activeX_object" : "WeatherBlink.HTMLMenu",
      "classid" : "1552fe9d-b6b5-49e8-9eff-e799d6b2285a",
      "html_id" : "WeatherBlinkHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "202360838_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 202360838,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "202360838_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-gamenutt_2splugin",
      "prog_id" : "GameNutt_2s.SettingsPlugin",
      "activeX_object" : "GameNutt_2s.SettingsPlugin",
      "classid" : "42253fd3-214d-40a3-a27e-ccdc0bc388cf",
      "html_id" : "UltimateGamesBarSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2s",
      "toolbandClassid" : "15c23c48-f231-4557-8eee-da3152e2e7dd",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "202360838_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-gamenutt_2splugin",
      "prog_id" : "GameNutt_2s.HTMLMenu",
      "activeX_object" : "GameNutt_2s.HTMLMenu",
      "classid" : "fc3d32f8-2b96-40b0-b34e-5bee62834a4a",
      "html_id" : "UltimateGamesBarHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000544_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000544,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000544_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-puredef_4cplugin",
      "prog_id" : "pureDEF_4c.SettingsPlugin",
      "activeX_object" : "pureDEF_4c.SettingsPlugin",
      "classid" : "E30A55BB-F1B7-43a4-B3F6-EC90CDC4FE60",
      "html_id" : "PureDefSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "p3",
      "toolbandClassid" : "E30A55B9-F1B7-43a4-B3F6-EC90CDC4FE60",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000544_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-puredef_4cplugin",
      "prog_id" : "pureDEF_4c.HTMLMenu",
      "activeX_object" : "pureDEF_4c.HTMLMenu",
      "classid" : "A3367709-554D-4687-AB44-81EBC42548E1",
      "html_id" : "PureDefHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000451_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000451,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000451_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bringmesportsie_1dplugin",
      "prog_id" : "BringMeSportsIE_1d.SettingsPlugin",
      "activeX_object" : "BringMeSportsIE_1d.SettingsPlugin",
      "classid" : "4c94146a-6504-42d1-be52-20a219a90681",
      "html_id" : "BringMeSportsSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1d",
      "toolbandClassid" : "1591f3a4-f8b1-4826-bc6b-181c95b493ef",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000451_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bringmesportsie_1dplugin",
      "prog_id" : "BringMeSportsIE_1d.HTMLMenu",
      "activeX_object" : "BringMeSportsIE_1d.HTMLMenu",
      "classid" : "c23b269e-f217-4020-84ca-c2745a866b4a",
      "html_id" : "BringMeSportsHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000449_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000449,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000449_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-referencebossie_1qplugin",
      "prog_id" : "ReferenceBossIE_1q.SettingsPlugin",
      "activeX_object" : "ReferenceBossIE_1q.SettingsPlugin",
      "classid" : "77fa6417-3755-4ee8-9c22-748684533eff",
      "html_id" : "ReferenceBossSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1q",
      "toolbandClassid" : "bb8626ac-a809-4b86-ac69-6632eba6c0a3",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000449_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-referencebossie_1qplugin",
      "prog_id" : "ReferenceBossIE_1q.HTMLMenu",
      "activeX_object" : "ReferenceBossIE_1q.HTMLMenu",
      "classid" : "df28a728-ebf8-4cf3-b7b6-e0e31be896a5",
      "html_id" : "ReferenceBossHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "202002465_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 202002465,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "202002465_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-dotspot_2kplugin",
      "prog_id" : "DotSpot_2k.SettingsPlugin",
      "activeX_object" : "DotSpot_2k.SettingsPlugin",
      "classid" : "a07bcb16-91ff-473a-8712-1876964c414e",
      "html_id" : "DotSpotSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2k",
      "toolbandClassid" : "17f24f6d-0284-4a62-a3b7-fca9f2084af4",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "202002465_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-dotspot_2kplugin",
      "prog_id" : "DotSpot_2k.HTMLMenu",
      "activeX_object" : "DotSpot_2k.HTMLMenu",
      "classid" : "0f3163ca-eb01-45c2-b55e-5fae826ca2e2",
      "html_id" : "DotSpotHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000449_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000449,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000449_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-referenceboss_1pplugin",
      "prog_id" : "ReferenceBoss_1p.SettingsPlugin",
      "activeX_object" : "ReferenceBoss_1p.SettingsPlugin",
      "classid" : "5bd302cd-e0c9-4cc7-b9b3-1ebfb69785fe",
      "html_id" : "ReferenceBossSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1p",
      "toolbandClassid" : "c4676d53-fce5-4a19-be4d-97e6eaf7e19a",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000449_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-referenceboss_1pplugin",
      "prog_id" : "ReferenceBoss_1p.HTMLMenu",
      "activeX_object" : "ReferenceBoss_1p.HTMLMenu",
      "classid" : "1218976b-384e-4e2f-b1fb-1311709424aa",
      "html_id" : "ReferenceBossHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000475_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000475,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000475_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mywebface_2uplugin",
      "prog_id" : "myWebFace_2u.SettingsPlugin",
      "activeX_object" : "myWebFace_2u.SettingsPlugin",
      "classid" : "83cb59f3-5afc-4ee8-895c-0d78c395d66d",
      "html_id" : "MyWebFaceFacebookSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2u",
      "toolbandClassid" : "c618bed0-c03c-4113-a6dd-d73a1d495ad7",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000475_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mywebface_2uplugin",
      "prog_id" : "myWebFace_2u.HTMLMenu",
      "activeX_object" : "myWebFace_2u.HTMLMenu",
      "classid" : "c1ee4f30-d6ba-489d-ae9e-aca469e911c2",
      "html_id" : "MyWebFaceFacebookHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "206800353_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 206800353,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "206800353_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-marineaquarium3free_57plugin",
      "prog_id" : "MarineAquarium3Free_57.SettingsPlugin",
      "activeX_object" : "MarineAquarium3Free_57.SettingsPlugin",
      "classid" : "d35349a7-84d1-4a70-8536-e9c1f77dcf5b",
      "html_id" : "MarineAquariumFreeSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "57",
      "toolbandClassid" : "07189b84-b33b-4a1e-9b32-ad203c983c20",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "206800353_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-marineaquarium3free_57plugin",
      "prog_id" : "MarineAquarium3Free_57.HTMLMenu",
      "activeX_object" : "MarineAquarium3Free_57.HTMLMenu",
      "classid" : "c0fd73b4-c692-4061-b36f-bc15b111314c",
      "html_id" : "MarineAquariumFreeHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000466_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000466,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000466_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-dailydollarguide_1rplugin",
      "prog_id" : "DailyDollarGuide_1r.SettingsPlugin",
      "activeX_object" : "DailyDollarGuide_1r.SettingsPlugin",
      "classid" : "5b219bd4-56c3-4c02-ba47-ba52c42007b1",
      "html_id" : "DailyDollarGuideSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1r",
      "toolbandClassid" : "0fa062e5-899c-4f51-a364-3fabbb73f0be",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000466_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-dailydollarguide_1rplugin",
      "prog_id" : "DailyDollarGuide_1r.HTMLMenu",
      "activeX_object" : "DailyDollarGuide_1r.HTMLMenu",
      "classid" : "2f27214f-df0c-44e8-845f-0247a029de09",
      "html_id" : "DailyDollarGuideHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000421_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000421,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000421_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-cw-myownsuperheroieplugin",
      "prog_id" : "MyOwnSuperheroIE.SettingsPlugin",
      "activeX_object" : "MyOwnSuperheroIE.SettingsPlugin",
      "classid" : "db0046f0-021d-4c6d-8d3c-3fd72ddc6a36",
      "html_id" : "MyOwnSuperheroSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "cw",
      "toolbandClassid" : "3bcf580a-adca-4b91-86e0-3898010003e6",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000421_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-cw-myownsuperheroieplugin",
      "prog_id" : "MyOwnSuperheroIE.HTMLMenu",
      "activeX_object" : "MyOwnSuperheroIE.HTMLMenu",
      "classid" : "ec4915ad-8524-419d-98d2-bc0faf8522f9",
      "html_id" : "MyOwnSuperheroHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "206582318_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 206582318,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "206582318_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-webfetti_52plugin",
      "prog_id" : "Webfetti_52.SettingsPlugin",
      "activeX_object" : "Webfetti_52.SettingsPlugin",
      "classid" : "df13a59d-2c40-4c06-b099-0e12e04c34f7",
      "html_id" : "WebfettiSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "52",
      "toolbandClassid" : "d499ff20-fc53-4ef0-a2a8-b30d8276cbcc",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "206582318_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-webfetti_52plugin",
      "prog_id" : "Webfetti_52.HTMLMenu",
      "activeX_object" : "Webfetti_52.HTMLMenu",
      "classid" : "21120e41-1c8f-4a29-9af5-a48d7b5719ce",
      "html_id" : "WebfettiHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000508_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000508,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000508_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-iwong_3rplugin",
      "prog_id" : "iWonG_3r.SettingsPlugin",
      "activeX_object" : "iWonG_3r.SettingsPlugin",
      "classid" : "b26e7254-59fd-4b7a-9bb7-98baa91745d8",
      "html_id" : "IWONGlobalSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3r",
      "toolbandClassid" : "82f32b41-9289-44d1-90a1-4837c46a79a0",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000508_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-iwong_3rplugin",
      "prog_id" : "iWonG_3r.HTMLMenu",
      "activeX_object" : "iWonG_3r.HTMLMenu",
      "classid" : "0e80cafb-86da-4cd2-b416-3bfaa748c1fc",
      "html_id" : "IWONGlobalHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000452_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000452,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000452_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-6q-orytegames113ieplugin",
      "prog_id" : "orytegames113IE.SettingsPlugin",
      "activeX_object" : "orytegames113IE.SettingsPlugin",
      "classid" : "b4468e8e-4a71-403c-b7bd-7f5629705fb5",
      "html_id" : "OryteGames113ToolbarSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "6q",
      "toolbandClassid" : "47315572-dbda-4a24-871a-64e63930181e",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000452_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-6q-orytegames113ieplugin",
      "prog_id" : "orytegames113IE.HTMLMenu",
      "activeX_object" : "orytegames113IE.HTMLMenu",
      "classid" : "41d149a9-c133-451d-9e7c-fd331927b1d4",
      "html_id" : "OryteGames113ToolbarHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000426_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000426,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000426_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-79-myfuncardsbarplugin",
      "prog_id" : "MyFunCardsbar.SettingsPlugin",
      "activeX_object" : "MyFunCardsbar.SettingsPlugin",
      "classid" : "f9483bd5-166a-46a4-b8d6-bafa9f70876d",
      "html_id" : "MyFunCardsFacebookSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "79",
      "toolbandClassid" : "19dbb97c-8677-4c04-9d00-5c0122cffafc",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000426_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-79-myfuncardsbarplugin",
      "prog_id" : "MyFunCardsbar.HTMLMenu",
      "activeX_object" : "MyFunCardsbar.HTMLMenu",
      "classid" : "a2063fc4-a649-46e0-ba48-270fb0502550",
      "html_id" : "MyFunCardsFacebookHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000422_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000422,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000422_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-el-dailybibleguideieplugin",
      "prog_id" : "DailyBibleGuideIE.SettingsPlugin",
      "activeX_object" : "DailyBibleGuideIE.SettingsPlugin",
      "classid" : "6d6dae96-179d-40f8-b616-e9ce0a0820e1",
      "html_id" : "DailyBibleGuideSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "el",
      "toolbandClassid" : "1399078b-7eb7-477a-893f-93d4ace22fda",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000422_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-el-dailybibleguideieplugin",
      "prog_id" : "DailyBibleGuideIE.HTMLMenu",
      "activeX_object" : "DailyBibleGuideIE.HTMLMenu",
      "classid" : "d12bf31a-5ecb-4716-bc4f-c647223245a8",
      "html_id" : "DailyBibleGuideHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000420_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000420,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000420_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-9u-iwongplugin",
      "prog_id" : "IWONG.SettingsPlugin",
      "activeX_object" : "IWONG.SettingsPlugin",
      "classid" : "bf2f395d-8edb-4a01-9b04-cbaae0a0f69e",
      "html_id" : "IWONGlobalFacebookSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "9u",
      "toolbandClassid" : "97facf40-32b1-4e02-bd2d-073dac256e8b",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000420_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-9u-iwongplugin",
      "prog_id" : "IWONG.HTMLMenu",
      "activeX_object" : "IWONG.HTMLMenu",
      "classid" : "13a5e233-f88a-40f3-ac78-972b14f74e7e",
      "html_id" : "IWONGlobalFacebookHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000544_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000544,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000544_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-puredef_4cplugin",
      "prog_id" : "pureDEF_4c.SettingsPlugin",
      "activeX_object" : "pureDEF_4c.SettingsPlugin",
      "classid" : "E30A55BB-F1B7-43a4-B3F6-EC90CDC4FE60",
      "html_id" : "PureDefSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "p3",
      "toolbandClassid" : "E30A55B9-F1B7-43a4-B3F6-EC90CDC4FE60",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000544_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-puredef_4cplugin",
      "prog_id" : "pureDEF_4c.HTMLMenu",
      "activeX_object" : "pureDEF_4c.HTMLMenu",
      "classid" : "A3367709-554D-4687-AB44-81EBC42548E1",
      "html_id" : "PureDefHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "201100000_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 201100000,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "201100000_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-popularscreensavers_3fplugin",
      "prog_id" : "PopularScreenSavers_3f.SettingsPlugin",
      "activeX_object" : "PopularScreenSavers_3f.SettingsPlugin",
      "classid" : "fb7a1924-a414-42c0-af46-3c20cf7ee7e0",
      "html_id" : "PopularScreenSaversSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3f",
      "toolbandClassid" : "8afc2231-7185-44d7-9399-95a84c9e55cd",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "201100000_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-popularscreensavers_3fplugin",
      "prog_id" : "PopularScreenSavers_3f.HTMLMenu",
      "activeX_object" : "PopularScreenSavers_3f.HTMLMenu",
      "classid" : "ed74e19b-8b9e-4ac6-ae34-b8309edecae5",
      "html_id" : "PopularScreenSaversHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "201221480_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 201221480,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "201221480_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-uberdownloads_1yplugin",
      "prog_id" : "Uberdownloads_1y.SettingsPlugin",
      "activeX_object" : "Uberdownloads_1y.SettingsPlugin",
      "classid" : "a575717b-eeb6-4bed-9ca0-758f25978682",
      "html_id" : "UberdownloadsSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1y",
      "toolbandClassid" : "fcaa9ac3-18f9-40a3-b048-262740bde5f4",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "201221480_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-uberdownloads_1yplugin",
      "prog_id" : "Uberdownloads_1y.HTMLMenu",
      "activeX_object" : "Uberdownloads_1y.HTMLMenu",
      "classid" : "a49e8af6-3c99-4d91-b97d-e229d7c6542b",
      "html_id" : "UberdownloadsHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000547_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000547,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000547_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-conservativetalknow_4nplugin",
      "prog_id" : "ConservativeTalkNow_4n.SettingsPlugin",
      "activeX_object" : "ConservativeTalkNow_4n.SettingsPlugin",
      "classid" : "e5280609-bf3f-4b1c-aa62-d3f6e69d00b3",
      "html_id" : "ConservativeTalkNowSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4n",
      "toolbandClassid" : "533329c9-ca91-42a2-8792-7f91c7b4172a",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000547_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-conservativetalknow_4nplugin",
      "prog_id" : "ConservativeTalkNow_4n.HTMLMenu",
      "activeX_object" : "ConservativeTalkNow_4n.HTMLMenu",
      "classid" : "f24ce9b7-7f63-4ba7-b81f-2bcccd881403",
      "html_id" : "ConservativeTalkNowHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000511_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000511,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000511_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-myfuncards_3vplugin",
      "prog_id" : "MyFunCards_3v.SettingsPlugin",
      "activeX_object" : "MyFunCards_3v.SettingsPlugin",
      "classid" : "c0e76156-53c4-4a53-960e-4c01a2eb51c5",
      "html_id" : "MyFunCardsSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3v",
      "toolbandClassid" : "775fb81e-c515-4bcc-8842-d241fd015aaa",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000511_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-myfuncards_3vplugin",
      "prog_id" : "MyFunCards_3v.HTMLMenu",
      "activeX_object" : "MyFunCards_3v.HTMLMenu",
      "classid" : "74aee6d9-ec2b-4738-a587-e54f5878a432",
      "html_id" : "MyFunCardsHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "206140027_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 206140027,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "206140027_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-retrogamer_4wplugin",
      "prog_id" : "Retrogamer_4w.SettingsPlugin",
      "activeX_object" : "Retrogamer_4w.SettingsPlugin",
      "classid" : "a13cc898-9ca9-4578-9629-b328422ff014",
      "html_id" : "RetrogamerSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4w",
      "toolbandClassid" : "3392cfec-56f8-41ee-bdb4-4e301efd2c93",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "206140027_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-retrogamer_4wplugin",
      "prog_id" : "Retrogamer_4w.HTMLMenu",
      "activeX_object" : "Retrogamer_4w.HTMLMenu",
      "classid" : "fbc56fef-b890-414e-9ed6-0909e5075291",
      "html_id" : "RetrogamerHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000393_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000393,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000393_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-id-iwonieplugin",
      "prog_id" : "iWonIE.SettingsPlugin",
      "activeX_object" : "iWonIE.SettingsPlugin",
      "classid" : "4adfbab0-94f3-4dea-a509-9beffee52c4c",
      "html_id" : "IWONFacebookSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "id",
      "toolbandClassid" : "44843b6e-d44a-4b4f-bca4-559c86633dc6",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000393_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-id-iwonieplugin",
      "prog_id" : "iWonIE.HTMLMenu",
      "activeX_object" : "iWonIE.HTMLMenu",
      "classid" : "ff73db5d-3c1e-4fe6-b324-23e8dadb0ae7",
      "html_id" : "IWONFacebookHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000413_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000413,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000413_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-j3-weatherblinkieplugin",
      "prog_id" : "WeatherBlinkIE.SettingsPlugin",
      "activeX_object" : "WeatherBlinkIE.SettingsPlugin",
      "classid" : "35430749-0b02-4c4d-bb56-b61de3afb6db",
      "html_id" : "WeatherBlinkSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "j3",
      "toolbandClassid" : "74a5a3d8-cc91-412f-a697-e23adab80598",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000413_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-j3-weatherblinkieplugin",
      "prog_id" : "WeatherBlinkIE.HTMLMenu",
      "activeX_object" : "WeatherBlinkIE.HTMLMenu",
      "classid" : "b0d28641-b823-4679-8f23-539886737817",
      "html_id" : "WeatherBlinkHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000450_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000450,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000450_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mortgagehawk_1lplugin",
      "prog_id" : "MortgageHawk_1l.SettingsPlugin",
      "activeX_object" : "MortgageHawk_1l.SettingsPlugin",
      "classid" : "da50d915-d0fe-42eb-b661-bc7877dbef4e",
      "html_id" : "MortgageHawkSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1l",
      "toolbandClassid" : "2f44dfe6-379a-4bc5-b5f4-fed46ab249a1",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000450_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mortgagehawk_1lplugin",
      "prog_id" : "MortgageHawk_1l.HTMLMenu",
      "activeX_object" : "MortgageHawk_1l.HTMLMenu",
      "classid" : "145360af-c1df-4f79-8242-9185eba03972",
      "html_id" : "MortgageHawkHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000547_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000547,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000547_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-conservativetalknowie_4oplugin",
      "prog_id" : "ConservativeTalkNowIE_4o.SettingsPlugin",
      "activeX_object" : "ConservativeTalkNowIE_4o.SettingsPlugin",
      "classid" : "99600f0e-a42e-4819-8bf9-4893d722d2a3",
      "html_id" : "ConservativeTalkNowSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4o",
      "toolbandClassid" : "6c7b6c85-3c42-4c2c-9364-ef89a4779af1",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000547_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-conservativetalknowie_4oplugin",
      "prog_id" : "ConservativeTalkNowIE_4o.HTMLMenu",
      "activeX_object" : "ConservativeTalkNowIE_4o.HTMLMenu",
      "classid" : "0fbd693c-eb98-47f0-9f45-d88a9be1593d",
      "html_id" : "ConservativeTalkNowHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000544_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000544,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000544_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-puredef_4cplugin",
      "prog_id" : "pureDEF_4c.SettingsPlugin",
      "activeX_object" : "pureDEF_4c.SettingsPlugin",
      "classid" : "E30A55BB-F1B7-43a4-B3F6-EC90CDC4FE60",
      "html_id" : "PureDefSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "p3",
      "toolbandClassid" : "E30A55B9-F1B7-43a4-B3F6-EC90CDC4FE60",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000544_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-puredef_4cplugin",
      "prog_id" : "pureDEF_4c.HTMLMenu",
      "activeX_object" : "pureDEF_4c.HTMLMenu",
      "classid" : "A3367709-554D-4687-AB44-81EBC42548E1",
      "html_id" : "PureDefHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "202980021_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 202980021,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "202980021_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mapsgalaxy_39plugin",
      "prog_id" : "MapsGalaxy_39.SettingsPlugin",
      "activeX_object" : "MapsGalaxy_39.SettingsPlugin",
      "classid" : "4b7d0b0c-cff3-49c5-9bc3-ffabc031c822",
      "html_id" : "MapsGalaxySettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "39",
      "toolbandClassid" : "364ea597-e728-4ce4-bb4a-ed846ef47970",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "202980021_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mapsgalaxy_39plugin",
      "prog_id" : "MapsGalaxy_39.HTMLMenu",
      "activeX_object" : "MapsGalaxy_39.HTMLMenu",
      "classid" : "3ed5e5ec-0965-4dd3-b7d8-dbc48a1172b9",
      "html_id" : "MapsGalaxyHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000481_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000481,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000481_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-headlinealley_29plugin",
      "prog_id" : "HeadlineAlley_29.SettingsPlugin",
      "activeX_object" : "HeadlineAlley_29.SettingsPlugin",
      "classid" : "14955909-6b2d-4a8b-bf1e-497d4ad7f794",
      "html_id" : "HeadlineAlleySettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "29",
      "toolbandClassid" : "8f61e414-ea79-4559-8bb6-61d956f70306",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000481_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-headlinealley_29plugin",
      "prog_id" : "HeadlineAlley_29.HTMLMenu",
      "activeX_object" : "HeadlineAlley_29.HTMLMenu",
      "classid" : "9b2fb732-5d3c-4c2a-a53b-dc1bedfd8b00",
      "html_id" : "HeadlineAlleyHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000504_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000504,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000504_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-cursormania_40plugin",
      "prog_id" : "CursorMania_40.SettingsPlugin",
      "activeX_object" : "CursorMania_40.SettingsPlugin",
      "classid" : "df4c2f09-037e-4d56-b84e-f0d7c507dd4a",
      "html_id" : "CursorManiaSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "40",
      "toolbandClassid" : "84cc3549-af31-490f-ad05-92ae8bd87aeb",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000504_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-cursormania_40plugin",
      "prog_id" : "CursorMania_40.HTMLMenu",
      "activeX_object" : "CursorMania_40.HTMLMenu",
      "classid" : "7d575ea3-5b9f-44a4-abf1-050821f8029d",
      "html_id" : "CursorManiaHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "201220870_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 201220870,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "201220870_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-playfin_1tplugin",
      "prog_id" : "Playfin_1t.SettingsPlugin",
      "activeX_object" : "Playfin_1t.SettingsPlugin",
      "classid" : "f01f30f1-81a3-4417-8858-72964bae2919",
      "html_id" : "PlayfinSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1t",
      "toolbandClassid" : "d30bc29f-19f6-40b3-a91f-d4707048ade6",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "201220870_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-playfin_1tplugin",
      "prog_id" : "Playfin_1t.HTMLMenu",
      "activeX_object" : "Playfin_1t.HTMLMenu",
      "classid" : "b5b8d7f5-e93e-4510-b260-e1da10c09b12",
      "html_id" : "PlayfinHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "200820000_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 200820000,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "200820000_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-dailyjewishguide_18plugin",
      "prog_id" : "DailyJewishGuide_18.SettingsPlugin",
      "activeX_object" : "DailyJewishGuide_18.SettingsPlugin",
      "classid" : "6de274df-9336-4682-ade1-81c0e0a432e6",
      "html_id" : "DailyJewishGuideSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "18",
      "toolbandClassid" : "491ccd85-733d-4a9a-8f47-74f615de7c26",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "200820000_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-dailyjewishguide_18plugin",
      "prog_id" : "DailyJewishGuide_18.HTMLMenu",
      "activeX_object" : "DailyJewishGuide_18.HTMLMenu",
      "classid" : "1ce2aa8f-3ad0-44d9-81dc-2f2b6d26f7f8",
      "html_id" : "DailyJewishGuideHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000601_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000601,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000601_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mywebsearch_2oplugin",
      "prog_id" : "MyWebSearch_2o.SettingsPlugin",
      "activeX_object" : "MyWebSearch_2o.SettingsPlugin",
      "classid" : "662709a4-b977-4426-afaf-8e1a04cc364c",
      "html_id" : "ZwinkySettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2o",
      "toolbandClassid" : "273acc18-8165-45ca-9cdf-6e250da24d0f",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000601_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mywebsearch_2oplugin",
      "prog_id" : "MyWebSearch_2o.HTMLMenu",
      "activeX_object" : "MyWebSearch_2o.HTMLMenu",
      "classid" : "9563bde6-52d6-4141-ae2e-63aaaadb35d5",
      "html_id" : "ZwinkyHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000419_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000419,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000419_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-k7-retrogamerplugin",
      "prog_id" : "Retrogamer.SettingsPlugin",
      "activeX_object" : "Retrogamer.SettingsPlugin",
      "classid" : "3d397062-cc5d-4248-b9d7-c9bdcfb1463f",
      "html_id" : "RetrogamerFacebookSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "k7",
      "toolbandClassid" : "779d0683-0351-4790-b30d-71b1863da278",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000419_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-k7-retrogamerplugin",
      "prog_id" : "Retrogamer.HTMLMenu",
      "activeX_object" : "Retrogamer.HTMLMenu",
      "classid" : "a296888d-a25d-44e3-a86f-6f29ce29e670",
      "html_id" : "RetrogamerFacebookHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000545_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000545,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000545_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-tvvie_4iplugin",
      "prog_id" : "TVvieIE_4i.SettingsPlugin",
      "activeX_object" : "TVvieIE_4i.SettingsPlugin",
      "classid" : "2b53c46b-ac9c-4caf-b70a-1ea02aca119f",
      "html_id" : "TVvieSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4i",
      "toolbandClassid" : "47967436-566e-43d5-9774-bce2f4d31b9d",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000545_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-tvvie_4iplugin",
      "prog_id" : "TVvieIE_4i.HTMLMenu",
      "activeX_object" : "TVvieIE_4i.HTMLMenu",
      "classid" : "a78811eb-bbe5-4a9f-a011-931a983f9e7c",
      "html_id" : "TVvieHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "201221480_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 201221480,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "201221480_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-uberdownloads_1yplugin",
      "prog_id" : "Uberdownloads_1y.SettingsPlugin",
      "activeX_object" : "Uberdownloads_1y.SettingsPlugin",
      "classid" : "a575717b-eeb6-4bed-9ca0-758f25978682",
      "html_id" : "UberdownloadsSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1y",
      "toolbandClassid" : "fcaa9ac3-18f9-40a3-b048-262740bde5f4",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "201221480_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-uberdownloads_1yplugin",
      "prog_id" : "Uberdownloads_1y.HTMLMenu",
      "activeX_object" : "Uberdownloads_1y.HTMLMenu",
      "classid" : "a49e8af6-3c99-4d91-b97d-e229d7c6542b",
      "html_id" : "UberdownloadsHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000510_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000510,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000510_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mywebface_3xplugin",
      "prog_id" : "myWebFace_3x.SettingsPlugin",
      "activeX_object" : "myWebFace_3x.SettingsPlugin",
      "classid" : "b2f72f74-ae62-4789-bf62-518190157a4b",
      "html_id" : "MyWebFaceSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3x",
      "toolbandClassid" : "c64c86b3-1993-4513-87f1-2aaac07ec83b",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000510_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mywebface_3xplugin",
      "prog_id" : "myWebFace_3x.HTMLMenu",
      "activeX_object" : "myWebFace_3x.HTMLMenu",
      "classid" : "61678311-d9ea-41e5-b989-9de762d6bf84",
      "html_id" : "MyWebFaceHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "205320000_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 205320000,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "205320000_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-videodownloadconverter_4zplugin",
      "prog_id" : "VideoDownloadConverter_4z.SettingsPlugin",
      "activeX_object" : "VideoDownloadConverter_4z.SettingsPlugin",
      "classid" : "a86782d8-7b41-452f-a217-1854f72dba54",
      "html_id" : "VideoDownloadConverterSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4z",
      "toolbandClassid" : "48586425-6bb7-4f51-8dc6-38c88e3ebb58",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "205320000_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-videodownloadconverter_4zplugin",
      "prog_id" : "VideoDownloadConverter_4z.HTMLMenu",
      "activeX_object" : "VideoDownloadConverter_4z.HTMLMenu",
      "classid" : "71144427-1368-4d18-8dc9-2ae3cc4c4f83",
      "html_id" : "VideoDownloadConverterHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "202980021_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 202980021,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "202980021_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mapsgalaxy_39plugin",
      "prog_id" : "MapsGalaxy_39.SettingsPlugin",
      "activeX_object" : "MapsGalaxy_39.SettingsPlugin",
      "classid" : "4b7d0b0c-cff3-49c5-9bc3-ffabc031c822",
      "html_id" : "MapsGalaxySettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "39",
      "toolbandClassid" : "364ea597-e728-4ce4-bb4a-ed846ef47970",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "202980021_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mapsgalaxy_39plugin",
      "prog_id" : "MapsGalaxy_39.HTMLMenu",
      "activeX_object" : "MapsGalaxy_39.HTMLMenu",
      "classid" : "3ed5e5ec-0965-4dd3-b7d8-dbc48a1172b9",
      "html_id" : "MapsGalaxyHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000482_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000482,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000482_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bettercareersearch_2bplugin",
      "prog_id" : "BetterCareerSearch_2b.SettingsPlugin",
      "activeX_object" : "BetterCareerSearch_2b.SettingsPlugin",
      "classid" : "ec54856f-49da-470e-8f12-6912dde37262",
      "html_id" : "BetterCareerSearchSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2b",
      "toolbandClassid" : "7ff70c81-f37a-4d7b-9d30-ba8ee8c80d5f",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000482_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bettercareersearch_2bplugin",
      "prog_id" : "BetterCareerSearch_2b.HTMLMenu",
      "activeX_object" : "BetterCareerSearch_2b.HTMLMenu",
      "classid" : "2d73a47a-f51b-4210-905c-6d5170b4a9b6",
      "html_id" : "BetterCareerSearchHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "204840007_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 204840007,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "204840007_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-holidaylaughs_48plugin",
      "prog_id" : "HolidayLaughs_48.SettingsPlugin",
      "activeX_object" : "HolidayLaughs_48.SettingsPlugin",
      "classid" : "ae232251-ec7b-448f-8528-1d2c1461a0d0",
      "html_id" : "HolidayLaughsSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "48",
      "toolbandClassid" : "a52980de-57ae-4084-ba3e-9a594ba41316",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "204840007_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-holidaylaughs_48plugin",
      "prog_id" : "HolidayLaughs_48.HTMLMenu",
      "activeX_object" : "HolidayLaughs_48.HTMLMenu",
      "classid" : "f101dfe5-e740-41a9-aabc-2211dc6df2be",
      "html_id" : "HolidayLaughsHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "202000214_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 202000214,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "202000214_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-recipehub_2jplugin",
      "prog_id" : "RecipeHub_2j.SettingsPlugin",
      "activeX_object" : "RecipeHub_2j.SettingsPlugin",
      "classid" : "dc6051b9-dd61-44cb-8ee6-fa28eae44bf9",
      "html_id" : "RecipeHubSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2j",
      "toolbandClassid" : "cf51de5b-eb36-4114-bb69-84df63fbadb4",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "202000214_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-recipehub_2jplugin",
      "prog_id" : "RecipeHub_2j.HTMLMenu",
      "activeX_object" : "RecipeHub_2j.HTMLMenu",
      "classid" : "cb4b8622-cb4a-4c03-8cc1-2b4052f08553",
      "html_id" : "RecipeHubHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "206140027_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 206140027,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "206140027_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-retrogamer_4wplugin",
      "prog_id" : "Retrogamer_4w.SettingsPlugin",
      "activeX_object" : "Retrogamer_4w.SettingsPlugin",
      "classid" : "a13cc898-9ca9-4578-9629-b328422ff014",
      "html_id" : "RetrogamerSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4w",
      "toolbandClassid" : "3392cfec-56f8-41ee-bdb4-4e301efd2c93",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "206140027_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-retrogamer_4wplugin",
      "prog_id" : "Retrogamer_4w.HTMLMenu",
      "activeX_object" : "Retrogamer_4w.HTMLMenu",
      "classid" : "fbc56fef-b890-414e-9ed6-0909e5075291",
      "html_id" : "RetrogamerHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "202360838_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 202360838,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "202360838_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-gamenutt_2splugin",
      "prog_id" : "GameNutt_2s.SettingsPlugin",
      "activeX_object" : "GameNutt_2s.SettingsPlugin",
      "classid" : "42253fd3-214d-40a3-a27e-ccdc0bc388cf",
      "html_id" : "UltimateGamesBarSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2s",
      "toolbandClassid" : "15c23c48-f231-4557-8eee-da3152e2e7dd",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "202360838_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-gamenutt_2splugin",
      "prog_id" : "GameNutt_2s.HTMLMenu",
      "activeX_object" : "GameNutt_2s.HTMLMenu",
      "classid" : "fc3d32f8-2b96-40b0-b34e-5bee62834a4a",
      "html_id" : "UltimateGamesBarHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000471_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000471,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000471_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-ourbabymaker_27plugin",
      "prog_id" : "OurBabyMaker_27.SettingsPlugin",
      "activeX_object" : "OurBabyMaker_27.SettingsPlugin",
      "classid" : "6fb2c9e3-a8cd-42f3-a80d-7fe582164231",
      "html_id" : "OurBabyMakerSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "27",
      "toolbandClassid" : "e0b0df9f-34a3-4db1-becc-621697348607",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000471_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-ourbabymaker_27plugin",
      "prog_id" : "OurBabyMaker_27.HTMLMenu",
      "activeX_object" : "OurBabyMaker_27.HTMLMenu",
      "classid" : "03a6cf83-55b3-4c34-a29f-8747cdbfe61c",
      "html_id" : "OurBabyMakerHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000442_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000442,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000442_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-qv-guffinsieplugin",
      "prog_id" : "GuffinsIE.SettingsPlugin",
      "activeX_object" : "GuffinsIE.SettingsPlugin",
      "classid" : "c250d987-486f-410b-afcc-d5187198bd05",
      "html_id" : "GuffinsSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "qv",
      "toolbandClassid" : "c030671d-63fa-4098-8299-5ceb10d2dadd",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000442_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-qv-guffinsieplugin",
      "prog_id" : "GuffinsIE.HTMLMenu",
      "activeX_object" : "GuffinsIE.HTMLMenu",
      "classid" : "f2cf82d3-507f-48bc-b446-488df93c3802",
      "html_id" : "GuffinsHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "200401157_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 200401157,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "200401157_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-maps4pc_0cplugin",
      "prog_id" : "Maps4PC_0c.SettingsPlugin",
      "activeX_object" : "Maps4PC_0c.SettingsPlugin",
      "classid" : "544ca49e-b461-4509-85ca-52a76a57ee50",
      "html_id" : "Maps4PCSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "0c",
      "toolbandClassid" : "32bfba07-b1fc-4764-bc21-4af8c6188ca5",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "200401157_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-maps4pc_0cplugin",
      "prog_id" : "Maps4PC_0c.HTMLMenu",
      "activeX_object" : "Maps4PC_0c.HTMLMenu",
      "classid" : "99b6c342-6391-4bd2-83e5-866b512c9418",
      "html_id" : "Maps4PCHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000504_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000504,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000504_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-cursormaniaie_41plugin",
      "prog_id" : "CursorManiaIE_41.SettingsPlugin",
      "activeX_object" : "CursorManiaIE_41.SettingsPlugin",
      "classid" : "e03e6fd2-132d-46be-9740-b94d461351a2",
      "html_id" : "CursorManiaSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "41",
      "toolbandClassid" : "b78e80eb-38b6-4349-b3f5-a879625bd95b",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000504_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-cursormaniaie_41plugin",
      "prog_id" : "CursorManiaIE_41.HTMLMenu",
      "activeX_object" : "CursorManiaIE_41.HTMLMenu",
      "classid" : "46bc2b63-bb33-49a8-a0cd-eedc6a2bec13",
      "html_id" : "CursorManiaHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "mindspark" : {
    "settingsCtl" : {
      "extensionInfos" : [ ],
      "toolbar" : "mindspark",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-m5-mindsparkplugin",
      "prog_id" : "MindSpark.SettingsPlugin",
      "activeX_object" : "MindSpark.SettingsPlugin",
      "classid" : "21DBA35B-05C1-4339-9694-13D8D9133339",
      "html_id" : "SettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.50.19",
      "required_version" : "2.3.50.19",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "toolbar" : "mindspark",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-m5-mindsparkplugin",
      "prog_id" : "MindSpark.HTMLMenu",
      "activeX_object" : "MindSpark.HTMLMenu",
      "classid" : "288FEAAB-B810-40ad-9AAC-310230590855",
      "html_id" : "HTMLMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.50.19",
      "required_version" : "2.3.50.19",
      "params" : {
      }
    },
    "ctl" : "settingsCtl",
    "screenSaverCtl" : {
      "toolbar" : "mindspark",
      "name" : "screenSaverCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-m5-mindsparkplugin",
      "prog_id" : "MindSpark.ScreenSaverSettings",
      "activeX_object" : "MindSpark.ScreenSaverSettings",
      "classid" : "C51F4A54-EBD1-4e21-AC05-1CCF7E8849E8",
      "html_id" : "screenSaverCtl",
      "min_version" : "",
      "max_version" : "2.3.50.19",
      "required_version" : "2.3.50.19",
      "params" : {
        "PM" : "efkfpetrqjgksgnteltlofgnoiiiiqkngkmimlfhsnfeogokhehfhghhhihjhkhlhmhnifigihiiijik",
        "L" : "psnllmmrkrgosmekokerjsohgneknhpehjfhpnlqsqgnokhohehfhghhhihjhkhlhmhnifigihiiijik"
      }
    },
    "dataCtl" : {
      "toolbar" : "mindspark",
      "name" : "dataCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-m5-mindsparkplugin",
      "prog_id" : "MindSpark.DataControl",
      "activeX_object" : "MindSpark.DataControl",
      "classid" : "0AB15BD0-37D5-4567-9238-9781EF77E890",
      "html_id" : "DataControl",
      "min_version" : "",
      "max_version" : "2.3.50.19",
      "required_version" : "2.3.50.19",
      "params" : {
      }
    }
  },
  "100000449_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000449,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000449_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-referenceboss_1pplugin",
      "prog_id" : "ReferenceBoss_1p.SettingsPlugin",
      "activeX_object" : "ReferenceBoss_1p.SettingsPlugin",
      "classid" : "5bd302cd-e0c9-4cc7-b9b3-1ebfb69785fe",
      "html_id" : "ReferenceBossSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1p",
      "toolbandClassid" : "c4676d53-fce5-4a19-be4d-97e6eaf7e19a",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000449_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-referenceboss_1pplugin",
      "prog_id" : "ReferenceBoss_1p.HTMLMenu",
      "activeX_object" : "ReferenceBoss_1p.HTMLMenu",
      "classid" : "1218976b-384e-4e2f-b1fb-1311709424aa",
      "html_id" : "ReferenceBossHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "202120498_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 202120498,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "202120498_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-timesofindia_2rplugin",
      "prog_id" : "TimesofIndia_2r.SettingsPlugin",
      "activeX_object" : "TimesofIndia_2r.SettingsPlugin",
      "classid" : "b89d0e8a-61f6-4ce9-bd43-84ec86d4bc8c",
      "html_id" : "TimesofIndiaSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2r",
      "toolbandClassid" : "c7b65ba1-339d-4327-81ab-1b4e03d80a50",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "202120498_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-timesofindia_2rplugin",
      "prog_id" : "TimesofIndia_2r.HTMLMenu",
      "activeX_object" : "TimesofIndia_2r.HTMLMenu",
      "classid" : "4c58dbed-6822-405d-95eb-5a1c34573fb1",
      "html_id" : "TimesofIndiaHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "200400322_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 200400322,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "200400322_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-cieonetutilitiesie_0fplugin",
      "prog_id" : "CieoNetUtilitiesIE_0f.SettingsPlugin",
      "activeX_object" : "CieoNetUtilitiesIE_0f.SettingsPlugin",
      "classid" : "8adb0518-93c9-462e-8d28-9c190805d8ce",
      "html_id" : "CieoNetUtilitiesSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "0f",
      "toolbandClassid" : "78a31638-a959-4f10-9f1c-3d1575c730c4",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "200400322_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-cieonetutilitiesie_0fplugin",
      "prog_id" : "CieoNetUtilitiesIE_0f.HTMLMenu",
      "activeX_object" : "CieoNetUtilitiesIE_0f.HTMLMenu",
      "classid" : "808a9842-4c86-457c-866a-711103d14bb5",
      "html_id" : "CieoNetUtilitiesHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000455_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000455,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000455_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-pa-filmfanaticplugin",
      "prog_id" : "FilmFanatic.SettingsPlugin",
      "activeX_object" : "FilmFanatic.SettingsPlugin",
      "classid" : "4c2743f0-a2e2-41a0-9e65-798943109f42",
      "html_id" : "FilmFanaticFacebookSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "pa",
      "toolbandClassid" : "0b84b4b4-8af8-4f1f-91fe-074a666f6425",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000455_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-pa-filmfanaticplugin",
      "prog_id" : "FilmFanatic.HTMLMenu",
      "activeX_object" : "FilmFanatic.HTMLMenu",
      "classid" : "37a2255c-d173-4b54-a455-13de1dda9f44",
      "html_id" : "FilmFanaticFacebookHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000421_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000421,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000421_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-v3-myownsuperheroplugin",
      "prog_id" : "MyOwnSuperhero.SettingsPlugin",
      "activeX_object" : "MyOwnSuperhero.SettingsPlugin",
      "classid" : "f04d8869-ccd8-440e-9007-c0a94a38c60e",
      "html_id" : "MyOwnSuperheroSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "v3",
      "toolbandClassid" : "df09f053-47d9-4ca2-8152-7969d4dea940",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000421_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-v3-myownsuperheroplugin",
      "prog_id" : "MyOwnSuperhero.HTMLMenu",
      "activeX_object" : "MyOwnSuperhero.HTMLMenu",
      "classid" : "953872db-f4d3-4c2d-a60e-545aab3429a0",
      "html_id" : "MyOwnSuperheroHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000489_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000489,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000489_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-64-televisionfanaticplugin",
      "prog_id" : "TelevisionFanatic.SettingsPlugin",
      "activeX_object" : "TelevisionFanatic.SettingsPlugin",
      "classid" : "04d2b915-19ff-41e9-994d-95dc898bea43",
      "html_id" : "TelevisionFanaticSafariSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "64",
      "toolbandClassid" : "c98d5b61-b0ea-4d48-9839-1079d352d880",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000489_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-64-televisionfanaticplugin",
      "prog_id" : "TelevisionFanatic.HTMLMenu",
      "activeX_object" : "TelevisionFanatic.HTMLMenu",
      "classid" : "1d7e63af-274b-426b-b51d-adf161df7f24",
      "html_id" : "TelevisionFanaticSafariHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000428_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000428,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000428_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-pa-filmfanaticplugin",
      "prog_id" : "FilmFanatic.SettingsPlugin",
      "activeX_object" : "FilmFanatic.SettingsPlugin",
      "classid" : "4c2743f0-a2e2-41a0-9e65-798943109f42",
      "html_id" : "FilmFanaticSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "pa",
      "toolbandClassid" : "0b84b4b4-8af8-4f1f-91fe-074a666f6425",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000428_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-pa-filmfanaticplugin",
      "prog_id" : "FilmFanatic.HTMLMenu",
      "activeX_object" : "FilmFanatic.HTMLMenu",
      "classid" : "37a2255c-d173-4b54-a455-13de1dda9f44",
      "html_id" : "FilmFanaticHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "vicinio" : {
    "settingsCtl" : {
      "extensionInfos" : [ ],
      "toolbar" : "vicinio",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-selfserviceplugin",
      "prog_id" : "SelfServiceToolBar.SettingsPlugin",
      "activeX_object" : "SelfServiceToolBar.SettingsPlugin",
      "classid" : "4971362f-8e35-11dd-88bb-000d562c920a",
      "html_id" : "SettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.50.19",
      "required_version" : "2.3.50.19",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "toolbar" : "vicinio",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-selfserviceplugin",
      "prog_id" : "SelfService.HTMLMenu",
      "activeX_object" : "SelfService.HTMLMenu",
      "classid" : "4971365c-8e35-11dd-88bb-000d562c920a",
      "html_id" : "HTMLMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.50.19",
      "required_version" : "2.3.50.19",
      "params" : {
      }
    },
    "ctl" : "settingsCtl",
    "screenSaverCtl" : {
      "toolbar" : "vicinio",
      "name" : "screenSaverCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-selfserviceplugin",
      "prog_id" : "SelfService.ScreenSaverInstaller",
      "activeX_object" : "SelfService.ScreenSaverInstaller",
      "classid" : "49713669-8e35-11dd-88bb-000d562c920a",
      "html_id" : "screenSaverCtl",
      "min_version" : "",
      "max_version" : "2.3.50.19",
      "required_version" : "2.3.50.19",
      "params" : {
        "PM" : "efkfpetrqjgksgnteltlofgnoiiiiqkngkmimlfhsnfeogokhehfhghhhihjhkhlhmhnifigihiiijik",
        "L" : "psnllmmrkrgosmekokerjsohgneknhpehjfhpnlqsqgnokhohehfhghhhihjhkhlhmhnifigihiiijik"
      }
    },
    "dataCtl" : {
      "toolbar" : "vicinio",
      "name" : "dataCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-selfserviceplugin",
      "prog_id" : "SelfService.DataControl",
      "activeX_object" : "SelfService.DataControl",
      "classid" : "49713653-8e35-11dd-88bb-000d562c920a",
      "html_id" : "DataControl",
      "min_version" : "",
      "max_version" : "2.3.50.19",
      "required_version" : "2.3.50.19",
      "params" : {
      }
    },
    "chatCtl" : {
      "toolbar" : "vicinio",
      "name" : "chatCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "",
      "prog_id" : "",
      "activeX_object" : "",
      "classid" : "E79DFBCA-5697-4fbd-94E5-5B2A9C7C1612",
      "html_id" : "chatcontrol",
      "min_version" : "",
      "max_version" : "2.3.50.45",
      "required_version" : "2.0.4.16",
      "params" : {
        "Category" : "Chat",
        "Capabilities" : "0x14",
        "SignOutDelay" : "10"
      }
    }
  },
  "203981522_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 203981522,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "203981522_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-festivebar_3gplugin",
      "prog_id" : "FestiveBar_3g.SettingsPlugin",
      "activeX_object" : "FestiveBar_3g.SettingsPlugin",
      "classid" : "d9a962e6-9e4e-4910-95cd-0e3dfe09ac9c",
      "html_id" : "FestiveBarSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3g",
      "toolbandClassid" : "9ae277e9-32f4-46d5-94f4-20201609d1d0",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "203981522_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-festivebar_3gplugin",
      "prog_id" : "FestiveBar_3g.HTMLMenu",
      "activeX_object" : "FestiveBar_3g.HTMLMenu",
      "classid" : "64382763-4644-47f1-80c3-d2828cab902f",
      "html_id" : "FestiveBarHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "205320663_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 205320663,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "205320663_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-christmasholidaylaughs_4mplugin",
      "prog_id" : "ChristmasHolidayLaughs_4m.SettingsPlugin",
      "activeX_object" : "ChristmasHolidayLaughs_4m.SettingsPlugin",
      "classid" : "98e87aa2-32b0-4746-9840-7616be9ad1e1",
      "html_id" : "ChristmasHolidayLaughsSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4m",
      "toolbandClassid" : "31063c67-aa37-4949-a652-66368f707bb3",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "205320663_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-christmasholidaylaughs_4mplugin",
      "prog_id" : "ChristmasHolidayLaughs_4m.HTMLMenu",
      "activeX_object" : "ChristmasHolidayLaughs_4m.HTMLMenu",
      "classid" : "d8fa12aa-184f-4dea-b519-e27a99177b75",
      "html_id" : "ChristmasHolidayLaughsHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000452_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000452,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000452_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-ah-orytegames113plugin",
      "prog_id" : "orytegames113.SettingsPlugin",
      "activeX_object" : "orytegames113.SettingsPlugin",
      "classid" : "7734ed47-de89-448f-b983-50ef02142978",
      "html_id" : "OryteGames113ToolbarSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "ah",
      "toolbandClassid" : "31af2c4c-c0f5-4478-8f6c-477026348c86",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000452_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-ah-orytegames113plugin",
      "prog_id" : "orytegames113.HTMLMenu",
      "activeX_object" : "orytegames113.HTMLMenu",
      "classid" : "3aebf93c-ffb0-4338-8562-0abf4219a05c",
      "html_id" : "OryteGames113ToolbarHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000546_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000546,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000546_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-radiopiie_4fplugin",
      "prog_id" : "RadioPIIE_4f.SettingsPlugin",
      "activeX_object" : "RadioPIIE_4f.SettingsPlugin",
      "classid" : "3bc7a438-0114-4d28-9518-1c7b76d24fe0",
      "html_id" : "RadioPISettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4f",
      "toolbandClassid" : "b75ba01a-4b48-43dc-a574-57a8d4445ce6",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000546_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-radiopiie_4fplugin",
      "prog_id" : "RadioPIIE_4f.HTMLMenu",
      "activeX_object" : "RadioPIIE_4f.HTMLMenu",
      "classid" : "9de00a6b-1961-4813-93b7-4ca6fa184034",
      "html_id" : "RadioPIHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "204540489_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 204540489,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "204540489_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-utilitychest_49plugin",
      "prog_id" : "UtilityChest_49.SettingsPlugin",
      "activeX_object" : "UtilityChest_49.SettingsPlugin",
      "classid" : "268ca04c-106c-4636-b707-95e8cd5859e0",
      "html_id" : "UtilityChestSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "49",
      "toolbandClassid" : "cf67755f-9265-449c-87cf-b945519e073b",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "204540489_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-utilitychest_49plugin",
      "prog_id" : "UtilityChest_49.HTMLMenu",
      "activeX_object" : "UtilityChest_49.HTMLMenu",
      "classid" : "25151605-d156-49dd-a659-20e69c1ee15f",
      "html_id" : "UtilityChestHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000481_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000481,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000481_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-headlinealley_29plugin",
      "prog_id" : "HeadlineAlley_29.SettingsPlugin",
      "activeX_object" : "HeadlineAlley_29.SettingsPlugin",
      "classid" : "14955909-6b2d-4a8b-bf1e-497d4ad7f794",
      "html_id" : "HeadlineAlleySettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "29",
      "toolbandClassid" : "8f61e414-ea79-4559-8bb6-61d956f70306",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000481_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-headlinealley_29plugin",
      "prog_id" : "HeadlineAlley_29.HTMLMenu",
      "activeX_object" : "HeadlineAlley_29.HTMLMenu",
      "classid" : "9b2fb732-5d3c-4c2a-a53b-dc1bedfd8b00",
      "html_id" : "HeadlineAlleyHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000482_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000482,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000482_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bettercareersearchie_2cplugin",
      "prog_id" : "BetterCareerSearchIE_2c.SettingsPlugin",
      "activeX_object" : "BetterCareerSearchIE_2c.SettingsPlugin",
      "classid" : "e40d17bb-3fd7-491a-81fa-ada33e25bec9",
      "html_id" : "BetterCareerSearchSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2c",
      "toolbandClassid" : "12e32e56-0c55-4af5-bfe8-047de6ae229c",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000482_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bettercareersearchie_2cplugin",
      "prog_id" : "BetterCareerSearchIE_2c.HTMLMenu",
      "activeX_object" : "BetterCareerSearchIE_2c.HTMLMenu",
      "classid" : "f0a463a6-c88f-4948-9485-00356d12ef85",
      "html_id" : "BetterCareerSearchHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000475_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000475,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000475_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mywebfaceie_2wplugin",
      "prog_id" : "myWebFaceIE_2w.SettingsPlugin",
      "activeX_object" : "myWebFaceIE_2w.SettingsPlugin",
      "classid" : "60b24564-1775-46b8-9ef3-a682b8373e21",
      "html_id" : "MyWebFaceFacebookSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2w",
      "toolbandClassid" : "dfa6f716-6499-4a36-ad6a-c9a98cce1eb7",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000475_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mywebfaceie_2wplugin",
      "prog_id" : "myWebFaceIE_2w.HTMLMenu",
      "activeX_object" : "myWebFaceIE_2w.HTMLMenu",
      "classid" : "2bafed1e-60b7-4102-93af-8e57015928de",
      "html_id" : "MyWebFaceFacebookHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000509_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000509,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000509_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-kazulah_3tplugin",
      "prog_id" : "Kazulah_3t.SettingsPlugin",
      "activeX_object" : "Kazulah_3t.SettingsPlugin",
      "classid" : "629ada34-a34e-4909-bf75-b2c8cb8f9617",
      "html_id" : "KazulahSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3t",
      "toolbandClassid" : "9605b458-a813-4971-b5a7-0d17768c016d",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000509_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-kazulah_3tplugin",
      "prog_id" : "Kazulah_3t.HTMLMenu",
      "activeX_object" : "Kazulah_3t.HTMLMenu",
      "classid" : "15f86212-7a9b-45d2-bfcb-ec03d104ee51",
      "html_id" : "KazulahHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000487_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000487,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000487_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-couponalert_2pplugin",
      "prog_id" : "CouponAlert_2p.SettingsPlugin",
      "activeX_object" : "CouponAlert_2p.SettingsPlugin",
      "classid" : "23b38049-323f-443d-9732-f454e5b15b72",
      "html_id" : "CouponAlertSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2p",
      "toolbandClassid" : "3462c343-be19-4143-af70-cefb56f46fc6",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000487_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-couponalert_2pplugin",
      "prog_id" : "CouponAlert_2p.HTMLMenu",
      "activeX_object" : "CouponAlert_2p.HTMLMenu",
      "classid" : "95b3f577-d54a-4831-b2b4-8aaceeda85cf",
      "html_id" : "CouponAlertHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "201221480_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 201221480,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "201221480_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-uberdownloads_1yplugin",
      "prog_id" : "Uberdownloads_1y.SettingsPlugin",
      "activeX_object" : "Uberdownloads_1y.SettingsPlugin",
      "classid" : "a575717b-eeb6-4bed-9ca0-758f25978682",
      "html_id" : "UberdownloadsSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1y",
      "toolbandClassid" : "fcaa9ac3-18f9-40a3-b048-262740bde5f4",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "201221480_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-uberdownloads_1yplugin",
      "prog_id" : "Uberdownloads_1y.HTMLMenu",
      "activeX_object" : "Uberdownloads_1y.HTMLMenu",
      "classid" : "a49e8af6-3c99-4d91-b97d-e229d7c6542b",
      "html_id" : "UberdownloadsHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "205320984_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 205320984,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "205320984_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bibletriviatime_4lplugin",
      "prog_id" : "BibleTriviaTime_4l.SettingsPlugin",
      "activeX_object" : "BibleTriviaTime_4l.SettingsPlugin",
      "classid" : "fe25059a-395a-4541-a820-510a590a8663",
      "html_id" : "KnowtheBibleSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4l",
      "toolbandClassid" : "7abeab51-07be-42c5-89b4-c7f1a3a31816",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "205320984_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bibletriviatime_4lplugin",
      "prog_id" : "BibleTriviaTime_4l.HTMLMenu",
      "activeX_object" : "BibleTriviaTime_4l.HTMLMenu",
      "classid" : "bc86461b-908b-4f12-8cad-1aa9d9717c50",
      "html_id" : "KnowtheBibleHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000459_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000459,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000459_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-totalrecipesearch_14plugin",
      "prog_id" : "TotalRecipeSearch_14.SettingsPlugin",
      "activeX_object" : "TotalRecipeSearch_14.SettingsPlugin",
      "classid" : "e8106344-16d4-41d1-9a2a-0521a59199ea",
      "html_id" : "TotalRecipeSearchSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "14",
      "toolbandClassid" : "a0154e07-2b48-475c-a82a-80efd84ea33e",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000459_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-totalrecipesearch_14plugin",
      "prog_id" : "TotalRecipeSearch_14.HTMLMenu",
      "activeX_object" : "TotalRecipeSearch_14.HTMLMenu",
      "classid" : "a4503ec3-1111-4b62-8f46-0d88508f8a7b",
      "html_id" : "TotalRecipeSearchHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "201420310_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 201420310,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "201420310_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-clanwars_21plugin",
      "prog_id" : "ClanWars_21.SettingsPlugin",
      "activeX_object" : "ClanWars_21.SettingsPlugin",
      "classid" : "722ad15f-c725-40bb-8f95-806306cf6e9c",
      "html_id" : "ClanWarsSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "21",
      "toolbandClassid" : "87e664eb-08cf-4d06-ba64-7c281fa2b3ef",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "201420310_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-clanwars_21plugin",
      "prog_id" : "ClanWars_21.HTMLMenu",
      "activeX_object" : "ClanWars_21.HTMLMenu",
      "classid" : "ae4ebfe0-56c0-41cd-bf02-00af5404af61",
      "html_id" : "ClanWarsHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000511_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000511,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000511_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-myfuncardsie_3wplugin",
      "prog_id" : "MyFunCardsIE_3w.SettingsPlugin",
      "activeX_object" : "MyFunCardsIE_3w.SettingsPlugin",
      "classid" : "9db3a388-c765-42bd-989f-4bffc7887d3e",
      "html_id" : "MyFunCardsSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3w",
      "toolbandClassid" : "b63fb0a0-7ccc-4a83-a066-4a3363dad80c",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000511_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-myfuncardsie_3wplugin",
      "prog_id" : "MyFunCardsIE_3w.HTMLMenu",
      "activeX_object" : "MyFunCardsIE_3w.HTMLMenu",
      "classid" : "8258001e-ba64-4cfa-99f1-9fde0897cdc1",
      "html_id" : "MyFunCardsHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "202820547_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 202820547,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "202820547_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-seconddomain_35plugin",
      "prog_id" : "SecondDomain_35.SettingsPlugin",
      "activeX_object" : "SecondDomain_35.SettingsPlugin",
      "classid" : "1642997d-6a3b-42b0-84b4-d066f7165f1d",
      "html_id" : "SecondDomainSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "35",
      "toolbandClassid" : "02734475-8fdc-47b8-b534-665a74fe8107",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "202820547_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-seconddomain_35plugin",
      "prog_id" : "SecondDomain_35.HTMLMenu",
      "activeX_object" : "SecondDomain_35.HTMLMenu",
      "classid" : "be8f561f-0558-41ba-bdba-67549e8b8fbc",
      "html_id" : "SecondDomainHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000546_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000546,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000546_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-radiopi_4eplugin",
      "prog_id" : "RadioPI_4e.SettingsPlugin",
      "activeX_object" : "RadioPI_4e.SettingsPlugin",
      "classid" : "d16cb545-c8a6-4441-8936-bbe56c0c497a",
      "html_id" : "RadioPISettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4e",
      "toolbandClassid" : "92926b63-5116-4c6f-a33e-378767b8d15f",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000546_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-radiopi_4eplugin",
      "prog_id" : "RadioPI_4e.HTMLMenu",
      "activeX_object" : "RadioPI_4e.HTMLMenu",
      "classid" : "1c42ebd4-5b08-4481-b789-dde76af8c266",
      "html_id" : "RadioPIHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000441_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000441,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000441_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-ny-fantasyfootballbossieplugin",
      "prog_id" : "FantasyFootballBossIE.SettingsPlugin",
      "activeX_object" : "FantasyFootballBossIE.SettingsPlugin",
      "classid" : "cac126c2-1794-4e62-afe4-27f62079431e",
      "html_id" : "FantasyFootballBossSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "ny",
      "toolbandClassid" : "42206991-9104-4461-a395-bd701c714d8e",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000441_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-ny-fantasyfootballbossieplugin",
      "prog_id" : "FantasyFootballBossIE.HTMLMenu",
      "activeX_object" : "FantasyFootballBossIE.HTMLMenu",
      "classid" : "e20a21e7-a619-4674-af17-55574bf0df3f",
      "html_id" : "FantasyFootballBossHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000455_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000455,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000455_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-np-filmfanaticieplugin",
      "prog_id" : "FilmFanaticIE.SettingsPlugin",
      "activeX_object" : "FilmFanaticIE.SettingsPlugin",
      "classid" : "da553c04-9d80-4114-9593-cb69bbd01126",
      "html_id" : "FilmFanaticFacebookSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "np",
      "toolbandClassid" : "c860f371-5111-49a0-8fd1-80614c6677f2",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000455_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-np-filmfanaticieplugin",
      "prog_id" : "FilmFanaticIE.HTMLMenu",
      "activeX_object" : "FilmFanaticIE.HTMLMenu",
      "classid" : "6bdac4d0-41a5-4ea2-90d8-cb545ea33246",
      "html_id" : "FilmFanaticFacebookHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000504_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000504,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000504_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-cursormania_40plugin",
      "prog_id" : "CursorMania_40.SettingsPlugin",
      "activeX_object" : "CursorMania_40.SettingsPlugin",
      "classid" : "df4c2f09-037e-4d56-b84e-f0d7c507dd4a",
      "html_id" : "CursorManiaSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "40",
      "toolbandClassid" : "84cc3549-af31-490f-ad05-92ae8bd87aeb",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000504_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-cursormania_40plugin",
      "prog_id" : "CursorMania_40.HTMLMenu",
      "activeX_object" : "CursorMania_40.HTMLMenu",
      "classid" : "7d575ea3-5b9f-44a4-abf1-050821f8029d",
      "html_id" : "CursorManiaHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "201140006_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 201140006,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "201140006_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-smileycentral_34plugin",
      "prog_id" : "SmileyCentral_34.SettingsPlugin",
      "activeX_object" : "SmileyCentral_34.SettingsPlugin",
      "classid" : "102c151a-e6c5-487e-a347-3b5ad5b1ccc9",
      "html_id" : "SmileyCentralSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "34",
      "toolbandClassid" : "4babac09-4562-413f-a07b-a4c25b037882",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "201140006_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-smileycentral_34plugin",
      "prog_id" : "SmileyCentral_34.HTMLMenu",
      "activeX_object" : "SmileyCentral_34.HTMLMenu",
      "classid" : "821ebeb6-ee47-4736-824b-8551e50e75d3",
      "html_id" : "SmileyCentralHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000481_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000481,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000481_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-headlinealleyie_2aplugin",
      "prog_id" : "HeadlineAlleyIE_2a.SettingsPlugin",
      "activeX_object" : "HeadlineAlleyIE_2a.SettingsPlugin",
      "classid" : "1475731e-740f-470a-aa20-b51997921994",
      "html_id" : "HeadlineAlleySettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2a",
      "toolbandClassid" : "33a3dfdc-85f1-41b6-a36f-6559a010c446",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000481_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-headlinealleyie_2aplugin",
      "prog_id" : "HeadlineAlleyIE_2a.HTMLMenu",
      "activeX_object" : "HeadlineAlleyIE_2a.HTMLMenu",
      "classid" : "9d1d71b6-8327-4ea0-bdab-23c00e18921f",
      "html_id" : "HeadlineAlleyHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000418_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000418,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000418_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-7d-webfettiplugin",
      "prog_id" : "Webfetti.SettingsPlugin",
      "activeX_object" : "Webfetti.SettingsPlugin",
      "classid" : "438b5c1d-0e9e-4548-a2e1-3ea0b9daa937",
      "html_id" : "WebfettiFacebookSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "7d",
      "toolbandClassid" : "da9315e7-514d-4f86-9c8c-39a5b7107d48",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000418_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-7d-webfettiplugin",
      "prog_id" : "Webfetti.HTMLMenu",
      "activeX_object" : "Webfetti.HTMLMenu",
      "classid" : "6822088b-6b67-4a76-bbe4-e292e335e323",
      "html_id" : "WebfettiFacebookHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "204540489_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 204540489,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "204540489_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-utilitychest_49plugin",
      "prog_id" : "UtilityChest_49.SettingsPlugin",
      "activeX_object" : "UtilityChest_49.SettingsPlugin",
      "classid" : "268ca04c-106c-4636-b707-95e8cd5859e0",
      "html_id" : "UtilityChestSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "49",
      "toolbandClassid" : "cf67755f-9265-449c-87cf-b945519e073b",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "204540489_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-utilitychest_49plugin",
      "prog_id" : "UtilityChest_49.HTMLMenu",
      "activeX_object" : "UtilityChest_49.HTMLMenu",
      "classid" : "25151605-d156-49dd-a659-20e69c1ee15f",
      "html_id" : "UtilityChestHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000421_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000421,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000421_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-v3-myownsuperheroplugin",
      "prog_id" : "MyOwnSuperhero.SettingsPlugin",
      "activeX_object" : "MyOwnSuperhero.SettingsPlugin",
      "classid" : "f04d8869-ccd8-440e-9007-c0a94a38c60e",
      "html_id" : "MyOwnSuperheroSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "v3",
      "toolbandClassid" : "df09f053-47d9-4ca2-8152-7969d4dea940",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000421_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-v3-myownsuperheroplugin",
      "prog_id" : "MyOwnSuperhero.HTMLMenu",
      "activeX_object" : "MyOwnSuperhero.HTMLMenu",
      "classid" : "953872db-f4d3-4c2d-a60e-545aab3429a0",
      "html_id" : "MyOwnSuperheroHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000458_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000458,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000458_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-samplesaledash_1aplugin",
      "prog_id" : "SampleSaleDash_1a.SettingsPlugin",
      "activeX_object" : "SampleSaleDash_1a.SettingsPlugin",
      "classid" : "4aff26fc-ae69-405b-9a33-50480291de3b",
      "html_id" : "SampleSaleDashSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1a",
      "toolbandClassid" : "14e93681-160d-4290-a717-bf9f0e3c6ed5",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000458_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-samplesaledash_1aplugin",
      "prog_id" : "SampleSaleDash_1a.HTMLMenu",
      "activeX_object" : "SampleSaleDash_1a.HTMLMenu",
      "classid" : "7714fe88-9991-4b97-a5a5-26ded48e280d",
      "html_id" : "SampleSaleDashHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "207040002_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 207040002,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "207040002_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-petsharmony_5bplugin",
      "prog_id" : "PetsHarmony_5b.SettingsPlugin",
      "activeX_object" : "PetsHarmony_5b.SettingsPlugin",
      "classid" : "743f7e3d-fa49-49c1-91b9-f76b2fbceb31",
      "html_id" : "PetsHarmonySettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "5b",
      "toolbandClassid" : "dc257d0d-f11b-4312-bb34-ee22ea4ba68a",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "207040002_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-petsharmony_5bplugin",
      "prog_id" : "PetsHarmony_5b.HTMLMenu",
      "activeX_object" : "PetsHarmony_5b.HTMLMenu",
      "classid" : "923f3e68-b6bc-4070-b276-8e8c70141e58",
      "html_id" : "PetsHarmonyHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000457_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000457,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000457_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-videoscavenger_1eplugin",
      "prog_id" : "VideoScavenger_1e.SettingsPlugin",
      "activeX_object" : "VideoScavenger_1e.SettingsPlugin",
      "classid" : "94c801cd-46bf-4b4d-834b-8f0a69bdff24",
      "html_id" : "VideoScavengerSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1e",
      "toolbandClassid" : "acf7da4c-eeb2-484a-a3a1-303d4054d50c",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000457_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-videoscavenger_1eplugin",
      "prog_id" : "VideoScavenger_1e.HTMLMenu",
      "activeX_object" : "VideoScavenger_1e.HTMLMenu",
      "classid" : "f53c4ffc-1a47-4eca-b372-014ec02f7301",
      "html_id" : "VideoScavengerHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000425_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000425,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000425_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-gt-gamingwonderlandplugin",
      "prog_id" : "GamingWonderland.SettingsPlugin",
      "activeX_object" : "GamingWonderland.SettingsPlugin",
      "classid" : "08fbcb5f-de4f-49e0-977e-e4269f4d7206",
      "html_id" : "GamingWonderlandSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "gt",
      "toolbandClassid" : "a899079d-206f-43a6-be6a-07e0fa648ea0",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000425_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-gt-gamingwonderlandplugin",
      "prog_id" : "GamingWonderland.HTMLMenu",
      "activeX_object" : "GamingWonderland.HTMLMenu",
      "classid" : "26a73c38-b71a-4d3a-80b7-e010420da1e7",
      "html_id" : "GamingWonderlandHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "206582318_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 206582318,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "206582318_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-webfetti_52plugin",
      "prog_id" : "Webfetti_52.SettingsPlugin",
      "activeX_object" : "Webfetti_52.SettingsPlugin",
      "classid" : "df13a59d-2c40-4c06-b099-0e12e04c34f7",
      "html_id" : "WebfettiSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "52",
      "toolbandClassid" : "d499ff20-fc53-4ef0-a2a8-b30d8276cbcc",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "206582318_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-webfetti_52plugin",
      "prog_id" : "Webfetti_52.HTMLMenu",
      "activeX_object" : "Webfetti_52.HTMLMenu",
      "classid" : "21120e41-1c8f-4a29-9af5-a48d7b5719ce",
      "html_id" : "WebfettiHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000413_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000413,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000413_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-gc-weatherblinkplugin",
      "prog_id" : "WeatherBlink.SettingsPlugin",
      "activeX_object" : "WeatherBlink.SettingsPlugin",
      "classid" : "d229a1e0-7b36-4912-a874-0f0a4e1c039d",
      "html_id" : "WeatherBlinkSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "gc",
      "toolbandClassid" : "f20de5e0-2a6e-4c54-985f-1cf59551ce39",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000413_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-gc-weatherblinkplugin",
      "prog_id" : "WeatherBlink.HTMLMenu",
      "activeX_object" : "WeatherBlink.HTMLMenu",
      "classid" : "1552fe9d-b6b5-49e8-9eff-e799d6b2285a",
      "html_id" : "WeatherBlinkHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "205320000_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 205320000,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "205320000_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-videodownloadconverter_4zplugin",
      "prog_id" : "VideoDownloadConverter_4z.SettingsPlugin",
      "activeX_object" : "VideoDownloadConverter_4z.SettingsPlugin",
      "classid" : "a86782d8-7b41-452f-a217-1854f72dba54",
      "html_id" : "VideoDownloadConverterSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4z",
      "toolbandClassid" : "48586425-6bb7-4f51-8dc6-38c88e3ebb58",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "205320000_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-videodownloadconverter_4zplugin",
      "prog_id" : "VideoDownloadConverter_4z.HTMLMenu",
      "activeX_object" : "VideoDownloadConverter_4z.HTMLMenu",
      "classid" : "71144427-1368-4d18-8dc9-2ae3cc4c4f83",
      "html_id" : "VideoDownloadConverterHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000418_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000418,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000418_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-yb-webfettiieplugin",
      "prog_id" : "WebfettiIE.SettingsPlugin",
      "activeX_object" : "WebfettiIE.SettingsPlugin",
      "classid" : "e231159c-31ac-4d3e-b2f1-96765ffe296b",
      "html_id" : "WebfettiFacebookSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "yb",
      "toolbandClassid" : "94fc3fb2-3e5c-4b8f-aaee-17090ce800bc",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000418_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-yb-webfettiieplugin",
      "prog_id" : "WebfettiIE.HTMLMenu",
      "activeX_object" : "WebfettiIE.HTMLMenu",
      "classid" : "f63cc830-0f14-424b-a904-5d22ac8ee2b5",
      "html_id" : "WebfettiFacebookHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000426_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000426,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000426_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-79-myfuncardsbarplugin",
      "prog_id" : "MyFunCardsbar.SettingsPlugin",
      "activeX_object" : "MyFunCardsbar.SettingsPlugin",
      "classid" : "f9483bd5-166a-46a4-b8d6-bafa9f70876d",
      "html_id" : "MyFunCardsFacebookSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "79",
      "toolbandClassid" : "19dbb97c-8677-4c04-9d00-5c0122cffafc",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000426_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-79-myfuncardsbarplugin",
      "prog_id" : "MyFunCardsbar.HTMLMenu",
      "activeX_object" : "MyFunCardsbar.HTMLMenu",
      "classid" : "a2063fc4-a649-46e0-ba48-270fb0502550",
      "html_id" : "MyFunCardsFacebookHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000415_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000415,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000415_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-x5-televisionfanaticieplugin",
      "prog_id" : "TelevisionFanaticIE.SettingsPlugin",
      "activeX_object" : "TelevisionFanaticIE.SettingsPlugin",
      "classid" : "4a61e89b-2d72-45dd-8f51-9e24c78da72a",
      "html_id" : "TelevisionFanaticSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "x5",
      "toolbandClassid" : "c38bf6de-71c2-4dba-b603-a078322bb2e2",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000415_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-x5-televisionfanaticieplugin",
      "prog_id" : "TelevisionFanaticIE.HTMLMenu",
      "activeX_object" : "TelevisionFanaticIE.HTMLMenu",
      "classid" : "f0b66a72-9bdd-4afe-8d55-af77df9e7a32",
      "html_id" : "TelevisionFanaticHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "205320663_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 205320663,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "205320663_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-christmasholidaylaughs_4mplugin",
      "prog_id" : "ChristmasHolidayLaughs_4m.SettingsPlugin",
      "activeX_object" : "ChristmasHolidayLaughs_4m.SettingsPlugin",
      "classid" : "98e87aa2-32b0-4746-9840-7616be9ad1e1",
      "html_id" : "ChristmasHolidayLaughsSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4m",
      "toolbandClassid" : "31063c67-aa37-4949-a652-66368f707bb3",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "205320663_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-christmasholidaylaughs_4mplugin",
      "prog_id" : "ChristmasHolidayLaughs_4m.HTMLMenu",
      "activeX_object" : "ChristmasHolidayLaughs_4m.HTMLMenu",
      "classid" : "d8fa12aa-184f-4dea-b519-e27a99177b75",
      "html_id" : "ChristmasHolidayLaughsHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "203320254_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 203320254,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "203320254_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bringmesportsrugby_3eplugin",
      "prog_id" : "BringMeSportsRugby_3e.SettingsPlugin",
      "activeX_object" : "BringMeSportsRugby_3e.SettingsPlugin",
      "classid" : "e8b2cb46-bcc1-4b9c-b1ba-033936ca16e2",
      "html_id" : "BringMeSportsRugbySettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3e",
      "toolbandClassid" : "93ba951f-1216-4cd5-be90-89123d18af4c",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "203320254_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bringmesportsrugby_3eplugin",
      "prog_id" : "BringMeSportsRugby_3e.HTMLMenu",
      "activeX_object" : "BringMeSportsRugby_3e.HTMLMenu",
      "classid" : "0a7bbe7b-7c30-4d88-8d7d-6a43fdc699c5",
      "html_id" : "BringMeSportsRugbyHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000486_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000486,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000486_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-radiorageie_4kplugin",
      "prog_id" : "RadioRageIE_4k.SettingsPlugin",
      "activeX_object" : "RadioRageIE_4k.SettingsPlugin",
      "classid" : "a7846ab2-64a6-4fce-9cf2-821d8638cce3",
      "html_id" : "RadioRageSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4k",
      "toolbandClassid" : "3349fb79-83db-4885-a147-3e1621a407cc",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000486_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-radiorageie_4kplugin",
      "prog_id" : "RadioRageIE_4k.HTMLMenu",
      "activeX_object" : "RadioRageIE_4k.HTMLMenu",
      "classid" : "5468da83-a50f-4005-88d9-ac7df20698a6",
      "html_id" : "RadioRageHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000428_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000428,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000428_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-np-filmfanaticieplugin",
      "prog_id" : "FilmFanaticIE.SettingsPlugin",
      "activeX_object" : "FilmFanaticIE.SettingsPlugin",
      "classid" : "da553c04-9d80-4114-9593-cb69bbd01126",
      "html_id" : "FilmFanaticSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "np",
      "toolbandClassid" : "c860f371-5111-49a0-8fd1-80614c6677f2",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000428_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-np-filmfanaticieplugin",
      "prog_id" : "FilmFanaticIE.HTMLMenu",
      "activeX_object" : "FilmFanaticIE.HTMLMenu",
      "classid" : "6bdac4d0-41a5-4ea2-90d8-cb545ea33246",
      "html_id" : "FilmFanaticHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "200401157_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 200401157,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "200401157_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-maps4pc_0cplugin",
      "prog_id" : "Maps4PC_0c.SettingsPlugin",
      "activeX_object" : "Maps4PC_0c.SettingsPlugin",
      "classid" : "544ca49e-b461-4509-85ca-52a76a57ee50",
      "html_id" : "Maps4PCSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "0c",
      "toolbandClassid" : "32bfba07-b1fc-4764-bc21-4af8c6188ca5",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "200401157_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-maps4pc_0cplugin",
      "prog_id" : "Maps4PC_0c.HTMLMenu",
      "activeX_object" : "Maps4PC_0c.HTMLMenu",
      "classid" : "99b6c342-6391-4bd2-83e5-866b512c9418",
      "html_id" : "Maps4PCHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000601_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000601,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000601_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mywebsearch_2oplugin",
      "prog_id" : "MyWebSearch_2o.SettingsPlugin",
      "activeX_object" : "MyWebSearch_2o.SettingsPlugin",
      "classid" : "662709a4-b977-4426-afaf-8e1a04cc364c",
      "html_id" : "ZwinkySettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2o",
      "toolbandClassid" : "273acc18-8165-45ca-9cdf-6e250da24d0f",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000601_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mywebsearch_2oplugin",
      "prog_id" : "MyWebSearch_2o.HTMLMenu",
      "activeX_object" : "MyWebSearch_2o.HTMLMenu",
      "classid" : "9563bde6-52d6-4141-ae2e-63aaaadb35d5",
      "html_id" : "ZwinkyHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000422_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000422,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000422_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-2v-dailybibleguideplugin",
      "prog_id" : "DailyBibleGuide.SettingsPlugin",
      "activeX_object" : "DailyBibleGuide.SettingsPlugin",
      "classid" : "99d03de2-28ac-444c-b78e-7d0a2a8fc328",
      "html_id" : "DailyBibleGuideSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2v",
      "toolbandClassid" : "2a942ab7-2073-49bc-a7e1-77e93835889a",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000422_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-2v-dailybibleguideplugin",
      "prog_id" : "DailyBibleGuide.HTMLMenu",
      "activeX_object" : "DailyBibleGuide.HTMLMenu",
      "classid" : "602b774d-b1c7-493d-a64c-ed423af7132f",
      "html_id" : "DailyBibleGuideHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "204840007_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 204840007,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "204840007_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-holidaylaughs_48plugin",
      "prog_id" : "HolidayLaughs_48.SettingsPlugin",
      "activeX_object" : "HolidayLaughs_48.SettingsPlugin",
      "classid" : "ae232251-ec7b-448f-8528-1d2c1461a0d0",
      "html_id" : "HolidayLaughsSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "48",
      "toolbandClassid" : "a52980de-57ae-4084-ba3e-9a594ba41316",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "204840007_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-holidaylaughs_48plugin",
      "prog_id" : "HolidayLaughs_48.HTMLMenu",
      "activeX_object" : "HolidayLaughs_48.HTMLMenu",
      "classid" : "f101dfe5-e740-41a9-aabc-2211dc6df2be",
      "html_id" : "HolidayLaughsHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000494_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000494,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000494_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-retrogamer_2zplugin",
      "prog_id" : "Retrogamer_2z.SettingsPlugin",
      "activeX_object" : "Retrogamer_2z.SettingsPlugin",
      "classid" : "725eb385-a788-4f5c-b313-8c215e17e27e",
      "html_id" : "RetrogamerSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2z",
      "toolbandClassid" : "54ba686e-738f-42fe-badd-d8cb7cfbc07e",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000494_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-retrogamer_2zplugin",
      "prog_id" : "Retrogamer_2z.HTMLMenu",
      "activeX_object" : "Retrogamer_2z.HTMLMenu",
      "classid" : "0592ce71-a3c3-4f0b-afa6-b67dffc65f70",
      "html_id" : "RetrogamerHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "200820000_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 200820000,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "200820000_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-dailyjewishguide_18plugin",
      "prog_id" : "DailyJewishGuide_18.SettingsPlugin",
      "activeX_object" : "DailyJewishGuide_18.SettingsPlugin",
      "classid" : "6de274df-9336-4682-ade1-81c0e0a432e6",
      "html_id" : "DailyJewishGuideSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "18",
      "toolbandClassid" : "491ccd85-733d-4a9a-8f47-74f615de7c26",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "200820000_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-dailyjewishguide_18plugin",
      "prog_id" : "DailyJewishGuide_18.HTMLMenu",
      "activeX_object" : "DailyJewishGuide_18.HTMLMenu",
      "classid" : "1ce2aa8f-3ad0-44d9-81dc-2f2b6d26f7f8",
      "html_id" : "DailyJewishGuideHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000545_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000545,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000545_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-tvvie_4gplugin",
      "prog_id" : "TVvie_4g.SettingsPlugin",
      "activeX_object" : "TVvie_4g.SettingsPlugin",
      "classid" : "37c95f22-a8ef-4c20-ab72-a0aa9ae46dbc",
      "html_id" : "TVvieSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4g",
      "toolbandClassid" : "5fc8ff1f-c136-4abb-9a78-9c7cd19d21e2",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000545_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-tvvie_4gplugin",
      "prog_id" : "TVvie_4g.HTMLMenu",
      "activeX_object" : "TVvie_4g.HTMLMenu",
      "classid" : "ffe46f9d-8808-4db4-8740-c4950f7b32e1",
      "html_id" : "TVvieHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "202002465_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 202002465,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "202002465_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-dotspot_2kplugin",
      "prog_id" : "DotSpot_2k.SettingsPlugin",
      "activeX_object" : "DotSpot_2k.SettingsPlugin",
      "classid" : "a07bcb16-91ff-473a-8712-1876964c414e",
      "html_id" : "DotSpotSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2k",
      "toolbandClassid" : "17f24f6d-0284-4a62-a3b7-fca9f2084af4",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "202002465_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-dotspot_2kplugin",
      "prog_id" : "DotSpot_2k.HTMLMenu",
      "activeX_object" : "DotSpot_2k.HTMLMenu",
      "classid" : "0f3163ca-eb01-45c2-b55e-5fae826ca2e2",
      "html_id" : "DotSpotHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "201420310_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 201420310,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "201420310_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-clanwars_21plugin",
      "prog_id" : "ClanWars_21.SettingsPlugin",
      "activeX_object" : "ClanWars_21.SettingsPlugin",
      "classid" : "722ad15f-c725-40bb-8f95-806306cf6e9c",
      "html_id" : "ClanWarsSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "21",
      "toolbandClassid" : "87e664eb-08cf-4d06-ba64-7c281fa2b3ef",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "201420310_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-clanwars_21plugin",
      "prog_id" : "ClanWars_21.HTMLMenu",
      "activeX_object" : "ClanWars_21.HTMLMenu",
      "classid" : "ae4ebfe0-56c0-41cd-bf02-00af5404af61",
      "html_id" : "ClanWarsHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000601_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000601,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000601_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mywebsearch_2oplugin",
      "prog_id" : "MyWebSearch_2o.SettingsPlugin",
      "activeX_object" : "MyWebSearch_2o.SettingsPlugin",
      "classid" : "662709a4-b977-4426-afaf-8e1a04cc364c",
      "html_id" : "ZwinkySettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2o",
      "toolbandClassid" : "273acc18-8165-45ca-9cdf-6e250da24d0f",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000601_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mywebsearch_2oplugin",
      "prog_id" : "MyWebSearch_2o.HTMLMenu",
      "activeX_object" : "MyWebSearch_2o.HTMLMenu",
      "classid" : "9563bde6-52d6-4141-ae2e-63aaaadb35d5",
      "html_id" : "ZwinkyHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "204540489_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 204540489,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "204540489_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-utilitychest_49plugin",
      "prog_id" : "UtilityChest_49.SettingsPlugin",
      "activeX_object" : "UtilityChest_49.SettingsPlugin",
      "classid" : "268ca04c-106c-4636-b707-95e8cd5859e0",
      "html_id" : "UtilityChestSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "49",
      "toolbandClassid" : "cf67755f-9265-449c-87cf-b945519e073b",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "204540489_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-utilitychest_49plugin",
      "prog_id" : "UtilityChest_49.HTMLMenu",
      "activeX_object" : "UtilityChest_49.HTMLMenu",
      "classid" : "25151605-d156-49dd-a659-20e69c1ee15f",
      "html_id" : "UtilityChestHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000448_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000448,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000448_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-inboxaceie_1hplugin",
      "prog_id" : "InboxAceIE_1h.SettingsPlugin",
      "activeX_object" : "InboxAceIE_1h.SettingsPlugin",
      "classid" : "a640e82e-1d37-4c86-99f6-bee70921420c",
      "html_id" : "InboxAceSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1h",
      "toolbandClassid" : "159ca918-4eab-46f6-a80e-72a5d184114b",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000448_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-inboxaceie_1hplugin",
      "prog_id" : "InboxAceIE_1h.HTMLMenu",
      "activeX_object" : "InboxAceIE_1h.HTMLMenu",
      "classid" : "51747a53-c265-47b3-b694-8927d73e6b98",
      "html_id" : "InboxAceHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "202980021_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 202980021,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "202980021_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mapsgalaxy_39plugin",
      "prog_id" : "MapsGalaxy_39.SettingsPlugin",
      "activeX_object" : "MapsGalaxy_39.SettingsPlugin",
      "classid" : "4b7d0b0c-cff3-49c5-9bc3-ffabc031c822",
      "html_id" : "MapsGalaxySettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "39",
      "toolbandClassid" : "364ea597-e728-4ce4-bb4a-ed846ef47970",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "202980021_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mapsgalaxy_39plugin",
      "prog_id" : "MapsGalaxy_39.HTMLMenu",
      "activeX_object" : "MapsGalaxy_39.HTMLMenu",
      "classid" : "3ed5e5ec-0965-4dd3-b7d8-dbc48a1172b9",
      "html_id" : "MapsGalaxyHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000419_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000419,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000419_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-k7-retrogamerplugin",
      "prog_id" : "Retrogamer.SettingsPlugin",
      "activeX_object" : "Retrogamer.SettingsPlugin",
      "classid" : "3d397062-cc5d-4248-b9d7-c9bdcfb1463f",
      "html_id" : "RetrogamerFacebookSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "k7",
      "toolbandClassid" : "779d0683-0351-4790-b30d-71b1863da278",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000419_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-k7-retrogamerplugin",
      "prog_id" : "Retrogamer.HTMLMenu",
      "activeX_object" : "Retrogamer.HTMLMenu",
      "classid" : "a296888d-a25d-44e3-a86f-6f29ce29e670",
      "html_id" : "RetrogamerFacebookHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000507_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000507,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000507_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-iwon_3pplugin",
      "prog_id" : "iWon_3p.SettingsPlugin",
      "activeX_object" : "iWon_3p.SettingsPlugin",
      "classid" : "afea8331-f904-4f59-8559-72eb095f0d68",
      "html_id" : "IWONSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3p",
      "toolbandClassid" : "228d4a48-0340-4cf3-b116-53e6c5ed7d96",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000507_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-iwon_3pplugin",
      "prog_id" : "iWon_3p.HTMLMenu",
      "activeX_object" : "iWon_3p.HTMLMenu",
      "classid" : "52355466-731e-490c-a62e-a6cb9889db52",
      "html_id" : "IWONHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "202000214_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 202000214,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "202000214_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-recipehub_2jplugin",
      "prog_id" : "RecipeHub_2j.SettingsPlugin",
      "activeX_object" : "RecipeHub_2j.SettingsPlugin",
      "classid" : "dc6051b9-dd61-44cb-8ee6-fa28eae44bf9",
      "html_id" : "RecipeHubSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2j",
      "toolbandClassid" : "cf51de5b-eb36-4114-bb69-84df63fbadb4",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "202000214_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-recipehub_2jplugin",
      "prog_id" : "RecipeHub_2j.HTMLMenu",
      "activeX_object" : "RecipeHub_2j.HTMLMenu",
      "classid" : "cb4b8622-cb4a-4c03-8cc1-2b4052f08553",
      "html_id" : "RecipeHubHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000448_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000448,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000448_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-inboxace_1gplugin",
      "prog_id" : "InboxAce_1g.SettingsPlugin",
      "activeX_object" : "InboxAce_1g.SettingsPlugin",
      "classid" : "387abd54-5e83-4e03-b020-6a6e5eafe1f4",
      "html_id" : "InboxAceSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1g",
      "toolbandClassid" : "3775afd7-5921-4571-968f-85a631203d1c",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000448_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-inboxace_1gplugin",
      "prog_id" : "InboxAce_1g.HTMLMenu",
      "activeX_object" : "InboxAce_1g.HTMLMenu",
      "classid" : "a0368956-d0fa-4f97-ba34-0b4ac5331eee",
      "html_id" : "InboxAceHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000415_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000415,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000415_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-64-televisionfanaticplugin",
      "prog_id" : "TelevisionFanatic.SettingsPlugin",
      "activeX_object" : "TelevisionFanatic.SettingsPlugin",
      "classid" : "04d2b915-19ff-41e9-994d-95dc898bea43",
      "html_id" : "TelevisionFanaticSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "64",
      "toolbandClassid" : "c98d5b61-b0ea-4d48-9839-1079d352d880",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000415_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-64-televisionfanaticplugin",
      "prog_id" : "TelevisionFanatic.HTMLMenu",
      "activeX_object" : "TelevisionFanatic.HTMLMenu",
      "classid" : "1d7e63af-274b-426b-b51d-adf161df7f24",
      "html_id" : "TelevisionFanaticHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "200400749_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 200400749,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "200400749_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-translateliteie_0hplugin",
      "prog_id" : "TranslateLiteIE_0h.SettingsPlugin",
      "activeX_object" : "TranslateLiteIE_0h.SettingsPlugin",
      "classid" : "124f23a1-8c40-45d8-8749-144c158f6810",
      "html_id" : "TranslateLiteSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "0h",
      "toolbandClassid" : "e21af9d7-2580-4d16-a71d-10b451f44bd0",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "200400749_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-translateliteie_0hplugin",
      "prog_id" : "TranslateLiteIE_0h.HTMLMenu",
      "activeX_object" : "TranslateLiteIE_0h.HTMLMenu",
      "classid" : "6afa05eb-997b-4f0b-84fd-e95528377559",
      "html_id" : "TranslateLiteHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000489_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000489,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000489_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-x5-televisionfanaticieplugin",
      "prog_id" : "TelevisionFanaticIE.SettingsPlugin",
      "activeX_object" : "TelevisionFanaticIE.SettingsPlugin",
      "classid" : "4a61e89b-2d72-45dd-8f51-9e24c78da72a",
      "html_id" : "TelevisionFanaticSafariSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "x5",
      "toolbandClassid" : "c38bf6de-71c2-4dba-b603-a078322bb2e2",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000489_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-x5-televisionfanaticieplugin",
      "prog_id" : "TelevisionFanaticIE.HTMLMenu",
      "activeX_object" : "TelevisionFanaticIE.HTMLMenu",
      "classid" : "f0b66a72-9bdd-4afe-8d55-af77df9e7a32",
      "html_id" : "TelevisionFanaticSafariHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "205320984_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 205320984,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "205320984_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bibletriviatime_4lplugin",
      "prog_id" : "BibleTriviaTime_4l.SettingsPlugin",
      "activeX_object" : "BibleTriviaTime_4l.SettingsPlugin",
      "classid" : "fe25059a-395a-4541-a820-510a590a8663",
      "html_id" : "KnowtheBibleSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4l",
      "toolbandClassid" : "7abeab51-07be-42c5-89b4-c7f1a3a31816",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "205320984_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bibletriviatime_4lplugin",
      "prog_id" : "BibleTriviaTime_4l.HTMLMenu",
      "activeX_object" : "BibleTriviaTime_4l.HTMLMenu",
      "classid" : "bc86461b-908b-4f12-8cad-1aa9d9717c50",
      "html_id" : "KnowtheBibleHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "201420310_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 201420310,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "201420310_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-clanwars_21plugin",
      "prog_id" : "ClanWars_21.SettingsPlugin",
      "activeX_object" : "ClanWars_21.SettingsPlugin",
      "classid" : "722ad15f-c725-40bb-8f95-806306cf6e9c",
      "html_id" : "ClanWarsSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "21",
      "toolbandClassid" : "87e664eb-08cf-4d06-ba64-7c281fa2b3ef",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "201420310_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-clanwars_21plugin",
      "prog_id" : "ClanWars_21.HTMLMenu",
      "activeX_object" : "ClanWars_21.HTMLMenu",
      "classid" : "ae4ebfe0-56c0-41cd-bf02-00af5404af61",
      "html_id" : "ClanWarsHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "206582318_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 206582318,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "206582318_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-webfetti_52plugin",
      "prog_id" : "Webfetti_52.SettingsPlugin",
      "activeX_object" : "Webfetti_52.SettingsPlugin",
      "classid" : "df13a59d-2c40-4c06-b099-0e12e04c34f7",
      "html_id" : "WebfettiSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "52",
      "toolbandClassid" : "d499ff20-fc53-4ef0-a2a8-b30d8276cbcc",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "206582318_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-webfetti_52plugin",
      "prog_id" : "Webfetti_52.HTMLMenu",
      "activeX_object" : "Webfetti_52.HTMLMenu",
      "classid" : "21120e41-1c8f-4a29-9af5-a48d7b5719ce",
      "html_id" : "WebfettiHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000526_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000526,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000526_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mmainmotion_3mplugin",
      "prog_id" : "MMAinMotion_3m.SettingsPlugin",
      "activeX_object" : "MMAinMotion_3m.SettingsPlugin",
      "classid" : "de20d4f4-04a7-42fc-84f7-c8bc9ebd170d",
      "html_id" : "MMAinMotionSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3m",
      "toolbandClassid" : "2276b36b-5661-4a30-9057-6dcaf592d05e",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000526_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mmainmotion_3mplugin",
      "prog_id" : "MMAinMotion_3m.HTMLMenu",
      "activeX_object" : "MMAinMotion_3m.HTMLMenu",
      "classid" : "79df866f-526b-4f1a-8f17-53a16317b524",
      "html_id" : "MMAinMotionHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "201221175_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 201221175,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "201221175_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-uplayer_1oplugin",
      "prog_id" : "uPlayer_1o.SettingsPlugin",
      "activeX_object" : "uPlayer_1o.SettingsPlugin",
      "classid" : "a55d5cee-a73d-4af4-9f42-db885f7b85c3",
      "html_id" : "uPlayerSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1o",
      "toolbandClassid" : "b7cfe315-e504-4acf-81a4-ad18f1a57404",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "201221175_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-uplayer_1oplugin",
      "prog_id" : "uPlayer_1o.HTMLMenu",
      "activeX_object" : "uPlayer_1o.HTMLMenu",
      "classid" : "f365e999-d8c4-4423-b10e-1c77c8c79785",
      "html_id" : "uPlayerHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000524_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000524,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000524_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-crazyforcricket_3kplugin",
      "prog_id" : "CrazyForCricket_3k.SettingsPlugin",
      "activeX_object" : "CrazyForCricket_3k.SettingsPlugin",
      "classid" : "60e2a9ce-e831-43b9-bf8a-bfc0e91919c0",
      "html_id" : "CrazyForCricketSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3k",
      "toolbandClassid" : "9ddabb0a-cdcc-4cc6-ab2d-356099308433",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000524_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-crazyforcricket_3kplugin",
      "prog_id" : "CrazyForCricket_3k.HTMLMenu",
      "activeX_object" : "CrazyForCricket_3k.HTMLMenu",
      "classid" : "32c37dff-ce7a-4734-86f0-ff6078aebe19",
      "html_id" : "CrazyForCricketHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000535_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000535,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000535_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-astrology_4aplugin",
      "prog_id" : "Astrology_4a.SettingsPlugin",
      "activeX_object" : "Astrology_4a.SettingsPlugin",
      "classid" : "ed2a6fea-bbbb-4c47-a650-b91229645b1f",
      "html_id" : "AstrologySettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4a",
      "toolbandClassid" : "ea184a40-b71a-4aa7-b3be-596349038fa0",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000535_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-astrology_4aplugin",
      "prog_id" : "Astrology_4a.HTMLMenu",
      "activeX_object" : "Astrology_4a.HTMLMenu",
      "classid" : "58e70e22-730a-416b-b3d6-43f39eeaaa4c",
      "html_id" : "AstrologyHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "201140006_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 201140006,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "201140006_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-smileycentral_34plugin",
      "prog_id" : "SmileyCentral_34.SettingsPlugin",
      "activeX_object" : "SmileyCentral_34.SettingsPlugin",
      "classid" : "102c151a-e6c5-487e-a347-3b5ad5b1ccc9",
      "html_id" : "SmileyCentralSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "34",
      "toolbandClassid" : "4babac09-4562-413f-a07b-a4c25b037882",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "201140006_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-smileycentral_34plugin",
      "prog_id" : "SmileyCentral_34.HTMLMenu",
      "activeX_object" : "SmileyCentral_34.HTMLMenu",
      "classid" : "821ebeb6-ee47-4736-824b-8551e50e75d3",
      "html_id" : "SmileyCentralHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000459_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000459,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000459_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-totalrecipesearch_14plugin",
      "prog_id" : "TotalRecipeSearch_14.SettingsPlugin",
      "activeX_object" : "TotalRecipeSearch_14.SettingsPlugin",
      "classid" : "e8106344-16d4-41d1-9a2a-0521a59199ea",
      "html_id" : "TotalRecipeSearchSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "14",
      "toolbandClassid" : "a0154e07-2b48-475c-a82a-80efd84ea33e",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000459_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-totalrecipesearch_14plugin",
      "prog_id" : "TotalRecipeSearch_14.HTMLMenu",
      "activeX_object" : "TotalRecipeSearch_14.HTMLMenu",
      "classid" : "a4503ec3-1111-4b62-8f46-0d88508f8a7b",
      "html_id" : "TotalRecipeSearchHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "201220870_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 201220870,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "201220870_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-playfin_1tplugin",
      "prog_id" : "Playfin_1t.SettingsPlugin",
      "activeX_object" : "Playfin_1t.SettingsPlugin",
      "classid" : "f01f30f1-81a3-4417-8858-72964bae2919",
      "html_id" : "PlayfinSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1t",
      "toolbandClassid" : "d30bc29f-19f6-40b3-a91f-d4707048ade6",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "201220870_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-playfin_1tplugin",
      "prog_id" : "Playfin_1t.HTMLMenu",
      "activeX_object" : "Playfin_1t.HTMLMenu",
      "classid" : "b5b8d7f5-e93e-4510-b260-e1da10c09b12",
      "html_id" : "PlayfinHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000422_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000422,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000422_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-2v-dailybibleguideplugin",
      "prog_id" : "DailyBibleGuide.SettingsPlugin",
      "activeX_object" : "DailyBibleGuide.SettingsPlugin",
      "classid" : "99d03de2-28ac-444c-b78e-7d0a2a8fc328",
      "html_id" : "DailyBibleGuideSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2v",
      "toolbandClassid" : "2a942ab7-2073-49bc-a7e1-77e93835889a",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000422_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-2v-dailybibleguideplugin",
      "prog_id" : "DailyBibleGuide.HTMLMenu",
      "activeX_object" : "DailyBibleGuide.HTMLMenu",
      "classid" : "602b774d-b1c7-493d-a64c-ed423af7132f",
      "html_id" : "DailyBibleGuideHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "205560572_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 205560572,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "205560572_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-gamingassassin_4splugin",
      "prog_id" : "GamingAssassin_4s.SettingsPlugin",
      "activeX_object" : "GamingAssassin_4s.SettingsPlugin",
      "classid" : "0259fb21-c6e2-466b-a625-040f78458ca6",
      "html_id" : "GamingAssassinSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4s",
      "toolbandClassid" : "92a33663-79aa-4df4-b801-43e1e6d3ed3b",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "205560572_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-gamingassassin_4splugin",
      "prog_id" : "GamingAssassin_4s.HTMLMenu",
      "activeX_object" : "GamingAssassin_4s.HTMLMenu",
      "classid" : "cf10bf23-cf0f-4682-8cc2-e0af3799ca05",
      "html_id" : "GamingAssassinHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000457_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000457,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000457_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-videoscavengerie_1fplugin",
      "prog_id" : "VideoScavengerIE_1f.SettingsPlugin",
      "activeX_object" : "VideoScavengerIE_1f.SettingsPlugin",
      "classid" : "d7d4712e-5aae-45a2-9b2f-e8b9d75a43c2",
      "html_id" : "VideoScavengerSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1f",
      "toolbandClassid" : "9e6dc562-824b-46aa-8961-1ef09803d840",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000457_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-videoscavengerie_1fplugin",
      "prog_id" : "VideoScavengerIE_1f.HTMLMenu",
      "activeX_object" : "VideoScavengerIE_1f.HTMLMenu",
      "classid" : "36d6c2f2-9c7f-417f-8eb0-c014bb8082db",
      "html_id" : "VideoScavengerHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "204800921_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 204800921,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "204800921_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-quotationcafe_45plugin",
      "prog_id" : "QuotationCafe_45.SettingsPlugin",
      "activeX_object" : "QuotationCafe_45.SettingsPlugin",
      "classid" : "3b069953-cf59-4926-9d28-a4589c462859",
      "html_id" : "QuotationCafeSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "45",
      "toolbandClassid" : "99bced2f-1db3-4ecd-8e35-8906428a6cfe",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "204800921_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-quotationcafe_45plugin",
      "prog_id" : "QuotationCafe_45.HTMLMenu",
      "activeX_object" : "QuotationCafe_45.HTMLMenu",
      "classid" : "ca98876e-bbeb-41bb-ad8a-972f1c7b4706",
      "html_id" : "QuotationCafeHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "202002465_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 202002465,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "202002465_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-dotspot_2kplugin",
      "prog_id" : "DotSpot_2k.SettingsPlugin",
      "activeX_object" : "DotSpot_2k.SettingsPlugin",
      "classid" : "a07bcb16-91ff-473a-8712-1876964c414e",
      "html_id" : "DotSpotSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2k",
      "toolbandClassid" : "17f24f6d-0284-4a62-a3b7-fca9f2084af4",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "202002465_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-dotspot_2kplugin",
      "prog_id" : "DotSpot_2k.HTMLMenu",
      "activeX_object" : "DotSpot_2k.HTMLMenu",
      "classid" : "0f3163ca-eb01-45c2-b55e-5fae826ca2e2",
      "html_id" : "DotSpotHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "205320984_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 205320984,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "205320984_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bibletriviatime_4lplugin",
      "prog_id" : "BibleTriviaTime_4l.SettingsPlugin",
      "activeX_object" : "BibleTriviaTime_4l.SettingsPlugin",
      "classid" : "fe25059a-395a-4541-a820-510a590a8663",
      "html_id" : "KnowtheBibleSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4l",
      "toolbandClassid" : "7abeab51-07be-42c5-89b4-c7f1a3a31816",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "205320984_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bibletriviatime_4lplugin",
      "prog_id" : "BibleTriviaTime_4l.HTMLMenu",
      "activeX_object" : "BibleTriviaTime_4l.HTMLMenu",
      "classid" : "bc86461b-908b-4f12-8cad-1aa9d9717c50",
      "html_id" : "KnowtheBibleHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000418_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000418,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000418_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-7d-webfettiplugin",
      "prog_id" : "Webfetti.SettingsPlugin",
      "activeX_object" : "Webfetti.SettingsPlugin",
      "classid" : "438b5c1d-0e9e-4548-a2e1-3ea0b9daa937",
      "html_id" : "WebfettiFacebookSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "7d",
      "toolbandClassid" : "da9315e7-514d-4f86-9c8c-39a5b7107d48",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000418_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-7d-webfettiplugin",
      "prog_id" : "Webfetti.HTMLMenu",
      "activeX_object" : "Webfetti.HTMLMenu",
      "classid" : "6822088b-6b67-4a76-bbe4-e292e335e323",
      "html_id" : "WebfettiFacebookHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000430_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000430,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000430_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-ka-celebsauceplugin",
      "prog_id" : "CelebSauce.SettingsPlugin",
      "activeX_object" : "CelebSauce.SettingsPlugin",
      "classid" : "eb358b58-deb0-4dfa-b31a-98e73e0a973b",
      "html_id" : "CelebSauceSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "ka",
      "toolbandClassid" : "1558273e-0e2b-49c8-b7bd-24b26e5e4262",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000430_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-ka-celebsauceplugin",
      "prog_id" : "CelebSauce.HTMLMenu",
      "activeX_object" : "CelebSauce.HTMLMenu",
      "classid" : "4a595cd9-95f3-4f86-8f47-52d6b4074aaa",
      "html_id" : "CelebSauceHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "207040002_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 207040002,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "207040002_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-petsharmony_5bplugin",
      "prog_id" : "PetsHarmony_5b.SettingsPlugin",
      "activeX_object" : "PetsHarmony_5b.SettingsPlugin",
      "classid" : "743f7e3d-fa49-49c1-91b9-f76b2fbceb31",
      "html_id" : "PetsHarmonySettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "5b",
      "toolbandClassid" : "dc257d0d-f11b-4312-bb34-ee22ea4ba68a",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "207040002_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-petsharmony_5bplugin",
      "prog_id" : "PetsHarmony_5b.HTMLMenu",
      "activeX_object" : "PetsHarmony_5b.HTMLMenu",
      "classid" : "923f3e68-b6bc-4070-b276-8e8c70141e58",
      "html_id" : "PetsHarmonyHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "205320663_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 205320663,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "205320663_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-christmasholidaylaughs_4mplugin",
      "prog_id" : "ChristmasHolidayLaughs_4m.SettingsPlugin",
      "activeX_object" : "ChristmasHolidayLaughs_4m.SettingsPlugin",
      "classid" : "98e87aa2-32b0-4746-9840-7616be9ad1e1",
      "html_id" : "ChristmasHolidayLaughsSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4m",
      "toolbandClassid" : "31063c67-aa37-4949-a652-66368f707bb3",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "205320663_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-christmasholidaylaughs_4mplugin",
      "prog_id" : "ChristmasHolidayLaughs_4m.HTMLMenu",
      "activeX_object" : "ChristmasHolidayLaughs_4m.HTMLMenu",
      "classid" : "d8fa12aa-184f-4dea-b519-e27a99177b75",
      "html_id" : "ChristmasHolidayLaughsHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000428_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000428,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000428_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-pa-filmfanaticplugin",
      "prog_id" : "FilmFanatic.SettingsPlugin",
      "activeX_object" : "FilmFanatic.SettingsPlugin",
      "classid" : "4c2743f0-a2e2-41a0-9e65-798943109f42",
      "html_id" : "FilmFanaticSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "pa",
      "toolbandClassid" : "0b84b4b4-8af8-4f1f-91fe-074a666f6425",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000428_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-pa-filmfanaticplugin",
      "prog_id" : "FilmFanatic.HTMLMenu",
      "activeX_object" : "FilmFanatic.HTMLMenu",
      "classid" : "37a2255c-d173-4b54-a455-13de1dda9f44",
      "html_id" : "FilmFanaticHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000506_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000506,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000506_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-webfetti_3bplugin",
      "prog_id" : "Webfetti_3b.SettingsPlugin",
      "activeX_object" : "Webfetti_3b.SettingsPlugin",
      "classid" : "125757e1-bca0-48fb-92fd-0d5b00872f54",
      "html_id" : "WebfettiSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3b",
      "toolbandClassid" : "66857ad6-fec7-49c4-ad79-6bf96cc0a365",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000506_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-webfetti_3bplugin",
      "prog_id" : "Webfetti_3b.HTMLMenu",
      "activeX_object" : "Webfetti_3b.HTMLMenu",
      "classid" : "32af29c6-c6b2-4a59-8602-7325f70d0b3e",
      "html_id" : "WebfettiHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "203320254_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 203320254,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "203320254_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bringmesportsrugby_3eplugin",
      "prog_id" : "BringMeSportsRugby_3e.SettingsPlugin",
      "activeX_object" : "BringMeSportsRugby_3e.SettingsPlugin",
      "classid" : "e8b2cb46-bcc1-4b9c-b1ba-033936ca16e2",
      "html_id" : "BringMeSportsRugbySettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3e",
      "toolbandClassid" : "93ba951f-1216-4cd5-be90-89123d18af4c",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "203320254_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bringmesportsrugby_3eplugin",
      "prog_id" : "BringMeSportsRugby_3e.HTMLMenu",
      "activeX_object" : "BringMeSportsRugby_3e.HTMLMenu",
      "classid" : "0a7bbe7b-7c30-4d88-8d7d-6a43fdc699c5",
      "html_id" : "BringMeSportsRugbyHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000425_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000425,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000425_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-gt-gamingwonderlandplugin",
      "prog_id" : "GamingWonderland.SettingsPlugin",
      "activeX_object" : "GamingWonderland.SettingsPlugin",
      "classid" : "08fbcb5f-de4f-49e0-977e-e4269f4d7206",
      "html_id" : "GamingWonderlandSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "gt",
      "toolbandClassid" : "a899079d-206f-43a6-be6a-07e0fa648ea0",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000425_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-gt-gamingwonderlandplugin",
      "prog_id" : "GamingWonderland.HTMLMenu",
      "activeX_object" : "GamingWonderland.HTMLMenu",
      "classid" : "26a73c38-b71a-4d3a-80b7-e010420da1e7",
      "html_id" : "GamingWonderlandHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "202820547_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 202820547,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "202820547_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-seconddomain_35plugin",
      "prog_id" : "SecondDomain_35.SettingsPlugin",
      "activeX_object" : "SecondDomain_35.SettingsPlugin",
      "classid" : "1642997d-6a3b-42b0-84b4-d066f7165f1d",
      "html_id" : "SecondDomainSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "35",
      "toolbandClassid" : "02734475-8fdc-47b8-b534-665a74fe8107",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "202820547_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-seconddomain_35plugin",
      "prog_id" : "SecondDomain_35.HTMLMenu",
      "activeX_object" : "SecondDomain_35.HTMLMenu",
      "classid" : "be8f561f-0558-41ba-bdba-67549e8b8fbc",
      "html_id" : "SecondDomainHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000393_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000393,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000393_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-jf-iwonplugin",
      "prog_id" : "iWon.SettingsPlugin",
      "activeX_object" : "iWon.SettingsPlugin",
      "classid" : "c94072e9-9edf-423f-b8ca-a4c95bbd15d7",
      "html_id" : "IWONFacebookSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "jf",
      "toolbandClassid" : "8ff0d967-9ff2-47ae-9794-a22fcae4f485",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000393_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-jf-iwonplugin",
      "prog_id" : "iWon.HTMLMenu",
      "activeX_object" : "iWon.HTMLMenu",
      "classid" : "c70efa5e-5f49-4c4f-8459-d15f47d4802e",
      "html_id" : "IWONFacebookHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "203040006_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 203040006,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "203040006_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-chimpoo_3aplugin",
      "prog_id" : "Chimpoo_3a.SettingsPlugin",
      "activeX_object" : "Chimpoo_3a.SettingsPlugin",
      "classid" : "c59074a9-b755-4abc-b0c5-dd96f18aea97",
      "html_id" : "ChimpooSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3a",
      "toolbandClassid" : "5b010b98-98f5-4faf-bdc5-f24746d465ce",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "203040006_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-chimpoo_3aplugin",
      "prog_id" : "Chimpoo_3a.HTMLMenu",
      "activeX_object" : "Chimpoo_3a.HTMLMenu",
      "classid" : "6e229f6a-b2b1-49de-b8ce-0d120e40f198",
      "html_id" : "ChimpooHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000509_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000509,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "100000509_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-kazulah_3tplugin",
      "prog_id" : "Kazulah_3t.SettingsPlugin",
      "activeX_object" : "Kazulah_3t.SettingsPlugin",
      "classid" : "629ada34-a34e-4909-bf75-b2c8cb8f9617",
      "html_id" : "KazulahSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3t",
      "toolbandClassid" : "9605b458-a813-4971-b5a7-0d17768c016d",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "100000509_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-kazulah_3tplugin",
      "prog_id" : "Kazulah_3t.HTMLMenu",
      "activeX_object" : "Kazulah_3t.HTMLMenu",
      "classid" : "15f86212-7a9b-45d2-bfcb-ec03d104ee51",
      "html_id" : "KazulahHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000414_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000414,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000414_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-v4-dictionarybossplugin",
      "prog_id" : "DictionaryBoss.SettingsPlugin",
      "activeX_object" : "DictionaryBoss.SettingsPlugin",
      "classid" : "8eb0aaa0-2ffe-4326-8331-efe2d5d15ec7",
      "html_id" : "DictionaryBossSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "v4",
      "toolbandClassid" : "3042df7a-e900-4389-9b94-923df0daa57e",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000414_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-v4-dictionarybossplugin",
      "prog_id" : "DictionaryBoss.HTMLMenu",
      "activeX_object" : "DictionaryBoss.HTMLMenu",
      "classid" : "f9a402fd-82c8-4743-991e-bc77e62da0e5",
      "html_id" : "DictionaryBossHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "mws" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 1,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000000,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000334,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000336,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000337,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000338,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000339,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000340,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000341,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000342,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000343,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000344,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000345,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000346,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000347,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000348,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000349,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000362,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000374,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000375,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000377,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000379,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000383,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000504,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000506,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000507,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000508,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000509,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000510,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000511,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 100000601,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 201100000,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 201140006,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 4,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      }, {
        "id" : 99999994,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "toolbar" : "mws",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mws-mywebsearchplugin",
      "prog_id" : "MyWebSearchToolBar.SettingsPlugin",
      "activeX_object" : "MyWebSearchToolBar.SettingsPlugin",
      "classid" : "07B18EAB-A523-4961-B6BB-170DE4475CCA",
      "html_id" : "ToolbarCtlMWS",
      "min_version" : "",
      "max_version" : "2.3.70.1",
      "required_version" : "2.0.4.16",
      "toolbandClassid" : "07B18EA9-A523-4961-B6BB-170DE4475CCA",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "toolbar" : "mws",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mws-mywebsearchplugin",
      "prog_id" : "FunWebProducts.HTMLMenu.2",
      "activeX_object" : "MyWebSearchToolBar.SettingsPlugin",
      "classid" : "3DC201FB-E9C9-499C-A11F-23C360D7C3F8",
      "html_id" : "HTMLMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.70.1",
      "required_version" : "2.0.4.16",
      "params" : {
      }
    },
    "ctl" : "settingsCtl",
    "screenSaverCtl" : {
      "toolbar" : "mws",
      "name" : "screenSaverCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mws-mywebsearchplugin",
      "prog_id" : "ScreenSaverControl.ScreenSaverInstaller",
      "activeX_object" : "ScreenSaverControl.ScreenSaverInstaller",
      "classid" : "9FF05104-B030-46FC-94B8-81276E4E27DF",
      "html_id" : "ScreenSaverInstaller",
      "min_version" : "",
      "max_version" : "2.3.70.1",
      "required_version" : "2.0.4.16",
      "params" : {
        "PM" : "efkfpetrqjgksgnteltlofgnoiiiiqkngkmimlfhsnfeogokhehfhghhhihjhkhlhmhnifigihiiijik",
        "L" : "psnllmmrkrgosmekokerjsohgneknhpehjfhpnlqsqgnokhohehfhghhhihjhkhlhmhnifigihiiijik"
      }
    },
    "dataCtl" : {
      "toolbar" : "mws",
      "name" : "dataCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mws-mywebsearchplugin",
      "prog_id" : "FunWebProducts.DataControl",
      "activeX_object" : "FunWebProducts.DataControl",
      "classid" : "25560540-9571-4D7B-9389-0F166788785A",
      "html_id" : "DataControl",
      "min_version" : "",
      "max_version" : "2.3.70.1",
      "required_version" : "2.0.4.16",
      "params" : {
      }
    },
    "chatCtl" : {
      "toolbar" : "mws",
      "name" : "chatCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "",
      "prog_id" : "",
      "activeX_object" : "",
      "classid" : "E79DFBCA-5697-4fbd-94E5-5B2A9C7C1612",
      "html_id" : "chatcontrol",
      "min_version" : "",
      "max_version" : "2.3.50.45",
      "required_version" : "2.0.4.16",
      "params" : {
        "Category" : "Chat",
        "Capabilities" : "0x14",
        "SignOutDelay" : "10"
      }
    },
    "xpi" : {
      "toolbar" : "mws",
      "name" : "xpi",
      "exe" : false,
      "xpi" : true,
      "min_version" : "",
      "max_version" : "1.3",
      "required_version" : "1.0",
      "element" : "tsox_ver_el"
    }
  },
  "100000469_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000469,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000469_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-smileycentral_1vplugin",
      "prog_id" : "SmileyCentral_1v.SettingsPlugin",
      "activeX_object" : "SmileyCentral_1v.SettingsPlugin",
      "classid" : "6a2c7b59-76ca-415b-83fb-8d89932a6b37",
      "html_id" : "SmileyFacebookSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1v",
      "toolbandClassid" : "32014f65-8c22-49ad-899b-475549e3e596",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000469_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-smileycentral_1vplugin",
      "prog_id" : "SmileyCentral_1v.HTMLMenu",
      "activeX_object" : "SmileyCentral_1v.HTMLMenu",
      "classid" : "62db1239-0df3-4ad7-9313-317682b4ac78",
      "html_id" : "SmileyFacebookHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "200400749_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 200400749,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "200400749_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-translatelite_0gplugin",
      "prog_id" : "TranslateLite_0g.SettingsPlugin",
      "activeX_object" : "TranslateLite_0g.SettingsPlugin",
      "classid" : "659171b5-d8aa-4cdd-863c-1abebfc380d2",
      "html_id" : "TranslateLiteSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "0g",
      "toolbandClassid" : "8c068c2f-44c4-4a88-a18e-b1a612803bb5",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "200400749_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-translatelite_0gplugin",
      "prog_id" : "TranslateLite_0g.HTMLMenu",
      "activeX_object" : "TranslateLite_0g.HTMLMenu",
      "classid" : "bada09e6-824b-433a-ac80-dea453e32c53",
      "html_id" : "TranslateLiteHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000508_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000508,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000508_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-iwongie_3splugin",
      "prog_id" : "iWonGIE_3s.SettingsPlugin",
      "activeX_object" : "iWonGIE_3s.SettingsPlugin",
      "classid" : "ccda4b1c-839f-4a54-bc1c-5563426baed9",
      "html_id" : "IWONGlobalSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3s",
      "toolbandClassid" : "c1b10265-dc7a-4ec4-a1c4-32edcf4ac3c2",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000508_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-iwongie_3splugin",
      "prog_id" : "iWonGIE_3s.HTMLMenu",
      "activeX_object" : "iWonGIE_3s.HTMLMenu",
      "classid" : "8ad86215-7b77-452c-b054-99573d9661d4",
      "html_id" : "IWONGlobalHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000466_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000466,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000466_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-dailydollarguideie_1splugin",
      "prog_id" : "DailyDollarGuideIE_1s.SettingsPlugin",
      "activeX_object" : "DailyDollarGuideIE_1s.SettingsPlugin",
      "classid" : "957524d5-9d64-42db-b020-7c94dbb0cc5b",
      "html_id" : "DailyDollarGuideSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1s",
      "toolbandClassid" : "e0b9466a-0b58-427e-8d3f-a4e99400dc99",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000466_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-dailydollarguideie_1splugin",
      "prog_id" : "DailyDollarGuideIE_1s.HTMLMenu",
      "activeX_object" : "DailyDollarGuideIE_1s.HTMLMenu",
      "classid" : "8508c318-09d9-41aa-811f-5f5d9e521c6f",
      "html_id" : "DailyDollarGuideHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000510_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000510,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000510_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mywebface_3xplugin",
      "prog_id" : "myWebFace_3x.SettingsPlugin",
      "activeX_object" : "myWebFace_3x.SettingsPlugin",
      "classid" : "b2f72f74-ae62-4789-bf62-518190157a4b",
      "html_id" : "MyWebFaceSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3x",
      "toolbandClassid" : "c64c86b3-1993-4513-87f1-2aaac07ec83b",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000510_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mywebface_3xplugin",
      "prog_id" : "myWebFace_3x.HTMLMenu",
      "activeX_object" : "myWebFace_3x.HTMLMenu",
      "classid" : "61678311-d9ea-41e5-b989-9de762d6bf84",
      "html_id" : "MyWebFaceHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000535_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000535,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000535_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-astrologyie_4bplugin",
      "prog_id" : "AstrologyIE_4b.SettingsPlugin",
      "activeX_object" : "AstrologyIE_4b.SettingsPlugin",
      "classid" : "b3afa453-276f-4e3b-91bc-d2f52607e889",
      "html_id" : "AstrologySettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4b",
      "toolbandClassid" : "3bf06801-b7c5-4c6c-b203-2f44d639b62e",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000535_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-astrologyie_4bplugin",
      "prog_id" : "AstrologyIE_4b.HTMLMenu",
      "activeX_object" : "AstrologyIE_4b.HTMLMenu",
      "classid" : "eaaee0d8-c523-4381-b401-98234167a832",
      "html_id" : "AstrologyHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "206140027_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 206140027,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "206140027_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-retrogamer_4wplugin",
      "prog_id" : "Retrogamer_4w.SettingsPlugin",
      "activeX_object" : "Retrogamer_4w.SettingsPlugin",
      "classid" : "a13cc898-9ca9-4578-9629-b328422ff014",
      "html_id" : "RetrogamerSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4w",
      "toolbandClassid" : "3392cfec-56f8-41ee-bdb4-4e301efd2c93",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "206140027_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-retrogamer_4wplugin",
      "prog_id" : "Retrogamer_4w.HTMLMenu",
      "activeX_object" : "Retrogamer_4w.HTMLMenu",
      "classid" : "fbc56fef-b890-414e-9ed6-0909e5075291",
      "html_id" : "RetrogamerHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "202120498_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 202120498,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "202120498_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-timesofindia_2rplugin",
      "prog_id" : "TimesofIndia_2r.SettingsPlugin",
      "activeX_object" : "TimesofIndia_2r.SettingsPlugin",
      "classid" : "b89d0e8a-61f6-4ce9-bd43-84ec86d4bc8c",
      "html_id" : "TimesofIndiaSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2r",
      "toolbandClassid" : "c7b65ba1-339d-4327-81ab-1b4e03d80a50",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "202120498_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-timesofindia_2rplugin",
      "prog_id" : "TimesofIndia_2r.HTMLMenu",
      "activeX_object" : "TimesofIndia_2r.HTMLMenu",
      "classid" : "4c58dbed-6822-405d-95eb-5a1c34573fb1",
      "html_id" : "TimesofIndiaHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "202540009_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 202540009,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "202540009_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bringmesportstennis_2tplugin",
      "prog_id" : "bringmesportstennis_2t.SettingsPlugin",
      "activeX_object" : "bringmesportstennis_2t.SettingsPlugin",
      "classid" : "f4025e25-12ba-486d-9b23-dda386fb0065",
      "html_id" : "BringMeSportsTennisSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2t",
      "toolbandClassid" : "3e4bc2c4-d202-4bcb-a326-9efd5160ef9b",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "202540009_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-bringmesportstennis_2tplugin",
      "prog_id" : "bringmesportstennis_2t.HTMLMenu",
      "activeX_object" : "bringmesportstennis_2t.HTMLMenu",
      "classid" : "ed6f251d-9569-4300-88d5-23a3ab1e0ae5",
      "html_id" : "BringMeSportsTennisHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "205560572_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 205560572,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "205560572_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-gamingassassin_4splugin",
      "prog_id" : "GamingAssassin_4s.SettingsPlugin",
      "activeX_object" : "GamingAssassin_4s.SettingsPlugin",
      "classid" : "0259fb21-c6e2-466b-a625-040f78458ca6",
      "html_id" : "GamingAssassinSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "4s",
      "toolbandClassid" : "92a33663-79aa-4df4-b801-43e1e6d3ed3b",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "205560572_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-gamingassassin_4splugin",
      "prog_id" : "GamingAssassin_4s.HTMLMenu",
      "activeX_object" : "GamingAssassin_4s.HTMLMenu",
      "classid" : "cf10bf23-cf0f-4682-8cc2-e0af3799ca05",
      "html_id" : "GamingAssassinHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000426_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000426,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000426_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-c8-myfuncardsbarieplugin",
      "prog_id" : "MyFunCardsbarIE.SettingsPlugin",
      "activeX_object" : "MyFunCardsbarIE.SettingsPlugin",
      "classid" : "fc1857f0-7f42-4206-b939-1f65daa8d547",
      "html_id" : "MyFunCardsFacebookSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "c8",
      "toolbandClassid" : "4b3b7746-935c-48e9-95cd-a855419cdef0",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000426_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-c8-myfuncardsbarieplugin",
      "prog_id" : "MyFunCardsbarIE.HTMLMenu",
      "activeX_object" : "MyFunCardsbarIE.HTMLMenu",
      "classid" : "87023b86-7511-4ce2-b5f9-0dc038b82597",
      "html_id" : "MyFunCardsFacebookHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000494_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000494,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000494_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-retrogamer_2zplugin",
      "prog_id" : "Retrogamer_2z.SettingsPlugin",
      "activeX_object" : "Retrogamer_2z.SettingsPlugin",
      "classid" : "725eb385-a788-4f5c-b313-8c215e17e27e",
      "html_id" : "RetrogamerSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2z",
      "toolbandClassid" : "54ba686e-738f-42fe-badd-d8cb7cfbc07e",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000494_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-retrogamer_2zplugin",
      "prog_id" : "Retrogamer_2z.HTMLMenu",
      "activeX_object" : "Retrogamer_2z.HTMLMenu",
      "classid" : "0592ce71-a3c3-4f0b-afa6-b67dffc65f70",
      "html_id" : "RetrogamerHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000442_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000442,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000442_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-u4-guffinsplugin",
      "prog_id" : "Guffins.SettingsPlugin",
      "activeX_object" : "Guffins.SettingsPlugin",
      "classid" : "f8f03266-dec7-4f5c-a6d3-d88533ee9070",
      "html_id" : "GuffinsSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "u4",
      "toolbandClassid" : "de2fdf7c-2637-4ba3-b427-3fce2d331db5",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000442_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-u4-guffinsplugin",
      "prog_id" : "Guffins.HTMLMenu",
      "activeX_object" : "Guffins.HTMLMenu",
      "classid" : "1d69e858-32d5-4888-a395-579c8124112b",
      "html_id" : "GuffinsHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "201221175_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 201221175,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "201221175_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-uplayer_1oplugin",
      "prog_id" : "uPlayer_1o.SettingsPlugin",
      "activeX_object" : "uPlayer_1o.SettingsPlugin",
      "classid" : "a55d5cee-a73d-4af4-9f42-db885f7b85c3",
      "html_id" : "uPlayerSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1o",
      "toolbandClassid" : "b7cfe315-e504-4acf-81a4-ad18f1a57404",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "201221175_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-uplayer_1oplugin",
      "prog_id" : "uPlayer_1o.HTMLMenu",
      "activeX_object" : "uPlayer_1o.HTMLMenu",
      "classid" : "f365e999-d8c4-4423-b10e-1c77c8c79785",
      "html_id" : "uPlayerHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000441_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000441,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000441_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-pg-fantasyfootballbossplugin",
      "prog_id" : "FantasyFootballBoss.SettingsPlugin",
      "activeX_object" : "FantasyFootballBoss.SettingsPlugin",
      "classid" : "cdbbe93c-dcaf-4def-91c5-5f3265b5cda8",
      "html_id" : "FantasyFootballBossSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "pg",
      "toolbandClassid" : "7d216e01-5ac0-4268-b014-7c35c769b312",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000441_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-pg-fantasyfootballbossplugin",
      "prog_id" : "FantasyFootballBoss.HTMLMenu",
      "activeX_object" : "FantasyFootballBoss.HTMLMenu",
      "classid" : "179a214f-1f5f-4ae2-babd-0231d8421b07",
      "html_id" : "FantasyFootballBossHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000469_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000469,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000469_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-smileycentralie_1wplugin",
      "prog_id" : "SmileyCentralIE_1w.SettingsPlugin",
      "activeX_object" : "SmileyCentralIE_1w.SettingsPlugin",
      "classid" : "fe039010-f9a8-4615-9053-ed99e7241364",
      "html_id" : "SmileyFacebookSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1w",
      "toolbandClassid" : "d3ca5551-fc2e-4d09-8ece-263607acf9fc",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000469_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-smileycentralie_1wplugin",
      "prog_id" : "SmileyCentralIE_1w.HTMLMenu",
      "activeX_object" : "SmileyCentralIE_1w.HTMLMenu",
      "classid" : "2e97a836-86c6-4ac3-9e75-70125d5e35f0",
      "html_id" : "SmileyFacebookHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "203981522_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 203981522,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "203981522_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-festivebar_3gplugin",
      "prog_id" : "FestiveBar_3g.SettingsPlugin",
      "activeX_object" : "FestiveBar_3g.SettingsPlugin",
      "classid" : "d9a962e6-9e4e-4910-95cd-0e3dfe09ac9c",
      "html_id" : "FestiveBarSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3g",
      "toolbandClassid" : "9ae277e9-32f4-46d5-94f4-20201609d1d0",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "203981522_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-festivebar_3gplugin",
      "prog_id" : "FestiveBar_3g.HTMLMenu",
      "activeX_object" : "FestiveBar_3g.HTMLMenu",
      "classid" : "64382763-4644-47f1-80c3-d2828cab902f",
      "html_id" : "FestiveBarHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "203981522_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 203981522,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "203981522_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-festivebar_3gplugin",
      "prog_id" : "FestiveBar_3g.SettingsPlugin",
      "activeX_object" : "FestiveBar_3g.SettingsPlugin",
      "classid" : "d9a962e6-9e4e-4910-95cd-0e3dfe09ac9c",
      "html_id" : "FestiveBarSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3g",
      "toolbandClassid" : "9ae277e9-32f4-46d5-94f4-20201609d1d0",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "203981522_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-festivebar_3gplugin",
      "prog_id" : "FestiveBar_3g.HTMLMenu",
      "activeX_object" : "FestiveBar_3g.HTMLMenu",
      "classid" : "64382763-4644-47f1-80c3-d2828cab902f",
      "html_id" : "FestiveBarHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "206720000_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 206720000,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "206720000_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mywebface_5aplugin",
      "prog_id" : "MyWebFace_5a.SettingsPlugin",
      "activeX_object" : "MyWebFace_5a.SettingsPlugin",
      "classid" : "c522512a-9c2c-4de5-9f63-976b560fef14",
      "html_id" : "MyWebFaceSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "5a",
      "toolbandClassid" : "af94b35c-3ac5-4030-9f9c-15fb4e3dc339",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "206720000_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mywebface_5aplugin",
      "prog_id" : "MyWebFace_5a.HTMLMenu",
      "activeX_object" : "MyWebFace_5a.HTMLMenu",
      "classid" : "41b7c739-4708-42a5-85ca-eede4c816578",
      "html_id" : "MyWebFaceHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000509_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000509,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000509_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-kazulahie_3uplugin",
      "prog_id" : "KazulahIE_3u.SettingsPlugin",
      "activeX_object" : "KazulahIE_3u.SettingsPlugin",
      "classid" : "6bf50372-33a5-4fbc-9306-a9f8bbf286d4",
      "html_id" : "KazulahSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3u",
      "toolbandClassid" : "de8ad2e4-13bb-435c-ae6a-1deb3ad856bb",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000509_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-kazulahie_3uplugin",
      "prog_id" : "KazulahIE_3u.HTMLMenu",
      "activeX_object" : "KazulahIE_3u.HTMLMenu",
      "classid" : "67379ccc-8e5a-47c4-8dd4-b0ee23bd6b6c",
      "html_id" : "KazulahHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000506_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000506,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000506_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-webfettiie_3cplugin",
      "prog_id" : "WebfettiIE_3c.SettingsPlugin",
      "activeX_object" : "WebfettiIE_3c.SettingsPlugin",
      "classid" : "77ff2bd5-3774-497a-93b8-f9380949c0df",
      "html_id" : "WebfettiSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3c",
      "toolbandClassid" : "49ca9be5-83c1-4441-a50c-e89ac95f96c9",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000506_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-webfettiie_3cplugin",
      "prog_id" : "WebfettiIE_3c.HTMLMenu",
      "activeX_object" : "WebfettiIE_3c.HTMLMenu",
      "classid" : "8adeeeab-4e00-4e35-9d6f-b6d28ceaeaf6",
      "html_id" : "WebfettiHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "200781283_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 200781283,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "200781283_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-myscrapnook_12plugin",
      "prog_id" : "MyScrapNook_12.SettingsPlugin",
      "activeX_object" : "MyScrapNook_12.SettingsPlugin",
      "classid" : "0a4d512d-697e-4ad5-872d-5a9941af6ebb",
      "html_id" : "MyScrapNookSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "12",
      "toolbandClassid" : "fe6f06fb-0fc0-4499-828f-ee48088f504f",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "200781283_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-myscrapnook_12plugin",
      "prog_id" : "MyScrapNook_12.HTMLMenu",
      "activeX_object" : "MyScrapNook_12.HTMLMenu",
      "classid" : "5db6f0a5-c6e8-41c6-b88a-94551911a53f",
      "html_id" : "MyScrapNookHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000506_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000506,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000506_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-webfetti_3bplugin",
      "prog_id" : "Webfetti_3b.SettingsPlugin",
      "activeX_object" : "Webfetti_3b.SettingsPlugin",
      "classid" : "125757e1-bca0-48fb-92fd-0d5b00872f54",
      "html_id" : "WebfettiSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3b",
      "toolbandClassid" : "66857ad6-fec7-49c4-ad79-6bf96cc0a365",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000506_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-webfetti_3bplugin",
      "prog_id" : "Webfetti_3b.HTMLMenu",
      "activeX_object" : "Webfetti_3b.HTMLMenu",
      "classid" : "32af29c6-c6b2-4a59-8602-7325f70d0b3e",
      "html_id" : "WebfettiHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000510_msie" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000510,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "msie",
      "toolbar" : "100000510_msie",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mywebfaceie_3yplugin",
      "prog_id" : "myWebFaceIE_3y.SettingsPlugin",
      "activeX_object" : "myWebFaceIE_3y.SettingsPlugin",
      "classid" : "dd59e005-d78e-4037-8ec6-b7826486dd50",
      "html_id" : "MyWebFaceSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3y",
      "toolbandClassid" : "19059727-5613-495c-b51b-96a579a8e9e8",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "msie",
      "toolbar" : "100000510_msie",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-mywebfaceie_3yplugin",
      "prog_id" : "myWebFaceIE_3y.HTMLMenu",
      "activeX_object" : "myWebFaceIE_3y.HTMLMenu",
      "classid" : "28d270c6-6ffd-4e7b-874b-a5aac6409bc5",
      "html_id" : "MyWebFaceHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "201420000_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 201420000,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "201420000_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-yourlocallotto1_20plugin",
      "prog_id" : "yourlocallotto1_20.SettingsPlugin",
      "activeX_object" : "yourlocallotto1_20.SettingsPlugin",
      "classid" : "af3e93e3-6e1c-4dcb-bc1f-68f038c2bc17",
      "html_id" : "YourLocalLottoSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "20",
      "toolbandClassid" : "e2993f50-db88-405c-baec-91a1805c3517",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "201420000_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-yourlocallotto1_20plugin",
      "prog_id" : "yourlocallotto1_20.HTMLMenu",
      "activeX_object" : "yourlocallotto1_20.HTMLMenu",
      "classid" : "92891aac-af09-4f18-9410-31944e3384c0",
      "html_id" : "YourLocalLottoHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "202000214_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 202000214,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "202000214_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-recipehub_2jplugin",
      "prog_id" : "RecipeHub_2j.SettingsPlugin",
      "activeX_object" : "RecipeHub_2j.SettingsPlugin",
      "classid" : "dc6051b9-dd61-44cb-8ee6-fa28eae44bf9",
      "html_id" : "RecipeHubSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2j",
      "toolbandClassid" : "cf51de5b-eb36-4114-bb69-84df63fbadb4",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "202000214_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-recipehub_2jplugin",
      "prog_id" : "RecipeHub_2j.HTMLMenu",
      "activeX_object" : "RecipeHub_2j.HTMLMenu",
      "classid" : "cb4b8622-cb4a-4c03-8cc1-2b4052f08553",
      "html_id" : "RecipeHubHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "201100000_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 201100000,
        "hasChromeExtension" : false,
        "hasSafariExtension" : false,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "201100000_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-popularscreensavers_3fplugin",
      "prog_id" : "PopularScreenSavers_3f.SettingsPlugin",
      "activeX_object" : "PopularScreenSavers_3f.SettingsPlugin",
      "classid" : "fb7a1924-a414-42c0-af46-3c20cf7ee7e0",
      "html_id" : "PopularScreenSaversSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3f",
      "toolbandClassid" : "8afc2231-7185-44d7-9399-95a84c9e55cd",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "201100000_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-popularscreensavers_3fplugin",
      "prog_id" : "PopularScreenSavers_3f.HTMLMenu",
      "activeX_object" : "PopularScreenSavers_3f.HTMLMenu",
      "classid" : "ed74e19b-8b9e-4ac6-ae34-b8309edecae5",
      "html_id" : "PopularScreenSaversHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000524_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000524,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000524_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-crazyforcricket_3kplugin",
      "prog_id" : "CrazyForCricket_3k.SettingsPlugin",
      "activeX_object" : "CrazyForCricket_3k.SettingsPlugin",
      "classid" : "60e2a9ce-e831-43b9-bf8a-bfc0e91919c0",
      "html_id" : "CrazyForCricketSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "3k",
      "toolbandClassid" : "9ddabb0a-cdcc-4cc6-ab2d-356099308433",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000524_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-crazyforcricket_3kplugin",
      "prog_id" : "CrazyForCricket_3k.HTMLMenu",
      "activeX_object" : "CrazyForCricket_3k.HTMLMenu",
      "classid" : "32c37dff-ce7a-4734-86f0-ff6078aebe19",
      "html_id" : "CrazyForCricketHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "202040436_firefox" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 202040436,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "firefox",
      "toolbar" : "202040436_firefox",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-sounddabble_2lplugin",
      "prog_id" : "SoundDabble_2l.SettingsPlugin",
      "activeX_object" : "SoundDabble_2l.SettingsPlugin",
      "classid" : "a2445a6a-f630-4114-9baa-7182cfda41c7",
      "html_id" : "SoundDabbleSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "2l",
      "toolbandClassid" : "7748e11f-41eb-4ebd-9ae8-3f7dc602da73",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "firefox",
      "toolbar" : "202040436_firefox",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-sounddabble_2lplugin",
      "prog_id" : "SoundDabble_2l.HTMLMenu",
      "activeX_object" : "SoundDabble_2l.HTMLMenu",
      "classid" : "c173da6e-e22c-42aa-91ee-b0422ebcb3c5",
      "html_id" : "SoundDabbleHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  },
  "100000448_dual" : {
    "settingsCtl" : {
      "extensionInfos" : [ {
        "id" : 100000448,
        "hasChromeExtension" : true,
        "hasSafariExtension" : true,
        "hasFirefoxExtension" : false
      } ],
      "browser" : "dual",
      "toolbar" : "100000448_dual",
      "name" : "settingsCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-inboxace_1gplugin",
      "prog_id" : "InboxAce_1g.SettingsPlugin",
      "activeX_object" : "InboxAce_1g.SettingsPlugin",
      "classid" : "387abd54-5e83-4e03-b020-6a6e5eafe1f4",
      "html_id" : "InboxAceSettingsCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "fileNamePrefix" : "1g",
      "toolbandClassid" : "3775afd7-5921-4571-968f-85a631203d1c",
      "params" : {
      }
    },
    "htmlMenuCtl" : {
      "browser" : "dual",
      "toolbar" : "100000448_dual",
      "name" : "htmlMenuCtl",
      "exe" : true,
      "xpi" : false,
      "mimetype" : "application/x-inboxace_1gplugin",
      "prog_id" : "InboxAce_1g.HTMLMenu",
      "activeX_object" : "InboxAce_1g.HTMLMenu",
      "classid" : "a0368956-d0fa-4f97-ba34-0b4ac5331eee",
      "html_id" : "InboxAceHtmlMenuCtl",
      "min_version" : "",
      "max_version" : "2.3.68.10",
      "required_version" : "2.3.68.10",
      "params" : {
      }
    }
  }
};
TOOLBAR.toolbar_list =["mws.settingsCtl", "mws.xpi", "mindspark.settingsCtl", "vicinio.settingsCtl", "200400749_dual.settingsCtl", "200400749_firefox.settingsCtl", "200400749_msie.settingsCtl", "203981522_dual.settingsCtl", "203981522_firefox.settingsCtl", "203981522_msie.settingsCtl", "202040436_dual.settingsCtl", "202040436_firefox.settingsCtl", "202040436_msie.settingsCtl", "201220870_dual.settingsCtl", "201220870_firefox.settingsCtl", "201220870_msie.settingsCtl", "206140027_dual.settingsCtl", "206140027_firefox.settingsCtl", "206140027_msie.settingsCtl", "201221480_dual.settingsCtl", "201221480_firefox.settingsCtl", "201221480_msie.settingsCtl", "200820000_dual.settingsCtl", "200820000_firefox.settingsCtl", "200820000_msie.settingsCtl", "202000214_dual.settingsCtl", "202000214_firefox.settingsCtl", "202000214_msie.settingsCtl", "202002465_dual.settingsCtl", "202002465_firefox.settingsCtl", "202002465_msie.settingsCtl", "206720000_dual.settingsCtl", "206720000_firefox.settingsCtl", "206720000_msie.settingsCtl", "200400322_dual.settingsCtl", "200400322_firefox.settingsCtl", "200400322_msie.settingsCtl", "100000562_dual.settingsCtl", "100000562_firefox.settingsCtl", "100000562_msie.settingsCtl", "204540489_dual.settingsCtl", "204540489_firefox.settingsCtl", "204540489_msie.settingsCtl", "100000547_dual.settingsCtl", "100000547_firefox.settingsCtl", "100000547_msie.settingsCtl", "100000546_dual.settingsCtl", "100000546_firefox.settingsCtl", "100000546_msie.settingsCtl", "100000545_dual.settingsCtl", "100000545_firefox.settingsCtl", "100000545_msie.settingsCtl", "100000544_dual.settingsCtl", "100000544_firefox.settingsCtl", "100000544_msie.settingsCtl", "206800353_dual.settingsCtl", "206800353_firefox.settingsCtl", "206800353_msie.settingsCtl", "204840007_dual.settingsCtl", "204840007_firefox.settingsCtl", "204840007_msie.settingsCtl", "202540009_dual.settingsCtl", "202540009_firefox.settingsCtl", "202540009_msie.settingsCtl", "201100000_dual.settingsCtl", "201100000_firefox.settingsCtl", "201100000_msie.settingsCtl", "202360838_dual.settingsCtl", "202360838_firefox.settingsCtl", "202360838_msie.settingsCtl", "100000531_dual.settingsCtl", "100000531_firefox.settingsCtl", "100000531_msie.settingsCtl", "100000535_dual.settingsCtl", "100000535_firefox.settingsCtl", "100000535_msie.settingsCtl", "100000524_dual.settingsCtl", "100000524_firefox.settingsCtl", "100000524_msie.settingsCtl", "100000526_dual.settingsCtl", "100000526_firefox.settingsCtl", "100000526_msie.settingsCtl", "205320000_dual.settingsCtl", "205320000_firefox.settingsCtl", "205320000_msie.settingsCtl", "207040002_dual.settingsCtl", "207040002_firefox.settingsCtl", "207040002_msie.settingsCtl", "206620473_dual.settingsCtl", "206620473_firefox.settingsCtl", "206620473_msie.settingsCtl", "202820547_dual.settingsCtl", "202820547_firefox.settingsCtl", "202820547_msie.settingsCtl", "100000606_dual.settingsCtl", "100000606_firefox.settingsCtl", "100000606_msie.settingsCtl", "100000601_dual.settingsCtl", "100000601_firefox.settingsCtl", "100000601_msie.settingsCtl", "201140006_dual.settingsCtl", "201140006_firefox.settingsCtl", "201140006_msie.settingsCtl", "100000417_dual.settingsCtl", "100000417_firefox.settingsCtl", "100000417_msie.settingsCtl", "100000418_dual.settingsCtl", "100000418_firefox.settingsCtl", "100000418_msie.settingsCtl", "100000419_dual.settingsCtl", "100000419_firefox.settingsCtl", "100000419_msie.settingsCtl", "100000420_dual.settingsCtl", "100000420_firefox.settingsCtl", "100000420_msie.settingsCtl", "100000421_dual.settingsCtl", "100000421_firefox.settingsCtl", "100000421_msie.settingsCtl", "100000422_dual.settingsCtl", "100000422_firefox.settingsCtl", "100000422_msie.settingsCtl", "100000425_dual.settingsCtl", "100000425_firefox.settingsCtl", "100000425_msie.settingsCtl", "100000426_dual.settingsCtl", "100000426_firefox.settingsCtl", "100000426_msie.settingsCtl", "100000428_dual.settingsCtl", "100000428_firefox.settingsCtl", "100000428_msie.settingsCtl", "100000430_dual.settingsCtl", "100000430_firefox.settingsCtl", "100000430_msie.settingsCtl", "100000441_dual.settingsCtl", "100000441_firefox.settingsCtl", "100000441_msie.settingsCtl", "100000442_dual.settingsCtl", "100000442_firefox.settingsCtl", "100000442_msie.settingsCtl", "200781283_dual.settingsCtl", "200781283_firefox.settingsCtl", "200781283_msie.settingsCtl", "100000393_dual.settingsCtl", "100000393_firefox.settingsCtl", "100000393_msie.settingsCtl", "100000415_dual.settingsCtl", "100000415_firefox.settingsCtl", "100000415_msie.settingsCtl", "100000414_dual.settingsCtl", "100000414_firefox.settingsCtl", "100000414_msie.settingsCtl", "100000413_dual.settingsCtl", "100000413_firefox.settingsCtl", "100000413_msie.settingsCtl", "100000486_dual.settingsCtl", "100000486_firefox.settingsCtl", "100000486_msie.settingsCtl", "100000487_dual.settingsCtl", "100000487_firefox.settingsCtl", "100000487_msie.settingsCtl", "100000481_dual.settingsCtl", "100000481_firefox.settingsCtl", "100000481_msie.settingsCtl", "100000482_dual.settingsCtl", "100000482_firefox.settingsCtl", "100000482_msie.settingsCtl", "100000494_dual.settingsCtl", "100000494_firefox.settingsCtl", "100000494_msie.settingsCtl", "100000489_dual.settingsCtl", "100000489_firefox.settingsCtl", "100000489_msie.settingsCtl", "100000509_dual.settingsCtl", "100000509_firefox.settingsCtl", "100000509_msie.settingsCtl", "100000508_dual.settingsCtl", "100000508_firefox.settingsCtl", "100000508_msie.settingsCtl", "202120498_dual.settingsCtl", "202120498_firefox.settingsCtl", "202120498_msie.settingsCtl", "100000511_dual.settingsCtl", "100000511_firefox.settingsCtl", "100000511_msie.settingsCtl", "100000510_dual.settingsCtl", "100000510_firefox.settingsCtl", "100000510_msie.settingsCtl", "100000504_dual.settingsCtl", "100000504_firefox.settingsCtl", "100000504_msie.settingsCtl", "100000507_dual.settingsCtl", "100000507_firefox.settingsCtl", "100000507_msie.settingsCtl", "100000506_dual.settingsCtl", "100000506_firefox.settingsCtl", "100000506_msie.settingsCtl", "100000455_dual.settingsCtl", "100000455_firefox.settingsCtl", "100000455_msie.settingsCtl", "100000452_dual.settingsCtl", "100000452_firefox.settingsCtl", "100000452_msie.settingsCtl", "100000450_dual.settingsCtl", "100000450_firefox.settingsCtl", "100000450_msie.settingsCtl", "203320254_dual.settingsCtl", "203320254_firefox.settingsCtl", "203320254_msie.settingsCtl", "100000451_dual.settingsCtl", "100000451_firefox.settingsCtl", "100000451_msie.settingsCtl", "100000448_dual.settingsCtl", "100000448_firefox.settingsCtl", "100000448_msie.settingsCtl", "100000449_dual.settingsCtl", "100000449_firefox.settingsCtl", "100000449_msie.settingsCtl", "100000458_dual.settingsCtl", "100000458_firefox.settingsCtl", "100000458_msie.settingsCtl", "100000459_dual.settingsCtl", "100000459_firefox.settingsCtl", "100000459_msie.settingsCtl", "205560572_dual.settingsCtl", "205560572_firefox.settingsCtl", "205560572_msie.settingsCtl", "201221175_dual.settingsCtl", "201221175_firefox.settingsCtl", "201221175_msie.settingsCtl", "100000457_dual.settingsCtl", "100000457_firefox.settingsCtl", "100000457_msie.settingsCtl", "100000471_dual.settingsCtl", "100000471_firefox.settingsCtl", "100000471_msie.settingsCtl", "201420310_dual.settingsCtl", "201420310_firefox.settingsCtl", "201420310_msie.settingsCtl", "100000469_dual.settingsCtl", "100000469_firefox.settingsCtl", "100000469_msie.settingsCtl", "205320984_dual.settingsCtl", "205320984_firefox.settingsCtl", "205320984_msie.settingsCtl", "100000466_dual.settingsCtl", "100000466_firefox.settingsCtl", "100000466_msie.settingsCtl", "206582318_dual.settingsCtl", "206582318_firefox.settingsCtl", "206582318_msie.settingsCtl", "100000475_dual.settingsCtl", "100000475_firefox.settingsCtl", "100000475_msie.settingsCtl", "204800921_dual.settingsCtl", "204800921_firefox.settingsCtl", "204800921_msie.settingsCtl", "205320663_dual.settingsCtl", "205320663_firefox.settingsCtl", "205320663_msie.settingsCtl", "201420000_dual.settingsCtl", "201420000_firefox.settingsCtl", "201420000_msie.settingsCtl", "202980021_dual.settingsCtl", "202980021_firefox.settingsCtl", "202980021_msie.settingsCtl", "203040006_dual.settingsCtl", "203040006_firefox.settingsCtl", "203040006_msie.settingsCtl", "200401157_dual.settingsCtl", "200401157_firefox.settingsCtl", "200401157_msie.settingsCtl", "mws_iwon_msie_old.settingsCtl"];
TOOLBAR.toolbarIdLookupForLegacyLabels ={"facebook_zwinky":"100000531","affinity_minddabble":"100000562","affinity_videodownloadconverter":"205320000","affinity_dailybibleguide":"100000422","facebook_webfetti":"100000418","affinity_bringmesports":"100000451","affinity_chimpoo":"203040006","affinity_cieonetutilities":"200400322","affinity_dailyjewishguide":"200820000","affinity_fantasyfootballboss":"100000441","affinity_myscrapnook":"200781283","affinity_bringmesportstennis":"202540009","facebook_retrogamer":"100000419","affinity_televisionfanatic":"100000415","affinity_crazyforcricket":"100000524","affinity_electiontracker":"206620473","affinity_bringmesportsrugby":"203320254","mws_kazulah":"100000509","affinity_yourlocallotto":"201420000","affinity_myownsuperhero":"100000421","affinity_conservativetalknow":"100000547","affinity_astrology":"100000535","affinity_quotationcafe":"204800921","mws_iwonglobal":"100000508","mws_pss":"201100000","affinity_radiorage":"100000486","mws_webfetti":"100000506","affinity_orytegames113toolbar":"100000452","facebook_pss":"100000474","affinity_uplayer":"201221175","affinity_recipehub":"202000214","mws_zwinky":"100000601","affinity_uberdownloads":"201221480","affinity_referenceboss":"100000449","facebook_mfc":"100000426","mws_iwon":"100000507","affinity_mywebface":"206720000","affinity_webfetti":"206582318","affinity_playfin":"201220870","affinity_mortgagehawk":"100000450","mws_cursormania":"100000504","affinity_dotspot":"202002465","affinity_christmasholidaylaughs":"205320663","affinity_filmfanatic":"100000428","affinity_dictionaryboss":"100000414","affinity_mmainmotion":"100000526","mws_mfc":"100000511","affinity_sounddabble":"202040436","affinity_bettercareersearch":"100000482","affinity_puredef":"100000544","affinity_couponalert":"100000487","affinity_petsharmony":"207040002","facebook_mywebface":"100000475","affinity_translatelite":"200400749","affinity_totalrecipesearch":"100000459","affinity_inboxace":"100000448","affinity_televisionfanaticsafari":"100000489","affinity_maps4pc":"200401157","affinity_utilitychest":"204540489","facebook_filmfanatic":"100000455","affinity_dailydollarguide":"100000466","facebook_iwon":"100000393","affinity_knowthebible":"205320984","affinity_holidaylaughs":"204840007","affinity_clanwars":"201420310","affinity_soccerinferno":"100000417","facebook_smileycentral":"100000469","affinity_timesofindia":"202120498","affinity_ourbabymaker":"100000471","affinity_tvvie":"100000545","affinity_mapsgalaxy":"202980021","affinity_celebsauce":"100000430","affinity_retrogamer":"206140027","affinity_dailyfitnesscenter":"100000606","affinity_seconddomain":"202820547","affinity_marineaquariumfree":"206800353","affinity_gamingassassin":"205560572","affinity_headlinealley":"100000481","facebook_iwonglobal":"100000420","affinity_weatherblink":"100000413","affinity_samplesaledash":"100000458","mws_smileycentral":"201140006","affinity_ultimategamesbar":"202360838","affinity_gamingwonderland":"100000425","affinity_radiopi":"100000546","mws_retrogamer":"100000494","affinity_festivebar":"203981522","affinity_guffins":"100000442","mws_mywebface":"100000510","affinity_videoscavenger":"100000457"};

