{"id":1492,"date":"2019-07-31T16:29:14","date_gmt":"2019-07-31T20:29:14","guid":{"rendered":"https:\/\/www.groupesomavrac.com\/?page_id=1492"},"modified":"2023-09-19T14:11:51","modified_gmt":"2023-09-19T18:11:51","slug":"uba","status":"publish","type":"page","link":"https:\/\/www.groupesomavrac.com\/fr\/filiales\/uba\/","title":{"rendered":"UBA"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"1492\" class=\"elementor elementor-1492\" data-elementor-post-type=\"page\">\n\t\t\t\t    <script>\n    var markers = [];\n    var markersObjects = [];\n    var map;\n    var initBounds;\n\n    function initMap() {\n      map = new google.maps.Map(document.getElementById('map'), {\n        center: {lat: 47.7781262, lng: -71.4144785},\n        zoom: 7,\n        styles: [\n          {\n            \"featureType\": \"road\",\n            \"stylers\": [\n              { \"hue\": \"#ff1a00\" },\n              { \"saturation\": -100 }\n            ]\n          },{\n            \"featureType\": \"poi\",\n            \"stylers\": [\n              { \"hue\": \"#ff7700\" },\n              { \"saturation\": -100 }\n            ]\n          },{\n            \"featureType\": \"landscape\",\n            \"stylers\": [\n              { \"hue\": \"#0066ff\" },\n              { \"saturation\": -50 }\n            ]\n          },{\n            \"featureType\": \"water\",\n            \"stylers\": [\n              { \"hue\": \"#0077ff\" },\n              { \"saturation\": -66 }\n            ]\n          },{\n            \"stylers\": [\n              { \"visibility\": \"simplified\" }\n            ]\n          },{\n            \"elementType\": \"labels.icon\",\n            \"stylers\": [\n              { \"visibility\": \"off\" }\n            ]\n          },{\n          }\n        ]\n      });\n      var infoWindow = new google.maps.InfoWindow;\n\n      map.setZoom(13);\n\n  \/\/ Change this depending on the name of your PHP or XML file\n      downloadUrl('https:\/\/www.groupesomavrac.com\/wp-content\/themes\/jupiterx-child\/inc\/map.php?lang=fr&id=UBA', function(data) {\n        var xml = data.responseXML;\n        var filiale = '';\n        markers = xml.documentElement.getElementsByTagName('marker');\n        Array.prototype.forEach.call(markers, function(markerElem) {\n          var id = markerElem.getAttribute('id');\n          var name = markerElem.getAttribute('name');\n\n          var city = markerElem.getAttribute('city');\n          var phone = markerElem.getAttribute('phone');\n          var phone_toll_free = markerElem.getAttribute('phone_toll_free');\n          var services = markerElem.getAttribute('services');\n          var services_slug = markerElem.getAttribute('services_slug');\n          var images = markerElem.getAttribute('images');\n          var address = markerElem.getAttribute('address');\n          var link = markerElem.getAttribute('link');\n          var type = markerElem.getAttribute('type');\n          var classes = markerElem.getAttribute('classes');\n          var point = new google.maps.LatLng(\n            parseFloat(markerElem.getAttribute('lat')),\n            parseFloat(markerElem.getAttribute('lng')));\n\n\n          var infowincontent = document.createElement('div');\n          infowincontent.className = \"infowindow-somavrac \"+classes;\n          var imgs = document.createElement('p');\n          imgs.innerHTML = images;\n          infowincontent.appendChild(imgs);\n\n          var h3 = document.createElement('h3');\n          h3.textContent = name;\n          infowincontent.appendChild(h3);\n\n          var serv = document.createElement('p');\n          serv.innerHTML = services;\n          infowincontent.appendChild(serv);\n\n          var ct = document.createElement('strong');\n          ct.innerHTML = city;\n          infowincontent.appendChild(ct);\n          infowincontent.appendChild(document.createElement('br'));\n\n          var text = document.createElement('p');\n          text.textContent = address;\n          infowincontent.appendChild(text);\n\n          if(phone != '') {\n            var tel1 = document.createElement('div');\n            tel1.textContent = phone;\n            infowincontent.appendChild(tel1);\n          }\n          if(phone_toll_free != '') {\n            var tel2 = document.createElement('div');\n            tel2.textContent = phone_toll_free;\n            infowincontent.appendChild(tel2);\n          }\n          infowincontent.appendChild(document.createElement('br'));\n\n          var markerLink = document.createElement('a');\n          markerLink.href = link;\n          markerLink.textContent = 'En savoir plus';\n          infowincontent.appendChild(markerLink);\n\n          var icon = {};\n          var marker = new google.maps.Marker({\n            map: map,\n            icon: 'https:\/\/www.groupesomavrac.com\/wp-content\/themes\/jupiterx-child\/assets\/img\/pointer.png',\n            position: point,\n            label: icon.label,\n            name: name,\n            services: services_slug,\n            services_names: services,\n            city: city,\n            phone: phone,\n            phone_toll_free: phone_toll_free,\n            address: address,\n          });\n\n          initBounds = new google.maps.LatLngBounds();\n\n\n          markersObjects.push(marker);\n\n          for (i=0; i < markersObjects.length; i++) {\n            if(filiale != '') {\n              if(markersObjects[i].name != filiale) {\n                markersObjects[i].setMap(null);\n              }\n              else {\n                initBounds.extend(markersObjects[i].getPosition());\n              }\n            }else {\n              initBounds.extend(markersObjects[i].getPosition());\n            }\n          }\n\n          marker.addListener('click', function() {\n            infoWindow.setContent(infowincontent);\n            infoWindow.open(map, marker);\n          });\n        });\n\n\n        for (i=0; i < markersObjects.length; i++) {\n            if(filiale != '') {\n              if(markersObjects[i].name != filiale) {\n                markersObjects[i].setMap(null);\n              }\n              else {\n                showBox(markersObjects[i], i);\n              }\n            }else {\n              showBox(markersObjects[i], i);\n            }\n        }\n\n        map.fitBounds(initBounds);\n        if(map.getZoom()> 13){\n          map.setZoom(13);\n        }\n\n      });\n    }\n\n    function showMarker(id){\n      google.maps.event.trigger(markersObjects[id], 'click');\n    }\n\n  \/\/ Sets the map on all markers in the array.\n    function showSelectedMarker(markersToShow) {\n      var bounds = new google.maps.LatLngBounds();\n      $('#overlay_map').children('.items').children('.item').remove();\n\n      if (markersObjects) {\n        for (i=0; i < markersObjects.length; i++) {\n          if(markersToShow == 'All') {\n            markersObjects[i].setMap(map);\n            showBox(markersObjects[i], i);\n            bounds.extend(markersObjects[i].getPosition());\n          }\n          else {\n            if(markersToShow.includes(markersObjects[i].get('name'))){\n              markersObjects[i].setMap(map);\n              showBox(markersObjects[i], i);\n              bounds.extend(markersObjects[i].getPosition());\n            }\n            else {\n              markersObjects[i].setMap(null);\n            }\n          }\n        }\n\n        if(bounds.isEmpty()) {\n          map.fitBounds(initBounds);\n          if(map.getZoom()> 13){\n            map.setZoom(13);\n          }\n        }\n        else {\n          map.fitBounds(bounds);\n          if(map.getZoom()> 13){\n            map.setZoom(13);\n          }\n        }\n      }\n    }\n\n\n  \/\/ Sets the map on all markers in the array.\n    function showSelectedMarkerServices(markersToShow) {\n      var bounds = new google.maps.LatLngBounds();\n      var toShow = false;\n      var services = '';\n\n      $('#overlay_map').children('.items').children('.item').remove();\n\n      if (markersObjects) {\n        for (i=0; i < markersObjects.length; i++) {\n          services = '';\n          toShow = false;\n          services = markersObjects[i].get('services').split(',');\n\n          for(j=0; j < services.length; j++) {\n            if(markersToShow.includes(services[j])) {\n              toShow = true;\n            }\n          }\n\n          if(toShow) {\n            markersObjects[i].setMap(map);\n\n            showBox(markersObjects[i], i);\n\n            bounds.extend(markersObjects[i].getPosition());\n          }\n          else {\n            markersObjects[i].setMap(null);\n          }\n        }\n        if(bounds.isEmpty()) {\n          map.fitBounds(initBounds);\n          if(map.getZoom()> 13){\n            map.setZoom(13);\n          }\n        }\n        else {\n          map.fitBounds(bounds);\n          if(map.getZoom()> 13){\n            map.setZoom(13);\n          }\n        }\n\n      }\n    }\n\n\n    function showBox(marker, id) {\n      var markerBox = '';\n      markerBox += '<button type=\"button\" class=\"item\" onClick=\"showMarker('+id+')\">';\n      markerBox += '<h3>'+marker.name+'<\/h3>';\n      markerBox += marker.services_names;\n      markerBox += '<strong>'+marker.city+'<\/strong>';\n      markerBox += marker.address;\n      markerBox += '<div>'+marker.phone+'<\/div>';\n      markerBox += '<div>'+marker.phone_toll_free+'<\/div>';\n      markerBox += '<\/button>';\n\n      $('#overlay_map').children('.items').append(markerBox);\n    }\n\n\n    function downloadUrl(url, callback) {\n      var request = window.ActiveXObject ?\n      new ActiveXObject('Microsoft.XMLHTTP') :\n      new XMLHttpRequest;\n\n      request.onreadystatechange = function() {\n        if (request.readyState == 4) {\n          request.onreadystatechange = doNothing;\n          callback(request, request.status);\n        }\n      };\n\n      request.open('GET', url, true);\n      request.send(null);\n    }\n\n    function doNothing() {}\n    <\/script>\n    <script async defer\n    src=\"https:\/\/maps.googleapis.com\/maps\/api\/js?key=AIzaSyDLC8AmLYRGMWnWaivCjY8KOcQq59KDssk&callback=initMap\">\n    <\/script>\n    \t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-d5f8e59 elementor-section-stretched elementor-section-full_width elementor-section-height-min-height elementor-section-items-stretch elementor-section-content-middle elementor-hidden-desktop elementor-section-height-default\" data-id=\"d5f8e59\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-58dcc18\" data-id=\"58dcc18\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-5ffe911 elementor-widget elementor-widget-image\" data-id=\"5ffe911\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"500\" height=\"250\" src=\"https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2019\/07\/uba-2.png\" class=\"attachment-full size-full wp-image-1291\" alt=\"UBA, distributeur de produits chimiques, chemical distributor\" srcset=\"https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2019\/07\/uba-2.png 500w, https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2019\/07\/uba-2-450x225.png 450w, https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2019\/07\/uba-2-300x150.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2de67c3 elementor-hidden-phone\" data-id=\"2de67c3\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-2cd1a74 elementor-section-stretched elementor-section-height-min-height elementor-section-boxed elementor-section-height-default elementor-section-items-middle\" data-id=\"2cd1a74\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\\\/\\\/vimeo.com\\\/418149106&quot;,&quot;background_video_start&quot;:0}\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-background-video-container elementor-hidden-mobile\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-background-video-embed\" role=\"presentation\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-background-overlay\"><\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-67e58b8\" data-id=\"67e58b8\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-1d69c21 elementor-widget elementor-widget-heading\" data-id=\"1d69c21\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Expert en Distribution de produits chimiques<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0c38aba elementor-widget elementor-widget-text-editor\" data-id=\"0c38aba\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"text-align: left;\"><strong>UBA est un expert en distribution de produits chimiques sp\u00e9cialis\u00e9 dans la livraison s\u00e9curitaire de produits en vrac et en semi-vrac.<\/strong>\u00a0<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e544a55 elementor-align-center elementor-widget elementor-widget-button\" data-id=\"e544a55\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-md\" href=\"https:\/\/www.groupesomavrac.com\/fr\/filiales\/uba\/contact-uba\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Contactez-nous<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-7e62b21 elementor-section-stretched section-desc-filiales no-background-filiales elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7e62b21\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-78beb97\" data-id=\"78beb97\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-c4a7318 big-title elementor-widget elementor-widget-heading\" data-id=\"c4a7318\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Nos produits<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d09d9ad filiales-flipbox elementor-widget elementor-widget-text-editor\" data-id=\"d09d9ad\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Soude caustique, bases, acides, produits d\u00e9sinfectants, etc. UBA, filiale du Groupe Somavrac, est la r\u00e9f\u00e9rence, pour vos besoins de produits chimiques de tous genre, avec sa vaste gamme de produits et de formats. Qu\u2019il s\u2019agisse de produits alcalins, de peroxydes, d\u2019acides ou de chlorures, le circuit de distribution est s\u00e9curitaire, fiable et flexible<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-ed4f06d elementor-section-stretched elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"ed4f06d\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-e7670af filiales-box\" data-id=\"e7670af\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-19b264c elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"19b264c\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-8393dce\" data-id=\"8393dce\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-3230417 filiales-box-front elementor-widget elementor-widget-heading\" data-id=\"3230417\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Acides<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4e9cb10 filiales-box-back elementor-widget elementor-widget-shortcode\" data-id=\"4e9cb10\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><a href=\"https:\/\/www.groupesomavrac.com\/fr\/nos-produits\/acide-acetique\/\">Acide ac\u00e9tique<\/a>, <a href=\"https:\/\/www.groupesomavrac.com\/fr\/nos-produits\/acide-chlorhydrique\/\">Acide chlorhydrique<\/a>, <a href=\"https:\/\/www.groupesomavrac.com\/fr\/nos-produits\/acide-citrique-2\/\">Acide Citrique<\/a>, <a href=\"https:\/\/www.groupesomavrac.com\/fr\/nos-produits\/acide-nitrique\/\">Acide nitrique<\/a>, <a href=\"https:\/\/www.groupesomavrac.com\/fr\/nos-produits\/acide-phosphorique\/\">Acide phosphorique<\/a>, <a href=\"https:\/\/www.groupesomavrac.com\/fr\/nos-produits\/acide-sulfurique\/\">Acide sulfurique<\/a><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-18438b7 filiales-box\" data-id=\"18438b7\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-6e36be6 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6e36be6\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-9b39b5d\" data-id=\"9b39b5d\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-7c9c351 filiales-box-front elementor-widget elementor-widget-heading\" data-id=\"7c9c351\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Bases<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4d40cb5 filiales-box-back elementor-widget elementor-widget-shortcode\" data-id=\"4d40cb5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><a href=\"https:\/\/www.groupesomavrac.com\/fr\/nos-produits\/bicarbonate-de-sodium\/\">Bicarbonate de sodium<\/a>, <a href=\"https:\/\/www.groupesomavrac.com\/fr\/nos-produits\/chaux-hydratee\/\">Chaux hydrat\u00e9e<\/a>, <a href=\"https:\/\/www.groupesomavrac.com\/fr\/nos-produits\/ezpeel\/\">EZPEEL<\/a>, <a href=\"https:\/\/www.groupesomavrac.com\/fr\/nos-produits\/hydroxyde-dammonium\/\">Hydroxyde d&rsquo;ammonium<\/a>, <a href=\"https:\/\/www.groupesomavrac.com\/fr\/nos-produits\/hydroxyde-de-potassium-solide-flocons\/\">Hydroxyde de potassium<\/a>, <a href=\"https:\/\/www.groupesomavrac.com\/fr\/nos-produits\/hydroxyde-de-sodium-soude-caustique\/\">Hydroxyde de sodium<\/a>, <a href=\"https:\/\/www.groupesomavrac.com\/fr\/nos-produits\/ubase\/\">UBAse<\/a>, <a href=\"https:\/\/www.groupesomavrac.com\/fr\/nos-produits\/uree-de-qualite-technique\/\">Ur\u00e9e de qualit\u00e9 technique<\/a><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-5ab1293 filiales-box\" data-id=\"5ab1293\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-d199fc0 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"d199fc0\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-7f7c35e\" data-id=\"7f7c35e\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-f60d0cb filiales-box-front elementor-widget elementor-widget-heading\" data-id=\"f60d0cb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Produits <br>sp\u00e9cialis\u00e9s<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-81e7dc1 filiales-box-back elementor-widget elementor-widget-shortcode\" data-id=\"81e7dc1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><a href=\"https:\/\/www.groupesomavrac.com\/fr\/nos-produits\/bisulfite-de-sodium\/\">Bisulfite de sodium<\/a>, <a href=\"https:\/\/www.groupesomavrac.com\/fr\/nos-produits\/chlorure-de-calcium-liquide\/\">Chlorure de calcium liquide<\/a>, <a href=\"https:\/\/www.groupesomavrac.com\/fr\/nos-produits\/chlorure-ferrique\/\">Chlorure ferrique<\/a>, <a href=\"https:\/\/www.groupesomavrac.com\/fr\/nos-produits\/ethylene-glycol\/\">\u00c9thyl\u00e8ne glycol<\/a>, <a href=\"https:\/\/www.groupesomavrac.com\/fr\/nos-produits\/hypochlorite-de-sodium-eau-de-javel\/\">Hypochlorite de sodium (eau de Javel)<\/a>, <a href=\"https:\/\/www.groupesomavrac.com\/fr\/nos-produits\/metabisulfite-de-sodium\/\">M\u00e9tabisulfite de sodium<\/a>, <a href=\"https:\/\/www.groupesomavrac.com\/fr\/nos-produits\/peroxyde-dhydrogene\/\">Peroxyde d&rsquo;hydrog\u00e8ne<\/a>, <a href=\"https:\/\/www.groupesomavrac.com\/fr\/nos-produits\/persulfate-de-sodium\/\">Persulfate de sodium<\/a>, <a href=\"https:\/\/www.groupesomavrac.com\/fr\/nos-produits\/propylene-glycol\/\">Propyl\u00e8ne glycol<\/a>, <a href=\"https:\/\/www.groupesomavrac.com\/fr\/nos-produits\/solution-en-mono-de-phosphate-daluminium\/\">Solution en mono de phosphate d&rsquo;aluminium<\/a><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-4db2e10 link-on-column\" data-id=\"4db2e10\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-8af53b1 elementor-section-height-min-height elementor-section-content-middle elementor-section-boxed elementor-section-height-default\" data-id=\"8af53b1\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-c696ba0\" data-id=\"c696ba0\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-5203123 elementor-widget elementor-widget-heading\" data-id=\"5203123\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/www.groupesomavrac.com\/fr\/categorie-produit\/uba\/\">Voir tous les produits<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-da1c35e elementor-section-stretched section-desc-filiales-white no-background-filiales elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"da1c35e\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-fe84a5d\" data-id=\"fe84a5d\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-0173424 big-title elementor-widget elementor-widget-heading\" data-id=\"0173424\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Nos march\u00e9s<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-213a17b elementor-widget elementor-widget-text-editor\" data-id=\"213a17b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>UBA travaille en partenariat avec des entreprises provenant de plusieurs secteurs d\u2019industrie, tels que : agroalimentaire et produits agricoles, automobile, chauffage et refroidissement, textiles, \u00e9lectronique, herbicides, hydro\u00e9lectrique, manufacturiers de produits chimiques sp\u00e9cialis\u00e9s, mini\u00e8re, p\u00e2tes et papier, piscines, traitement des eaux us\u00e9es, traitement des sols contamin\u00e9s, etc. Chacun de ces march\u00e9s \u00e9tant bien singulier, ils b\u00e9n\u00e9ficient tous des services d\u2019UBA \u00e0 leur fa\u00e7on.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0e87fe5 boutton elementor-widget elementor-widget-button\" data-id=\"0e87fe5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/fr\/filiales\/uba\/marches\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">En savoir plus<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-2e66995 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2e66995\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-wider\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-66 elementor-top-column elementor-element elementor-element-f6c2551\" data-id=\"f6c2551\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-a4c952f big-title elementor-widget elementor-widget-heading\" data-id=\"a4c952f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Un service de qualit\u00e9,<br>\npeu importe votre march\u00e9<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2a398ef elementor-widget elementor-widget-text-editor\" data-id=\"2a398ef\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Fort de plus de 60 ans d&rsquo;exp\u00e9rience dans la distribution s\u00e9curitaire de produits chimiques UBA est le partenaire strat\u00e9gique pour la vente, la gestion des stocks et la distribution de vos besoins chimiques. Les livraisons de produits chimiques peuvent \u00eatre partielles (partial bulk delivery), semi-vrac ou en format embouteill\u00e9. La flexibilit\u00e9 du service de transport est au c\u0153ur des pr\u00e9occupations de l\u2019entreprise.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e61566d boutton elementor-widget elementor-widget-button\" data-id=\"e61566d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/fr\/filiales\/uba\/services-uba\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Apprenez-en d'avantage<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-a6f1fcd\" data-id=\"a6f1fcd\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-e84e9d5 elementor-widget elementor-widget-image\" data-id=\"e84e9d5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"417\" height=\"279\" src=\"https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2019\/07\/molecule.png\" class=\"attachment-full size-full wp-image-1098\" alt=\"UBA, services\" srcset=\"https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2019\/07\/molecule.png 417w, https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2019\/07\/molecule-300x201.png 300w\" sizes=\"(max-width: 417px) 100vw, 417px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-e2d3985 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"e2d3985\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-592be1c\" data-id=\"592be1c\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ac3b262 elementor-hidden-phone elementor-widget elementor-widget-heading\" data-id=\"ac3b262\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Sant\u00e9 s\u00e9curit\u00e9<\/h3>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-0a79e7f\" data-id=\"0a79e7f\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-87268a4 elementor-hidden-phone elementor-widget elementor-widget-heading\" data-id=\"87268a4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Environnement<\/h3>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-addf8da elementor-section-stretched equal-height-content no-background-filiales elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"addf8da\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-b81c7fd\" data-id=\"b81c7fd\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-fe57bbd elementor-widget elementor-widget-image\" data-id=\"fe57bbd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"560\" height=\"266\" src=\"https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2019\/07\/nos-marches-sante-securite.jpg\" class=\"attachment-full size-full wp-image-1115\" alt=\"Sant\u00e9, s\u00e9curit\u00e9 et environnement, UBA\" srcset=\"https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2019\/07\/nos-marches-sante-securite.jpg 560w, https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2019\/07\/nos-marches-sante-securite-450x214.jpg 450w, https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2019\/07\/nos-marches-sante-securite-300x143.jpg 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4e1dda6 elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-heading\" data-id=\"4e1dda6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Sant\u00e9 s\u00e9curit\u00e9<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3213bae elementor-widget elementor-widget-text-editor\" data-id=\"3213bae\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>La gestion efficace et s\u00e9curitaire des produits chimiques demande l\u2019apport d\u2019une panoplie d\u2019experts. Pour s\u2019assurer que chacun d\u2019eux puisse mettre ses connaissances et comp\u00e9tences \u00e0 jour r\u00e9guli\u00e8rement, UBA mise sur un programme de formation continue. Le syst\u00e8me de livraison s\u00e9curitaire est certifi\u00e9 RD-21 par Distribution Responsable Canada.<\/p><p><a href=\"\/fr\/filiales\/uba\/sante-securite-environnement\/\">En savoir plus<\/a><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-84bf4a9\" data-id=\"84bf4a9\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-670871a elementor-widget elementor-widget-image\" data-id=\"670871a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"560\" height=\"266\" src=\"https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2019\/07\/nos-marches-environnement.jpg\" class=\"attachment-full size-full wp-image-1118\" alt=\"Environnement, Groupe Somavrac\" srcset=\"https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2019\/07\/nos-marches-environnement.jpg 560w, https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2019\/07\/nos-marches-environnement-450x214.jpg 450w, https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2019\/07\/nos-marches-environnement-300x143.jpg 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-fcb5056 elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-heading\" data-id=\"fcb5056\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Environnement<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0c28cfd elementor-widget elementor-widget-text-editor\" data-id=\"0c28cfd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>UBA est l\u2019un des membres fondateurs de Distribution responsable Canada (DRC : certifi\u00e9 RD-21), qui \u00ab assure une r\u00e9duction continue des incidents pouvant entra\u00eener ou menacer de causer des blessures \u00e0 des personnes ou des dommages \u00e0 l&rsquo;environnement \u00bb.<\/p><p><a href=\"\/fr\/filiales\/uba\/sante-securite-environnement\/\">En savoir plus<\/a><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-2c76881 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2c76881\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-3ca6c9a\" data-id=\"3ca6c9a\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-e3fd93c elementor-widget elementor-widget-spacer\" data-id=\"e3fd93c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-5421be2 blog-content elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5421be2\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-27ecc1b\" data-id=\"27ecc1b\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-31abdc8 big-title elementor-widget elementor-widget-heading\" data-id=\"31abdc8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">blogue: pour une distribution responsable<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-39cb505 elementor-widget elementor-widget-raven-posts\" data-id=\"39cb505\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;query_posts_per_page&quot;:3,&quot;_skin&quot;:&quot;classic&quot;,&quot;classic_layout&quot;:&quot;grid&quot;,&quot;classic_columns&quot;:&quot;3&quot;,&quot;classic_columns_tablet&quot;:&quot;2&quot;,&quot;classic_columns_mobile&quot;:&quot;1&quot;,&quot;query_offset&quot;:0}\" data-widget_type=\"raven-posts.classic\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"raven-posts raven-grid raven-grid-3 raven-grid-mobile-1 raven-grid-tablet-2\" data-post-id=\"1492\" data-archive-query=\"\" data-lang=\"\">\n\t\t\t\t<div class=\"raven-grid-item raven-post-item post-1770 post type-post status-publish format-standard has-post-thumbnail hentry category-uba\">\n\t\t\t<div class=\"raven-post\">\n\t\t\t\t\t\t<div class=\"raven-post-image-wrap\">\n\t\t\t<a class=\"raven-post-image raven-image-fit\" href=\"https:\/\/www.groupesomavrac.com\/fr\/5-raisons-de-faire-affaire-avec-uba\/\"><img loading=\"lazy\" decoding=\"async\" width=\"559\" height=\"546\" src=\"https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2019\/08\/UBA-produits-chimiques.png\" class=\"attachment-full size-full wp-image-1771\" alt=\"UBA, distributeur de produits chimiques, chemical distributor\" srcset=\"https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2019\/08\/UBA-produits-chimiques.png 559w, https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2019\/08\/UBA-produits-chimiques-300x293.png 300w\" sizes=\"(max-width: 559px) 100vw, 559px\" \/> <span class=\"raven-post-image-overlay\"><\/span><\/a>\t\t<\/div>\n\t\t\t\t\t\t<div class=\"raven-post-content\">\n\t\t\t\t\t\t\t<div class=\"raven-post-meta\"><a class=\"raven-post-meta-item raven-post-date\" href=\"https:\/\/www.groupesomavrac.com\/fr\/2024\/06\/\" rel=\"bookmark\">10 juin 2024<\/a><\/div>\n\t\t<h4 class=\"raven-post-title\"><a class=\"raven-post-title-link\" href=\"https:\/\/www.groupesomavrac.com\/fr\/5-raisons-de-faire-affaire-avec-uba\/\">5 raisons de faire affaire avec UBA<\/a><\/h4><div class=\"raven-post-excerpt\">\u00c0 la recherche d\u2019un distributeur de produit chimique fiable et professionnel? Voici cinq raison de faire affaire avec UBA!\u00a0 &nbsp; 1. Des syst\u00e8mes d\u2019entreposage sophistiqu\u00e9s<\/div>\t\t<div class=\"raven-post-read-more\">\n\t\t\t<a class=\"raven-post-button\" href=\"https:\/\/www.groupesomavrac.com\/fr\/5-raisons-de-faire-affaire-avec-uba\/\"><span class=\"raven-post-button-text\">Lire la suite<\/span><\/a>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"raven-grid-item raven-post-item post-8606 post type-post status-publish format-standard has-post-thumbnail hentry category-uba\">\n\t\t\t<div class=\"raven-post\">\n\t\t\t\t\t\t<div class=\"raven-post-image-wrap\">\n\t\t\t<a class=\"raven-post-image raven-image-fit\" href=\"https:\/\/www.groupesomavrac.com\/fr\/pourquoi-choisir-uba-plutot-quun-autre-fournisseur\/\"><img loading=\"lazy\" decoding=\"async\" width=\"2560\" height=\"1920\" src=\"https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2021\/03\/IMG_3440-modifie-scaled.jpg\" class=\"attachment-full size-full wp-image-8607\" alt=\"\" srcset=\"https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2021\/03\/IMG_3440-modifie-scaled.jpg 2560w, https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2021\/03\/IMG_3440-modifie-300x225.jpg 300w, https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2021\/03\/IMG_3440-modifie-1024x768.jpg 1024w, https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2021\/03\/IMG_3440-modifie-768x576.jpg 768w, https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2021\/03\/IMG_3440-modifie-1536x1152.jpg 1536w, https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2021\/03\/IMG_3440-modifie-2048x1536.jpg 2048w, https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2021\/03\/IMG_3440-modifie-320x240.jpg 320w, https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2021\/03\/IMG_3440-modifie-600x450.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" \/> <span class=\"raven-post-image-overlay\"><\/span><\/a>\t\t<\/div>\n\t\t\t\t\t\t<div class=\"raven-post-content\">\n\t\t\t\t\t\t\t<div class=\"raven-post-meta\"><a class=\"raven-post-meta-item raven-post-date\" href=\"https:\/\/www.groupesomavrac.com\/fr\/2021\/03\/\" rel=\"bookmark\">23 mars 2021<\/a><\/div>\n\t\t<h4 class=\"raven-post-title\"><a class=\"raven-post-title-link\" href=\"https:\/\/www.groupesomavrac.com\/fr\/pourquoi-choisir-uba-plutot-quun-autre-fournisseur\/\">Pourquoi choisir UBA plut\u00f4t qu&rsquo;un autre fournisseur?<\/a><\/h4><div class=\"raven-post-excerpt\">Pourquoi choisir UBA plut\u00f4t qu\u2019un autre fournisseur ? R\u00e9putation UBA prend en charge les livraisons de produits chimiques de sa client\u00e8le&nbsp;avec un grand souci du<\/div>\t\t<div class=\"raven-post-read-more\">\n\t\t\t<a class=\"raven-post-button\" href=\"https:\/\/www.groupesomavrac.com\/fr\/pourquoi-choisir-uba-plutot-quun-autre-fournisseur\/\"><span class=\"raven-post-button-text\">Lire la suite<\/span><\/a>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"raven-grid-item raven-post-item post-8303 post type-post status-publish format-standard has-post-thumbnail hentry category-uba\">\n\t\t\t<div class=\"raven-post\">\n\t\t\t\t\t\t<div class=\"raven-post-image-wrap\">\n\t\t\t<a class=\"raven-post-image raven-image-fit\" href=\"https:\/\/www.groupesomavrac.com\/fr\/optimisez-votre-processus-de-ravitaillement-en-produits-chimiques-grace-a-uba\/\"><img loading=\"lazy\" decoding=\"async\" width=\"2560\" height=\"1700\" src=\"https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2021\/01\/38943197_l-1-scaled.jpg\" class=\"attachment-full size-full wp-image-8302\" alt=\"\" srcset=\"https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2021\/01\/38943197_l-1-scaled.jpg 2560w, https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2021\/01\/38943197_l-1-300x199.jpg 300w, https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2021\/01\/38943197_l-1-1024x680.jpg 1024w, https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2021\/01\/38943197_l-1-768x510.jpg 768w, https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2021\/01\/38943197_l-1-1536x1020.jpg 1536w, https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2021\/01\/38943197_l-1-2048x1360.jpg 2048w, https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2021\/01\/38943197_l-1-600x399.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" \/> <span class=\"raven-post-image-overlay\"><\/span><\/a>\t\t<\/div>\n\t\t\t\t\t\t<div class=\"raven-post-content\">\n\t\t\t\t\t\t\t<div class=\"raven-post-meta\"><a class=\"raven-post-meta-item raven-post-date\" href=\"https:\/\/www.groupesomavrac.com\/fr\/2021\/02\/\" rel=\"bookmark\">2 f\u00e9vrier 2021<\/a><\/div>\n\t\t<h4 class=\"raven-post-title\"><a class=\"raven-post-title-link\" href=\"https:\/\/www.groupesomavrac.com\/fr\/optimisez-votre-processus-de-ravitaillement-en-produits-chimiques-grace-a-uba\/\">Optimisez votre processus de ravitaillement en produits chimiques gr\u00e2ce \u00e0 UBA<\/a><\/h4><div class=\"raven-post-excerpt\">Gr\u00e2ce \u00e0 UBA, de nombreuses entreprises de toutes tailles et provenant d\u2019industries vari\u00e9es arrivent \u00e0 diminuer leurs frais de ravitaillement en produits chimiques en optimisant<\/div>\t\t<div class=\"raven-post-read-more\">\n\t\t\t<a class=\"raven-post-button\" href=\"https:\/\/www.groupesomavrac.com\/fr\/optimisez-votre-processus-de-ravitaillement-en-produits-chimiques-grace-a-uba\/\"><span class=\"raven-post-button-text\">Lire la suite<\/span><\/a>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c12c42f boutton elementor-widget elementor-widget-button\" data-id=\"c12c42f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.groupesomavrac.com\/fr\/blogue-uba\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Voir davantage<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-550aa42 elementor-widget elementor-widget-spacer\" data-id=\"550aa42\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-a4e21fd elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a4e21fd\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-60ee370\" data-id=\"60ee370\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-67b5914 big-title elementor-widget elementor-widget-heading\" data-id=\"67b5914\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Carte de la filiale<\/h2>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-d3f9a50 elementor-section-stretched elementor-section-full_width elementor-section-height-default elementor-section-height-default\" data-id=\"d3f9a50\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-22f9acd\" data-id=\"22f9acd\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-b305eaf elementor-widget elementor-widget-html\" data-id=\"b305eaf\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"map\">\n    <div id=\"map\"><\/div>\n    <div id=\"overlay_map\" class=\"opened\">\n        <div class=\"items\" style=\"margin-top: 0\"><\/div>\n        <button id=\"open_overlay\"><span><span>Masquer les r\u00e9sultats<\/span><\/span><\/button>\n    <\/div>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bd593bc elementor-widget elementor-widget-html\" data-id=\"bd593bc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Expert en Distribution de produits chimiques UBA est un expert en distribution de produits chimiques sp\u00e9cialis\u00e9 dans la livraison s\u00e9curitaire de produits en vrac et en semi-vrac.\u00a0 Contactez-nous Nos produits Soude caustique, bases, acides, produits d\u00e9sinfectants, etc. UBA, filiale du Groupe Somavrac, est la r\u00e9f\u00e9rence, pour vos besoins de produits chimiques de tous genre, avec [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":1066,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"class_list":["post-1492","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>UBA inc. | Distributeur de produits chimiques en Am\u00e9rique du Nord<\/title>\n<meta name=\"description\" content=\"UBA est un expert en distribution chimique. Depuis 1956, nous offrons des solutions d&#039;approvisionnement en produits chimiques.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.groupesomavrac.com\/fr\/filiales\/uba\/\" \/>\n<meta property=\"og:locale\" content=\"fr_CA\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"UBA inc. | Distributeur de produits chimiques en Am\u00e9rique du Nord\" \/>\n<meta property=\"og:description\" content=\"UBA est un expert en distribution chimique. Depuis 1956, nous offrons des solutions d&#039;approvisionnement en produits chimiques.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.groupesomavrac.com\/fr\/filiales\/uba\/\" \/>\n<meta property=\"og:site_name\" content=\"Groupe Somavrac\" \/>\n<meta property=\"article:modified_time\" content=\"2023-09-19T18:11:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2019\/07\/uba-2.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Estimation du temps de lecture\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.groupesomavrac.com\/fr\/filiales\/uba\/\",\"url\":\"https:\/\/www.groupesomavrac.com\/fr\/filiales\/uba\/\",\"name\":\"UBA inc. | Distributeur de produits chimiques en Am\u00e9rique du Nord\",\"isPartOf\":{\"@id\":\"https:\/\/www.groupesomavrac.com\/fr\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.groupesomavrac.com\/fr\/filiales\/uba\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.groupesomavrac.com\/fr\/filiales\/uba\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2019\/07\/uba-2.png\",\"datePublished\":\"2019-07-31T20:29:14+00:00\",\"dateModified\":\"2023-09-19T18:11:51+00:00\",\"description\":\"UBA est un expert en distribution chimique. Depuis 1956, nous offrons des solutions d'approvisionnement en produits chimiques.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.groupesomavrac.com\/fr\/filiales\/uba\/#breadcrumb\"},\"inLanguage\":\"fr-CA\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.groupesomavrac.com\/fr\/filiales\/uba\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-CA\",\"@id\":\"https:\/\/www.groupesomavrac.com\/fr\/filiales\/uba\/#primaryimage\",\"url\":\"https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2019\/07\/uba-2.png\",\"contentUrl\":\"https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2019\/07\/uba-2.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.groupesomavrac.com\/fr\/filiales\/uba\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Nos Filiales\",\"item\":\"https:\/\/www.groupesomavrac.com\/fr\/filiales\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"UBA\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.groupesomavrac.com\/fr\/#website\",\"url\":\"https:\/\/www.groupesomavrac.com\/fr\/\",\"name\":\"Groupe Somavrac\",\"description\":\"Partenaire de votre cha\u00eene logistique\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.groupesomavrac.com\/fr\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-CA\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"UBA inc. | Distributeur de produits chimiques en Am\u00e9rique du Nord","description":"UBA est un expert en distribution chimique. Depuis 1956, nous offrons des solutions d'approvisionnement en produits chimiques.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.groupesomavrac.com\/fr\/filiales\/uba\/","og_locale":"fr_CA","og_type":"article","og_title":"UBA inc. | Distributeur de produits chimiques en Am\u00e9rique du Nord","og_description":"UBA est un expert en distribution chimique. Depuis 1956, nous offrons des solutions d'approvisionnement en produits chimiques.","og_url":"https:\/\/www.groupesomavrac.com\/fr\/filiales\/uba\/","og_site_name":"Groupe Somavrac","article_modified_time":"2023-09-19T18:11:51+00:00","og_image":[{"url":"https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2019\/07\/uba-2.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Estimation du temps de lecture":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.groupesomavrac.com\/fr\/filiales\/uba\/","url":"https:\/\/www.groupesomavrac.com\/fr\/filiales\/uba\/","name":"UBA inc. | Distributeur de produits chimiques en Am\u00e9rique du Nord","isPartOf":{"@id":"https:\/\/www.groupesomavrac.com\/fr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.groupesomavrac.com\/fr\/filiales\/uba\/#primaryimage"},"image":{"@id":"https:\/\/www.groupesomavrac.com\/fr\/filiales\/uba\/#primaryimage"},"thumbnailUrl":"https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2019\/07\/uba-2.png","datePublished":"2019-07-31T20:29:14+00:00","dateModified":"2023-09-19T18:11:51+00:00","description":"UBA est un expert en distribution chimique. Depuis 1956, nous offrons des solutions d'approvisionnement en produits chimiques.","breadcrumb":{"@id":"https:\/\/www.groupesomavrac.com\/fr\/filiales\/uba\/#breadcrumb"},"inLanguage":"fr-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.groupesomavrac.com\/fr\/filiales\/uba\/"]}]},{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/www.groupesomavrac.com\/fr\/filiales\/uba\/#primaryimage","url":"https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2019\/07\/uba-2.png","contentUrl":"https:\/\/www.groupesomavrac.com\/wp-content\/uploads\/2019\/07\/uba-2.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.groupesomavrac.com\/fr\/filiales\/uba\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Nos Filiales","item":"https:\/\/www.groupesomavrac.com\/fr\/filiales\/"},{"@type":"ListItem","position":2,"name":"UBA"}]},{"@type":"WebSite","@id":"https:\/\/www.groupesomavrac.com\/fr\/#website","url":"https:\/\/www.groupesomavrac.com\/fr\/","name":"Groupe Somavrac","description":"Partenaire de votre cha\u00eene logistique","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.groupesomavrac.com\/fr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-CA"}]}},"_links":{"self":[{"href":"https:\/\/www.groupesomavrac.com\/fr\/wp-json\/wp\/v2\/pages\/1492","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.groupesomavrac.com\/fr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.groupesomavrac.com\/fr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.groupesomavrac.com\/fr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.groupesomavrac.com\/fr\/wp-json\/wp\/v2\/comments?post=1492"}],"version-history":[{"count":117,"href":"https:\/\/www.groupesomavrac.com\/fr\/wp-json\/wp\/v2\/pages\/1492\/revisions"}],"predecessor-version":[{"id":18803,"href":"https:\/\/www.groupesomavrac.com\/fr\/wp-json\/wp\/v2\/pages\/1492\/revisions\/18803"}],"up":[{"embeddable":true,"href":"https:\/\/www.groupesomavrac.com\/fr\/wp-json\/wp\/v2\/pages\/1066"}],"wp:attachment":[{"href":"https:\/\/www.groupesomavrac.com\/fr\/wp-json\/wp\/v2\/media?parent=1492"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}