var searchfilter_obj = GetSearchFilterObject()
var searchparms = GetSearchParms()
addEventListener('popstate', (event) => {
if (history.state && typeof history.state === 'object') {
log('state ' + history.state);
searchfilter = history.state;
showSearchResults(true);
}
else {
clearFilter()
showSearchResults(true);
}
});
var searchfilter
window.addEventListener('click', function (event) { if (doc('autocompletpopup')) doc('autocompletpopup').hidden = true; })
// BOOTLOAD SITE
var rootelem = document.getElementById('search_boot')
var searchcss = document.createElement('link')
searchcss.rel = 'stylesheet'
searchcss.href = '/searchapi/search.css?' + new Date().getTime()
document.body.appendChild(searchcss)
search_boot(rootelem)
function search_boot(rootelem) {
var searchcontainer = document.getElementById('search_containerdiv')
if (searchcontainer) searchcontainer.parentElement.removeChild(searchcontainer)
searchcontainer = document.createElement('div')
searchcontainer.id = "search_containerdiv"
clearFilter()
fx_http('/searchapi/default.aspx?searchparms=' + encodeURIComponent(JSON.stringify(searchfilter)), function (xhr) {
searchcontainer.innerHTML = xhr.responseText
rootelem.insertAdjacentElement("afterend", searchcontainer)
refreshsearchblocks()
//if (rootelem.getAttribute('data-shownav')=='yes') setSearchTabs('');
})
}
function searchremove(item, value) {
searchfilter[item] = searchfilter[item].filter(function (val) {
return value != val
})
}
////////////////////////////////////////////////////////////////////
function clearFilter(clearall) {
//if ((window.performance.navigation.type == 2 || true) && window.localStorage["searchfilter"] && !clearall)
// try { searchfilter = JSON.parse(window.localStorage["searchfilter"]); } catch (e) { searchfilter = JSON.parse(JSON.stringify(searchfilter_obj)) }
//else
//searchfilter = JSON.parse(JSON.stringify(searchfilter_obj))
//var currtype = searchfilter.searchtype
//searchfilter.searchtype = currtype
// searchfilter = JSON.parse(JSON.stringify(searchfilter_obj))
searchfilter = JSON.parse(JSON.stringify(searchfilter_obj))
if (!clearall) {
try {
//if ((window.performance.navigation.type == 2 || true) && window.localStorage["searchfilter"])
// searchfilter = JSON.parse(window.localStorage["searchfilter"]);
//else
// searchfilter = JSON.parse(JSON.stringify(searchfilter_obj))
var filterparams = rootelem.getAttribute('data-parameters')
if (filterparams) filterparams = eval('({' + filterparams + '})')
Object.assign(searchfilter, filterparams)
var scriptpath = rootelem.getAttribute('data-path')
if (scriptpath && window["searchparms"][scriptpath])
Object.assign(searchfilter, JSON.parse(window["searchparms"][scriptpath]))
const urlSearchParams = new URLSearchParams(window.location.search);
const params = Object.fromEntries(urlSearchParams.entries());
if (params["path"] && window["searchparms"][params["path"]]) {
Object.assign(searchfilter, JSON.parse(window["searchparms"][params["path"]]))
}
if (params["search"]) {
Object.assign(searchfilter, JSON.parse(params["search"]))
}
if (window.localStorage["searchparms"]) {
searchfilter = JSON.parse(window.localStorage["searchparms"]);
window.localStorage.removeItem("searchparms")
}
}
catch (ee) {
log(ee)
}
}
window.localStorage["searchfilter"] = JSON.stringify(searchfilter)
}
function setOrganizationID(orgid) {
searchfilter.activecategory = 'facility';
if (orgid == 1) {
setFilterSingle('institutionOrganizationID_selected', orgid);
searchfilter['institutionOrganizationID_selected'].push('45')
}
else {
setFilterSingle('institutionOrganizationID_selected', orgid);
}
showSearchResults();
}
function setFilterSingle(parmid, value, searchtype) {
searchfilter.pageno = 1;
searchfilter[parmid] = []
if (searchtype) searchfilter.searchtype = searchtype
if (value != '') searchfilter[parmid].push(value)
}
function setFilterMultiple(parmid, value, valueIsSet) {
searchfilter[parmid] = searchfilter[parmid].filter(function (x) { return x != value; })
if (valueIsSet) searchfilter[parmid].push(value)
}
function setSearchFilter(searchtext, type) {
if (!searchfilter.showfilters) {
searchfilter.showfilters=true
searchfilter.showcategories = true
window.localStorage["searchparms"] = JSON.stringify(searchfilter)
log(JSON.stringify(searchfilter))
window.location.href = "/search"
return
}
//free text search
doc('searchtext').value = searchtext;
doc('autocompletpopup').hidden = true;
if (searchtext != '') { searchtext = searchtext.trim(); }
doc('searchresults-container').scrollIntoView()
setSearchTabs(type);
}
function setSearchTabs(type) {
if (type) {
searchfilter.searchtype = type
searchfilter.activecategory = ''
}
showSearchResults();
}
var currsearchtype
function showSearchResults(frombackbutton) {
log(JSON.stringify(searchfilter))
if (!frombackbutton) history.pushState(searchfilter,'',window.location)
window.localStorage["searchfilter"] = JSON.stringify(searchfilter)
fx_http("/searchapi/searchtabs.aspx?searchparms=" + encodeURIComponent(JSON.stringify(searchfilter)), function (xhr) {
doc('searchresults-container').innerHTML = xhr.responseText;
if (doc('category-heading')) {
//doc('category-heading').scrollIntoView()
//doc('filters-container').scrollIntoView()
}
refreshsearchblocks()
})
}
function showmap(lat, lng, place) {
closemapdiv()
var div = document.createElement('div')
var div_bg = document.createElement('div')
div.id="search_mapdiv"
div_bg.id = "search_mapdiv_bg"
div.className='search_mapdiv'
div_bg.className='search_mapdiv_bg'
div.innerHTML = '

Close map
'
document.body.appendChild(div_bg)
document.body.appendChild(div)
div.onclick = closemapdiv
}
function closemapdiv() {
if (doc('search_mapdiv_bg')) doc('search_mapdiv_bg').parentElement.removeChild(doc('search_mapdiv_bg'))
if (doc('search_mapdiv')) doc('search_mapdiv').parentElement.removeChild(doc('search_mapdiv'))
}
function refreshsearchblocks() {
return;
if (!doc('searchblocks')) return
fx_http("/searchapi/searchblocks.aspx?searchparms=" + encodeURIComponent(JSON.stringify(searchfilter)), function (xhr) {
//log(xhr.responseText)
doc('searchblocks').innerHTML = xhr.responseText
})
}
function showMedia(mediaid) {
fx_http("/searchapi/media.aspx?mediaid=" + encodeURIComponent(mediaid), function (xhr) {
doc('search-results').innerHTML = xhr.responseText;
if (doc('autocompletpopup')) doc('autocompletpopup').hidden = true;
})
}
var searchtimeout
function doSearchTyping(text) {
doc('autocompletpopup').style.width = doc('searchtext_container').offsetWidth+'px';
clearTimeout(searchtimeout)
searchtimeout = setTimeout(function () {
fx_http('/searchapi/search_autocomplete.aspx?text=' + encodeURIComponent(text) + '&searchparms=' + encodeURIComponent(JSON.stringify(searchfilter)), function (xhr) {
doc('autocompletpopup').innerHTML = xhr.responseText;
doc('autocompletpopup').hidden = false;
})
},500)
}
function search_showarticles() {
searchfilter.searchtext = doc('searchtext').value
searchfilter.searchtype = 'information'
searchfilter.activecategory = 'information'
doc('autocompletpopup').hidden = true;
searchfilter.showtypes = false
searchfilter.showfilters = false
setSearchTabs('information')
//showSearchResults();
}
function search_showproviders() {
searchfilter.searchtext = doc('searchtext').value
searchfilter.searchtype = 'provider'
searchfilter.activecategory = 'provider'
doc('autocompletpopup').hidden = true;
searchfilter.showtypes = true
searchfilter.showfilters = true
setSearchTabs('provider')
//showSearchResults();
}
function search_showfacilities() {
searchfilter.searchtext = doc('searchtext').value
searchfilter.searchtype = 'facility'
searchfilter.activecategory = 'facility'
doc('autocompletpopup').hidden = true;
searchfilter.showtypes = true
searchfilter.showfilters = true
setSearchTabs('facility')
//showSearchResults();
}
// HELPER JS
function createCORSRequest(method, url) {
var xhr = new XMLHttpRequest();
if ("withCredentials" in xhr) {
xhr.open(method, url, true);
} else if (typeof XDomainRequest != "undefined") {
xhr = new XDomainRequest();
xhr.open(method, url);
} else {
xhr = null;
}
return xhr;
}
function fx_http(url, callback) {
url = url + ((url.indexOf('?') > -1) ? '&' : '?')
url = url + new Date().getTime()
var xhr = createCORSRequest('GET', url);
if (!xhr) {
return;
}
xhr.onload = function () {
callback(xhr)
}
xhr.send()
}
function fx_postform(page, frm, callback) {
var xhr = new XMLHttpRequest();
xhr.open("post", page, true);
xhr.onload = function (xhr) {
return function () {
if (xhr.status == '200') {
if (callback) callback(xhr)
}
}
}(xhr)
xhr.send(frm);
}
function doc(id) {
var elems = document.querySelectorAll("[id='" + id + "']")
if (elems.length > 0) return elems[elems.length - 1]; else return null
}
function log() {
if (window.console && (window.location.href.indexOf('//me.') > 0 || window.location.href.indexOf('fuzzylogic') > 0 || window.location.href.indexOf('//x') > -1)) {
for (var n = 0; n < arguments.length; n++) {
var msg = arguments[n]
if (typeof (msg) == 'object' && console.dirxml)
try { console.dirxml(msg) } catch (e) { }
else
try { console.log(msg) } catch (e) { }
}
}
}
window.onscroll = () => {
try { doc('search-back-to-top').hidden = (window.scrollY < 200) } catch (e){ }
}
// check if the Geolocation API is supported
function searchGetLocation() {
if (!navigator.geolocation) {
//alert('Your browser doesn\'t support Geolocation')
return false;
}
navigator.geolocation.getCurrentPosition(geoSuccess, geoError);
}
// handle success case
function geoSuccess(position) {
const {
latitude,
longitude
} = position.coords;
//alert(`Your location: (${latitude},${longitude})`);
fx_http('/searchapi/setlocation.aspx?lat=' + latitude + '&lon=' + longitude, function (xhr) { searchfilter.uselocation=true; showSearchResults(); })
}
// handle error case
function geoError() {
alert('Failed to get your location.\n You may need to enable location services for your browser in settings.');
}
function showhide(elem) {
if (elem.hidden || getComputedStyle(elem).display == 'none') {
show(elem);
}
else {
hide(elem);
}
}
function show(elem) {
elem.hidden = false;
elem.style.display = 'flex';
}
function hide(elem) {
elem.hidden = true;
elem.style.display = 'none';
}
function showhideMobileFilter(val) {
var elem = doc('filters-container-provinces');
if (val == 'show') {
show(elem);
doc('mobile-filter-location').hidden = false;
doc('mobile-footer-cancelapply').hidden = false;
doc('mobile-footer-filter').hidden = true;
}
else {
hide(elem);
searchfilter.showlocationfilters = false;
doc('mobile-filter-location').hidden = true;
doc('mobile-footer-filter').hidden = false;
doc('mobile-footer-cancelapply').hidden = true;
}
doc('main-container').scrollIntoView();
}
//window.addEventListener('scroll', function () {
// var elem = document.getElementById("searchresults-container-top");
// var x = elem.offsetTop - elem.scrollTop + elem.clientTop;
// const list = doc("searchtab-container").classList;
// if (document.body.scrollTop > x || document.documentElement.scrollTop > x) {
// list.remove("searchtab-container");
// list.remove("margintop20");
// list.add("searchtab-sticky");
// } else {
// list.remove("searchtab-sticky");
// list.add("searchtab-container");
// list.add("margintop20");
// }
//});
function GetSearchFilterObject() { return {
"provinceid": [],
"cityid": [],
"ProviderID": [],
"institutionType": [],
"institutionTypeID": [],
"institutionOrganizationID": [],
"institutionOrganizationID_selected": [],
"diseaseAreaID": [],
"institutionMasterID": [],
"personServiceID": [],
"personServiceID_selected": [],
"providerTypeID_selected": [],
"institutionMasterID_selected": [],
"searchtext": "",
"searchtype": "",
"activecategory": "",
"searchletter": "",
"showsearchbox": true,
"showtypes": true,
"showcategories": true,
"showfilters": true,
"showlocationfilters": false,
"orderby": "",
"pageno": 1
};}
function GetSearchParms() { return {
"medicross_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[\"3\",\"4\"],\"institutionOrganizationID_selected\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"medicross_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[\"3\",\"4\"],\"institutionOrganizationID_selected\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"medicross_gp": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[\"3\",\"4\"],\"institutionOrganizationID_selected\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[\"38\"],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"gp\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"medicross_dentist": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[\"3\",\"4\"],\"institutionOrganizationID_selected\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[\"25\"],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"dentist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"medicross_specialist": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[\"3\",\"4\"],\"institutionOrganizationID_selected\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"medicross_dayhospital": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionTypeID\":[\"101\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"3\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"medicross_pharmacy": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionTypeID\":[\"2\"],\"institutionOrganizationID\":[\"3\",\"4\"],\"institutionOrganizationID_selected\":[\"3\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"medicross_medical_dental": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionTypeID\":[\"99\",\"7\",\"100\"],\"institutionOrganizationID\":[\"3\",\"4\"],\"institutionOrganizationID_selected\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"medicross_radiology": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionTypeID\":[\"18\"],\"institutionOrganizationID\":[\"3\",\"4\"],\"institutionOrganizationID_selected\":[\"3\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"medicross_pathology": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionTypeID\":[\"17\"],\"institutionOrganizationID\":[\"3\",\"4\"],\"institutionOrganizationID_selected\":[\"3\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"medicross_optometry": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionTypeID\":[\"57\"],\"institutionOrganizationID\":[\"3\",\"4\"],\"institutionOrganizationID_selected\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"akeso_gsa_provider": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionTypeID\":[\"108\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"akeso_gsa_facility": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionTypeID\":[\"108\"],\"institutionOrganizationID\":[\"52\"],\"institutionOrganizationID_selected\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":false,\"showtypes\":false,\"showcategories\":false,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"hospital_provider_gynae": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionTypeID\":[\"20\"],\"institutionOrganizationID\":[\"1\"],\"institutionOrganizationID_selected\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"primecure_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[\"4\"],\"institutionOrganizationID_selected\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"male_fertility": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[],\"institutionMasterID\":[],\"personServiceID\":[\"43\",\"150\",\"33\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"147\",\"156\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_milk_bank_depot_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"202\",\"203\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"medicross_medical": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionTypeID\":[\"99\",\"7\"],\"institutionOrganizationID\":[\"3\",\"4\"],\"institutionOrganizationID_selected\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"akeso_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"akeso_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"akeso_programme_adolescent_dual_diagnosis_addiction_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"96\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"akeso_programme_adolescent_dual_diagnosis_addiction_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"96\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"akeso_programme_adolescent_general_psychiatry_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"104\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"akeso_programme_adult_eating_disorder_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"106\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"akeso_programme_adult_dual_diagnosis_addiction_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"107\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"akeso_programme_adult_general_psychiatry_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"108\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"akeso_programme_adolescent_general_psychiatry_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"104\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"akeso_programme_adult_general_psychiatry_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"108\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"akeso_programme_adult_dual_diagnosis_addiction_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"107\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"akeso_programme_adolescent_eating_disorder_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"87\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"akeso_programme_adolescent_eating_disorder_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"87\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"akeso_programme_adult_eating_disorder_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"106\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"akeso_programme_adult_postnatal_depression_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"105\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"akeso_programme_adult_postnatal_depression_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"105\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"akeso_programme_geriatric_psycho-geriatric_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"109\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"akeso_programme_geriatric_psycho-geriatric_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"109\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"akeso_providers_ECT": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"90\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"akeso_facilities_ECT": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"90\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"akeso_providers_psychiatrist": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"institutionMasterID\":[],\"personServiceID\":[\"114\",\"193\",\"195\",\"115\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"akeso_providers_psychologist": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"institutionMasterID\":[],\"personServiceID\":[\"118\",\"119\",\"120\",\"117\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[2],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"professional\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"searchbar_all": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":false,\"showcategories\":false,\"showfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"hospitals_specialists": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"akeso_disorder_adolescent_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"diseaseAreaID\":[\"15\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"akeso_disorder_adolescent_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"diseaseAreaID\":[\"15\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"akeso_disorder_ageing_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"diseaseAreaID\":[\"25\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"akeso_disorder_ageing_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"diseaseAreaID\":[\"25\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"akeso_disorder_anxiety_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"diseaseAreaID\":[\"24\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"akeso_disorder_anxiety_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"diseaseAreaID\":[\"24\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"akeso_disorder_bipolar_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"diseaseAreaID\":[\"23\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"akeso_disorder_bipolar_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"diseaseAreaID\":[\"23\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"akeso_disorder_depression_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"diseaseAreaID\":[\"22\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"akeso_disorder_depression_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"diseaseAreaID\":[\"22\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"akeso_disorder_eating_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"diseaseAreaID\":[\"21\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"akeso_disorder_eating_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"diseaseAreaID\":[\"21\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"akeso_disorder_post_traumatic_stress_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"diseaseAreaID\":[\"20\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"akeso_disorder_post_traumatic_stress_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"diseaseAreaID\":[\"20\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"akeso_disorder_postnatal_depression_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"diseaseAreaID\":[\"19\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"akeso_disorder_postnatal_depression_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"diseaseAreaID\":[\"19\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"akeso_disorder_grief_loss_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"diseaseAreaID\":[\"17\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"akeso_disorder_grief_loss_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"diseaseAreaID\":[\"17\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"akeso_disorder_schizophrenia_psychotic_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"diseaseAreaID\":[\"16\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"akeso_disorder_schizophrenia_psychotic_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"diseaseAreaID\":[\"16\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"akeso_disorder_substance_use_addiction_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"diseaseAreaID\":[\"18\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"akeso_disorder_substance_use_addiction_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"diseaseAreaID\":[\"18\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_enlarged_prostrate_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"150\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_enlarged_prostrate_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"150\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_enlarged_prostrate_PAE_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"150\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_enlarged_prostrate_PAE_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"150\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_enlarged_prostrate_HoLEP_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"150\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_enlarged_prostrate_HoLEP_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"150\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_prostrate_cancer_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"173\",\"150\",\"75\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_prostrate_cancer_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"75\",\"173\",\"150\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_testicular_cancer_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"75\",\"147\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_testicular_cancer_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"75\",\"147\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_stroke_care_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"66\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_breast_care_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"110\",\"147\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_breast_care_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"147\",\"110\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_mammography_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"165\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_cosmetic_surgery_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"157\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_reconstructive_surgery_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"176\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_cervical_cancer_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"43\",\"179\",\"182\",\"199\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_cervical_cancer_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"43\",\"179\",\"182\",\"199\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_female_fertility_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"33\",\"43\",\"181\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_female_fertility_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"33\",\"43\",\"181\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_antenatal_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"43\",\"180\",\"181\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_antenatal_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"204\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_maternal_foetal_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"43\",\"180\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_maternal_foetal_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"43\",\"180\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_maternity_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"43\",\"179\",\"180\",\"181\",\"182\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_maternity_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"20\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_nicu_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"189\",\"61\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_nicu_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"61\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_milk_bank_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"202\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_postnatal_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"204\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"akeso_programme_adult_high_care_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"93\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"akeso_programme_adult_high_care_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"93\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"52\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_orthopaedic_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"82\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_orthopaedic_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"54\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_sports_medicine_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"146\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"75\",\"173\",\"129\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_emergency_department_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"66\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_dermatology_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"26\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_dermatology_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"26\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_ent_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"30\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_ent_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"30\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_gastroenterology_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"37\",\"168\",\"197\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_gastroenterology_surgeon_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"147\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_haematology_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"169\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_haematology_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"53\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_haematology_paed_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"186\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_rehabilitation_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"38\",\"63\",\"114\",\"115\",\"150\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_sexual_assault_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"182\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_menopause_care_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"43\",\"179\",\"182\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_menopause_care_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"43\",\"179\",\"182\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_urogynaecology_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"182\",\"199\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_urogynaecology_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"182\",\"199\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_weight_loss_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_weight_loss_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"39\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_male_fertility_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"43\",\"33\",\"150\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_breast_cancer_provider": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"75\",\"173\",\"147\",\"129\",\"179\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_breast_cancer_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"75\",\"173\",\"147\",\"179\",\"129\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_cervical_cancer_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"75\",\"173\",\"179\",\"129\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_cervical_cancer_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"179\",\"75\",\"173\",\"129\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_colorectal_cancer_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"75\",\"173\",\"147\",\"37\",\"197\",\"129\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_colorectal_cancer_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"75\",\"173\",\"147\",\"37\",\"197\",\"129\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_uterine_cancer_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"75\",\"173\",\"199\",\"179\",\"129\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_uterine_cancer_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"75\",\"173\",\"199\",\"179\",\"129\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_lung_cancer_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"75\",\"173\",\"128\",\"129\",\"11\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_lung_cancer_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"173\",\"75\",\"128\",\"129\",\"11\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_lymphoma_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"75\",\"173\",\"129\",\"169\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_lymphoma_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"75\",\"173\",\"129\",\"169\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_skin_cancer_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"75\",\"173\",\"26\",\"129\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_head_neck_cancer_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"75\",\"173\",\"30\",\"147\",\"129\",\"51\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_head_neck_cancer_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"75\",\"173\",\"30\",\"147\",\"129\",\"51\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_ovarian_cancer_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"179\",\"182\",\"75\",\"173\",\"199\",\"129\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_ovarian_cancer_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"179\",\"182\",\"75\",\"173\",\"199\",\"129\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_thyroid_cancer_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[],\"institutionMasterID\":[],\"personServiceID\":[\"75\",\"173\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_thyroid_cancer_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"173\",\"75\",\"33\",\"147\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_prostate_cancer_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"75\",\"173\",\"150\",\"129\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_prostate_cancer_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"75\",\"173\",\"150\",\"129\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_bladder_cancer_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"182\",\"75\",\"173\",\"199\",\"150\",\"129\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_bladder_cancer_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"173\",\"75\",\"182\",\"199\",\"150\",\"129\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_stomach_cancer_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"75\",\"173\",\"37\",\"147\",\"197\",\"129\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_stomach_cancer_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"75\",\"173\",\"37\",\"147\",\"197\",\"129\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_kaposi_sarcoma_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"75\",\"173\",\"129\",\"82\",\"147\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_kaposi_sarcoma_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"75\",\"173\",\"129\",\"82\",\"147\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_throat_cancer_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"75\",\"173\",\"30\",\"129\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_throat_cancer_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"75\",\"173\",\"30\",\"129\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_oncology_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"179\",\"75\",\"173\",\"129\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_skin_cancer_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"75\",\"173\",\"129\",\"26\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_male_fertility_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"46\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_erectile_dysfunction_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"150\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_erectile_dysfunction_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"150\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_neuro_neurosurgical_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"63\",\"64\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_neuro_neurosurgical_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"63\",\"64\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_neuro_neurosurgical_DBS_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"63\",\"64\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_neuro_neurosurgical_DBS_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"63\",\"64\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_neuro_neurosurgical_TMS_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"63\",\"64\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_neuro_neurosurgical_TMS_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"63\",\"64\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_robotic_assisted_surgery_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"147\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_robotic_assisted_surgery_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"147\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_robotic_assisted_surgery_knee_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"147\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_robotic_assisted_surgery_knee_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"147\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_robotic_assisted_surgery_prostrate_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"147\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_robotic_assisted_surgery_prostrate_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"147\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_emergency_trauma_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"66\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"90\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"90\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_allergology_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"200\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_cardiology_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"86\",\"12\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_cardiothoraic_surgery_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"11\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_clinical_haematology_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"169\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_ent_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"30\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_endocrinology_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"33\",\"165\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_gastroentrology_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"37\",\"168\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_critical_care_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"187\",\"21\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_medical_genetics_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"40\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_neonatology_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"61\",\"189\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_nephrology_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"62\",\"174\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_neurodevelopment_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"91\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_neurology_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"63\",\"87\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_oncology_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"75\",\"167\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_orthopaedic_surgery_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"82\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_pulmonology_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"88\",\"128\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_rheumatology_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"190\",\"136\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_surgery_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[],\"institutionMasterID\":[],\"personServiceID\":[\"89\",\"147\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_cancer_care_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"167\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_cancer_care_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"167\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_neonatal_care_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[],\"institutionMasterID\":[],\"personServiceID\":[\"189\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_neonatal_care_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"61\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_cardiac_surgery_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"172\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_cardiac_surgery_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"172\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_intensive_care_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"187\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_intensive_care_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"187\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_drowning_care_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"187\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_paediatric_drowning_care_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"187\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_cardiac_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"12\",\"11\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_cardiac_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"19\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_cardiac_adult_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"12\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_cardiac_adult_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"12\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_cardiac_adult_cardiovascular_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"12\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_cardiac_adult_cardiovascular_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"19\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_cardiac_adult_electrophysiology_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"171\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_cardiac_adult_electrophysiology_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"171\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_cardiac_adult_heart_transplant_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"12\",\"11\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_cardiac_adult_heart_transplant_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"19\",\"55\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_cardiac_paediatric_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"86\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_cardiac_paediatric_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"19\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_cardiac_paediatric_surgery_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"86\",\"89\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_cardiac_paediatric_surgery_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"86\",\"89\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_cardiac_paediatric_heart_transplant_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"89\",\"86\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_cardiac_paediatric_heart_transplant_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"86\",\"89\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_minimally_invasive_surgery_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"147\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_minimally_invasive_surgery_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"institutionMasterID\":[],\"personServiceID\":[\"147\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"test multiple services": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"147\",\"44\"],\"institutionOrganizationID\":[\"1\"],\"institutionOrganizationID_selected\":[],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_cardiac_cardiothoracic_surgery_providers": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"11\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[1],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"provider\",\"activecategory\":\"specialist\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_cardiac_cardiothoracic_surgery_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[\"11\"],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_emergency_trauma_level1_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"190\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_emergency_trauma_level2_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"191\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"hospitals_sc_emergency_trauma_level3_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"192\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"test_multiple services": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"66\",\"190\",\"191\",\"192\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_chemotherapy_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"156\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"cancer_care_radiation_facilities": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"147\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"medical_conditions": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"information\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"mother_baby_clinics": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"204\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[\"1\"],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"facility\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"pharmacy": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"2\"],\"institutionOrganizationID\":[],\"institutionOrganizationID_selected\":[],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}",
"medicross_dental": "{\"provinceid\":[],\"cityid\":[],\"ProviderID\":[],\"institutionType\":[],\"institutionTypeID\":[\"99\",\"100\"],\"institutionOrganizationID\":[\"3\",\"4\"],\"institutionOrganizationID_selected\":[],\"diseaseAreaID\":[],\"institutionMasterID\":[],\"personServiceID\":[],\"personServiceID_selected\":[],\"providerTypeID_selected\":[],\"institutionMasterID_selected\":[],\"searchtext\":\"\",\"searchtype\":\"facility\",\"activecategory\":\"\",\"searchletter\":\"\",\"showsearchbox\":true,\"showtypes\":true,\"showcategories\":true,\"showfilters\":true,\"showlocationfilters\":false,\"orderby\":\"\",\"pageno\":1}"
};}