{"id":15256,"date":"2020-03-05T08:37:19","date_gmt":"2020-03-05T13:37:19","guid":{"rendered":"https:\/\/sensing.konicaminolta.us\/newsletter-archive\/"},"modified":"2020-04-23T22:42:00","modified_gmt":"2020-04-24T02:42:00","slug":"newsletter-archive","status":"publish","type":"page","link":"https:\/\/sensing.konicaminolta.us\/mx\/newsletter-archive\/","title":{"rendered":"Archivo de Boletines"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_row row_height_percent=&#8221;0&#8243; override_padding=&#8221;yes&#8221; h_padding=&#8221;2&#8243; top_padding=&#8221;0&#8243; bottom_padding=&#8221;1&#8243; overlay_alpha=&#8221;50&#8243; gutter_size=&#8221;3&#8243; column_width_percent=&#8221;100&#8243; shift_y=&#8221;0&#8243; z_index=&#8221;0&#8243;][vc_column width=&#8221;1\/1&#8243;][vc_single_image media=&#8221;7867&#8243; media_width_percent=&#8221;100&#8243;][\/vc_column][\/vc_row][vc_row row_height_percent=&#8221;0&#8243; override_padding=&#8221;yes&#8221; h_padding=&#8221;2&#8243; top_padding=&#8221;1&#8243; bottom_padding=&#8221;2&#8243; overlay_alpha=&#8221;50&#8243; gutter_size=&#8221;3&#8243; column_width_percent=&#8221;100&#8243; shift_y=&#8221;0&#8243; z_index=&#8221;0&#8243; css=&#8221;.vc_custom_1583551939801{padding-top: 20px !important;}&#8221;][vc_column column_width_percent=&#8221;100&#8243; gutter_size=&#8221;2&#8243; overlay_alpha=&#8221;50&#8243; shift_x=&#8221;0&#8243; shift_y=&#8221;0&#8243; shift_y_down=&#8221;0&#8243; z_index=&#8221;0&#8243; medium_width=&#8221;0&#8243; mobile_width=&#8221;0&#8243; width=&#8221;1\/1&#8243;]<script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n\n\/\/----------------------------------------------------------\n\/\/------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------\n\/\/----------------------------------------------------------\n\nif ( ! gform ) {\n\tdocument.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );\n\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );\n\twindow.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );\n\n\tvar gform = {\n\t\tdomLoaded: false,\n\t\tscriptsLoaded: false,\n\t\tthemeScriptsLoaded: false,\n\t\tisFormEditor: () => typeof InitializeEditor === 'function',\n\n\t\t\/**\n\t\t * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.\n\t\t * @remove-in 3.1 this function will not check for gform.isFormEditor().\n\t\t *\/\n\t\tcallIfLoaded: function ( fn ) {\n\t\t\tif ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {\n\t\t\t\tif ( gform.isFormEditor() ) {\n\t\t\t\t\tconsole.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );\n\t\t\t\t}\n\t\t\t\tfn();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\n\t\t\/**\n\t\t * Call a function when all scripts are loaded\n\t\t *\n\t\t * @param function fn the callback function to call when all scripts are loaded\n\t\t *\n\t\t * @returns void\n\t\t *\/\n\t\tinitializeOnLoaded: function( fn ) {\n\t\t\tif ( ! gform.callIfLoaded( fn ) ) {\n\t\t\t\tdocument.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\twindow.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t}\n\t\t},\n\n\t\thooks: { action: {}, filter: {} },\n\t\taddAction: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'action', action, callable, priority, tag );\n\t\t},\n\t\taddFilter: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'filter', action, callable, priority, tag );\n\t\t},\n\t\tdoAction: function( action ) {\n\t\t\tgform.doHook( 'action', action, arguments );\n\t\t},\n\t\tapplyFilters: function( action ) {\n\t\t\treturn gform.doHook( 'filter', action, arguments );\n\t\t},\n\t\tremoveAction: function( action, tag ) {\n\t\t\tgform.removeHook( 'action', action, tag );\n\t\t},\n\t\tremoveFilter: function( action, priority, tag ) {\n\t\t\tgform.removeHook( 'filter', action, priority, tag );\n\t\t},\n\t\taddHook: function( hookType, action, callable, priority, tag ) {\n\t\t\tif ( undefined == gform.hooks[hookType][action] ) {\n\t\t\t\tgform.hooks[hookType][action] = [];\n\t\t\t}\n\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\tif ( undefined == tag ) {\n\t\t\t\ttag = action + '_' + hooks.length;\n\t\t\t}\n\t\t\tif( priority == undefined ){\n\t\t\t\tpriority = 10;\n\t\t\t}\n\n\t\t\tgform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );\n\t\t},\n\t\tdoHook: function( hookType, action, args ) {\n\n\t\t\t\/\/ splice args from object into array and remove first index which is the hook name\n\t\t\targs = Array.prototype.slice.call(args, 1);\n\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action], hook;\n\t\t\t\t\/\/sort by priority\n\t\t\t\thooks.sort(function(a,b){return a[\"priority\"]-b[\"priority\"]});\n\n\t\t\t\thooks.forEach( function( hookItem ) {\n\t\t\t\t\thook = hookItem.callable;\n\n\t\t\t\t\tif(typeof hook != 'function')\n\t\t\t\t\t\thook = window[hook];\n\t\t\t\t\tif ( 'action' == hookType ) {\n\t\t\t\t\t\thook.apply(null, args);\n\t\t\t\t\t} else {\n\t\t\t\t\t\targs[0] = hook.apply(null, args);\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\tif ( 'filter'==hookType ) {\n\t\t\t\treturn args[0];\n\t\t\t}\n\t\t},\n\t\tremoveHook: function( hookType, action, priority, tag ) {\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\t\thooks = hooks.filter( function(hook, index, arr) {\n\t\t\t\t\tvar removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);\n\t\t\t\t\treturn !removeHook;\n\t\t\t\t} );\n\t\t\t\tgform.hooks[hookType][action] = hooks;\n\t\t\t}\n\t\t}\n\t};\n}\n\n\/* ]]> *\/\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gform_legacy_markup_wrapper gform-theme--no-framework gf_simple_horizontal_wrapper newsletter-archive-form_wrapper' data-form-theme='legacy' data-form-index='0' id='gform_wrapper_7' style='display:none'><div id='gf_7' class='gform_anchor' tabindex='-1'><\/div><form method='post' enctype='multipart\/form-data' target='gform_ajax_frame_7' id='gform_7' class='gf_simple_horizontal newsletter-archive-form' action='\/mx\/wp-json\/wp\/v2\/pages\/15256#gf_7' data-formid='7' novalidate>\n                        <div class='gform-body gform_body'><ul id='gform_fields_7' class='gform_fields top_label form_sublabel_below description_below validation_below'><li id=\"field_7_4\" class=\"gfield gfield--type-honeypot gform_validation_container field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_7_4'>Company<\/label><div class='ginput_container'><input name='input_4' id='input_7_4' type='text' value='' autocomplete='new-password'\/><\/div><div class='gfield_description' id='gfield_description_7_4'>This field is for validation purposes and should be left unchanged.<\/div><\/li><li id=\"field_7_1\" class=\"gfield gfield--type-radio gfield--type-choice gf_list_inline gf_inline gfield_contains_required field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' >Newsletter Type<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_7_1'>\n\t\t\t<li class='gchoice gchoice_7_1_0'>\n\t\t\t\t<input name='input_1' type='radio' value='color-appearance-measurement-mx' checked='checked' id='choice_7_1_0'    \/>\n\t\t\t\t<label for='choice_7_1_0' id='label_7_1_0' class='gform-field-label gform-field-label--type-inline'>Medici\u00f3n de Color<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_7_1_1'>\n\t\t\t\t<input name='input_1' type='radio' value='light-display-measurement-mx'  id='choice_7_1_1'    \/>\n\t\t\t\t<label for='choice_7_1_1' id='label_7_1_1' class='gform-field-label gform-field-label--type-inline'>Medici\u00f3n de Iluminaci\u00f3n y Pantallas<\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_7_2\" class=\"gfield gfield--type-select gf_inline gfield_contains_required field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_7_2'>Color Select<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_2' id='input_7_2' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='julio-2024' >Julio 2024<\/option><option value='junio-2024' >Junio 2024<\/option><option value='mayo-2024' >Mayo 2024<\/option><option value='abril-2024' >Abril 2024<\/option><option value='marzo-2024' >Marzo 2024<\/option><option value='febrero-2024' >Febrero 2024<\/option><option value='enero-2024' >Enero 2024<\/option><option value='noviembre-2023' >Noviembre 2023<\/option><option value='octubre-2023' >Octubre 2023<\/option><option value='septiembre-2023' >Septiembre 2023<\/option><option value='agosto-2023' >Agosto 2023<\/option><option value='julio-2023' >Julio 2023<\/option><option value='junio-2023' >Junio 2023<\/option><option value='mayo-2023' >Mayo 2023<\/option><option value='abril-2023' >Abril 2023<\/option><option value='marzo-2023' >Marzo 2023<\/option><option value='febrero-2023' >Febrero 2023<\/option><option value='enero-2023' >Enero 2023<\/option><option value='noviembre-2022' >Noviembre 2022<\/option><option value='octubre-2022' >Octubre 2022<\/option><option value='septiembre-2022' >Septiembre 2022<\/option><option value='agosto-2022' >Agosto 2022<\/option><option value='julio-2022' >Julio 2022<\/option><option value='junio-2022' >Junio 2022<\/option><option value='tendencias-y-tecnologia-de-color-mayo-2022' >Mayo 2022<\/option><option value='abril-2022' >Abril 2022<\/option><option value='marzo-2022' >Marzo 2022<\/option><option value='febrero-2022' >Febrero 2022<\/option><option value='enero-2022' >Enero 2022<\/option><option value='noviembre-2021' >Noviembre 2021<\/option><option value='octubre-2021' >Octubre 2021<\/option><option value='septiembre-2021' >Septiembre 2021<\/option><option value='agosto' >Agosto 2021<\/option><option value='julio-2021' >Julio 2021<\/option><option value='junio-2021' >Junio 2021<\/option><option value='mayo-2021' >Mayo 2021<\/option><option value='abril-2021' >Abril 2021<\/option><\/select><\/div><\/li><li id=\"field_7_3\" class=\"gfield gfield--type-select gf_inline gfield_contains_required field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_7_3'>Light Select<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_3' id='input_7_3' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><\/select><\/div><\/li><\/ul><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_7' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Subscr\u00edbase a Nuestro Bolet\u00edn'  \/> <input type='hidden' name='gform_ajax' value='form_id=7&amp;title=&amp;description=&amp;tabindex=0&amp;theme=legacy&amp;styles=[]&amp;hash=4653548a606aa1c13474a942e7db837c' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_7' value='iframe' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_7' id='gform_theme_7' value='legacy' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_7' id='gform_style_settings_7' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_7' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='7' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_7' value='WyJbXSIsIjE2NDNjMjM1YTVjNThjYjgyYjUyOTgyZTFjMWYyYjZhIl0=' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_7' id='gform_target_page_number_7' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_7' id='gform_source_page_number_7' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div>\n\t\t                <iframe style='display:none;width:0px;height:0px;' src='about:blank' name='gform_ajax_frame_7' id='gform_ajax_frame_7' title='This iframe contains the logic required to handle Ajax powered Gravity Forms.'><\/iframe>\n\t\t                <script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n gform.initializeOnLoaded( function() {gformInitSpinner( 7, 'https:\/\/sensing.konicaminolta.us\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_7').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_7');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_7').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){form_content.find('form').css('opacity', 0);jQuery('#gform_wrapper_7').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_7').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_7').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/ jQuery(document).scrollTop(jQuery('#gform_wrapper_7').offset().top - mt); }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_7').val();gformInitSpinner( 7, 'https:\/\/sensing.konicaminolta.us\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [7, current_page]);window['gf_submitting_7'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_7').replaceWith(confirmation_content);jQuery(document).scrollTop(jQuery('#gf_7').offset().top - mt);jQuery(document).trigger('gform_confirmation_loaded', [7]);window['gf_submitting_7'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_7').text());}else{jQuery('#gform_7').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"7\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_7\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_7\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_7\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 7, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} ); \n\/* ]]> *\/\n<\/script>\n[vc_raw_html]JTNDaWZyYW1lJTIwc3JjJTNEJTIyJTIzJTIyJTIwaWQlM0QlMjJuZXdzbGV0dGVyRnJhbWUlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzY3JvbGxpbmclM0QlMjJubyUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==[\/vc_raw_html][\/vc_column][\/vc_row][vc_row row_height_percent=&#8221;0&#8243; overlay_alpha=&#8221;50&#8243; gutter_size=&#8221;3&#8243; column_width_percent=&#8221;100&#8243; shift_y=&#8221;0&#8243; z_index=&#8221;0&#8243;][vc_column width=&#8221;1\/1&#8243;][vc_raw_js]JTNDc2NyaXB0JTIwdHlwZSUzRCUyMnRleHQlMkZqYXZhc2NyaXB0JTIyJTNFJTIwJTBBJTBBJTIwJTIwJTIwJTIwJTIwJTJGJTJGJTIwJTIwJTIwb2JqLnN0eWxlLmhlaWdodCUyMCUzRCUyMG9iai5jb250ZW50V2luZG93LmRvY3VtZW50LmRvY3VtZW50RWxlbWVudC5zY3JvbGxIZWlnaHQlMjAlMkIlMjAlMjdweCUyNyUzQiUwQSUyMCUyMCUyMCUyMCUyMCUwQSUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMHdpbmRvdy5vbm1lc3NhZ2UlMjAlM0QlMjAlMjhlJTI5JTIwJTNEJTNFJTIwJTdCJTBBJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwaWYlMjAlMjhlLmRhdGEuaGFzT3duUHJvcGVydHklMjglMjJmcmFtZUhlaWdodCUyMiUyOSUyOSUyMCU3QiUwQSUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMGRvY3VtZW50LmdldEVsZW1lbnRCeUlkJTI4JTIybmV3c2xldHRlckZyYW1lJTIyJTI5LnN0eWxlLmhlaWdodCUyMCUzRCUyMCU2MCUyNCU3QmUuZGF0YS5mcmFtZUhlaWdodCUyMCUyQiUyMDMwJTdEcHglNjAlM0IlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlN0QlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlN0QlM0IlMEElMEElMjAlMjAlMjAlMjAlMjAlMEElMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjBqUXVlcnklMjhkb2N1bWVudCUyOS5yZWFkeSUyOGZ1bmN0aW9uJTI4JTI0JTI5JTIwJTdCJTIwJTBBJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTI0JTI4JTI3LmdjaG9pY2VfN18xXzElMjclMjkuaGlkZSUyOCUyOSUzQiUwQSUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyNCUyOCUyMiUyM2lucHV0XzdfMiUyMiUyOS5jaG9zZW4lMjglN0IlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjJkaXNhYmxlX3NlYXJjaCUyMiUzQSUyMHRydWUlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlN0QlMjklM0IlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjQlMjglMjIlMjNpbnB1dF83XzMlMjIlMjkuY2hvc2VuJTI4JTdCJTBBJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIyZGlzYWJsZV9zZWFyY2glMjIlM0ElMjB0cnVlJTBBJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTdEJTI5JTNCJTBBJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwdmFyJTIwYWpheHVybCUyMCUzRCUyMCUyMiUyRndwLWFkbWluJTJGYWRtaW4tYWpheC5waHAlMjIlM0IlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjQlMjglMjIlMjNnZm9ybV83JTIyJTI5LnN1Ym1pdCUyOGZ1bmN0aW9uJTI4ZSUyOSU3QiUwQSUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMGUucHJldmVudERlZmF1bHQlMjglMjklM0IlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjB3aW5kb3cubG9jYXRpb24ucmVwbGFjZSUyOCUyMiUyRm14JTJGY29udGFjdC11cyUyRm5ld3NsZXR0ZXItc2lnbnVwJTIyJTI5JTNCJTBBJTBBJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTdEJTI5JTNCJTBBJTIwJTIwJTIwJTIwJTBBJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTI0JTI4JTIyJTIzZ2Zvcm1fNyUyMCUyM2lucHV0XzdfMiUyMG9wdGlvbiUzQWZpcnN0LW9mLXR5cGUlMjIlMjkuYXR0ciUyOCUyMnNlbGVjdGVkJTIyJTJDJTIwJTIyc2VsZWN0ZWQlMjIlMjkudHJpZ2dlciUyOCUyMmNob3NlbiUzQXVwZGF0ZWQlMjIlMjklM0IlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjB2YXIlMjBzcmMlMjAlM0QlMjAlMjIlMkZteCUyRm5ld3NsZXR0ZXItYXJjaGl2ZSUyRiUyMiUyMCUyQiUyMCUyNCUyOCUyMiUyM2lucHV0XzdfMiUyMiUyOS52YWwlMjglMjklM0IlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjQlMjglMjIlMjNuZXdzbGV0dGVyRnJhbWUlMjIlMjkuYXR0ciUyOCUyMnNyYyUyMiUyQyUyMHNyYyUyOSUzQiUwQSUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUwQSUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyNCUyOCUyN2lucHV0JTVCdHlwZSUzRHJhZGlvJTVEJTVCbmFtZSUzRGlucHV0XzElNUQlMjclMjkuY2hhbmdlJTI4ZnVuY3Rpb24lMjglMjklMjAlN0IlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjBpZiUyMCUyOHRoaXMudmFsdWUlMjAlM0QlM0QlMjAlMjdjb2xvci1hcHBlYXJhbmNlLW1lYXN1cmVtZW50LW14JTI3JTI5JTIwJTdCJTBBJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTI0JTI4JTIyJTIzZ2Zvcm1fNyUyMCUyM2lucHV0XzdfMiUyMG9wdGlvbiUzQWZpcnN0LW9mLXR5cGUlMjIlMjkuYXR0ciUyOCUyMnNlbGVjdGVkJTIyJTJDJTIwJTIyc2VsZWN0ZWQlMjIlMjklM0IlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjQlMjglMjIlMjNnZm9ybV83JTIwJTIzaW5wdXRfN18yJTIyJTI5LmF0dHIlMjglMjJkaXNhYmxlZCUyMiUyQyUyMCUyMmZhbHNlJTIyJTI5JTNCJTBBJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTI0JTI4JTIyZ2Zvcm1fNyUyMCUyM2lucHV0XzdfMl9jaG9zZW4lMjIlMjkucmVtb3ZlQ2xhc3MlMjglMjJjaG9zZW4tZGlzYWJsZWQlMjIlMjkudHJpZ2dlciUyOCUyMmNob3NlbiUzQXVwZGF0ZWQlMjIlMjklM0IlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjBzcmMlMjAlM0QlMjAlMjIlMkZteCUyRm5ld3NsZXR0ZXItYXJjaGl2ZSUyRiUyMiUyMCUyQiUyMCUyNCUyOCUyMiUyM2lucHV0XzdfMiUyMiUyOS52YWwlMjglMjklM0IlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjQlMjglMjIlMjNuZXdzbGV0dGVyRnJhbWUlMjIlMjkuYXR0ciUyOCUyMnNyYyUyMiUyQyUyMHNyYyUyOSUzQiUwQSUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCU3RGVsc2UlMjBpZiUyOHRoaXMudmFsdWUlMjAlM0QlM0QlMjAlMjdsaWdodC1kaXNwbGF5LW1lYXN1cmVtZW50LW14JTI3JTI5JTdCJTBBJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTI0JTI4JTIyJTIzZ2Zvcm1fNyUyMCUyM2lucHV0XzdfMyUyMG9wdGlvbiUzQWZpcnN0LW9mLXR5cGUlMjIlMjkuYXR0ciUyOCUyMnNlbGVjdGVkJTIyJTJDJTIwJTIyc2VsZWN0ZWQlMjIlMjklM0IlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjQlMjglMjIlMjNnZm9ybV83JTIwJTIzaW5wdXRfN18zJTIyJTI5LmF0dHIlMjglMjJkaXNhYmxlZCUyMiUyQyUyMCUyMmZhbHNlJTIyJTI5JTNCJTBBJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTI0JTI4JTIyZ2Zvcm1fNyUyMCUyM2lucHV0XzdfM19jaG9zZW4lMjIlMjkucmVtb3ZlQ2xhc3MlMjglMjJjaG9zZW4tZGlzYWJsZWQlMjIlMjkudHJpZ2dlciUyOCUyMmNob3NlbiUzQXVwZGF0ZWQlMjIlMjklM0IlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjBzcmMlMjAlM0QlMjAlMjIlMkZteCUyRm5ld3NsZXR0ZXItYXJjaGl2ZSUyRiUyMiUyMCUyQiUyMCUyNCUyOCUyMiUyM2lucHV0XzdfMyUyMiUyOS52YWwlMjglMjklM0IlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjQlMjglMjIlMjNuZXdzbGV0dGVyRnJhbWUlMjIlMjkuYXR0ciUyOCUyMnNyYyUyMiUyQyUyMHNyYyUyOSUzQiUwQSUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCU3RCUwQSUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCU3RCUyOSUzQiUwQSUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUwQSUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyNCUyOCUyNyUyM2lucHV0XzdfMiUyNyUyOS5jaG9zZW4lMjglMjkub24lMjglMjdjaGFuZ2UlMjclMkMlMjBmdW5jdGlvbiUyMCUyOCUyOSUyMCU3QiUwQSUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMHZhciUyMHNyYyUyMCUzRCUyMCUyMiUyRm14JTJGbmV3c2xldHRlci1hcmNoaXZlJTJGJTIyJTIwJTJCJTIwJTI0JTI4dGhpcyUyOS52YWwlMjglMjklM0IlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjQlMjglMjIlMjNuZXdzbGV0dGVyRnJhbWUlMjIlMjkuYXR0ciUyOCUyMnNyYyUyMiUyQyUyMHNyYyUyOSUzQiUwQSUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUwQSUwQSUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMHJldHVybiUyMGZhbHNlJTNCJTBBJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTBBJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTdEJTI5JTNCJTBBJTIwJTIwJTIwJTIwJTBBJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTI0JTI4JTI3JTIzaW5wdXRfN18zJTI3JTI5LmNob3NlbiUyOCUyOS5vbiUyOCUyN2NoYW5nZSUyNyUyQyUyMGZ1bmN0aW9uJTIwJTI4JTI5JTIwJTdCJTBBJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwdmFyJTIwc3JjJTIwJTNEJTIwJTIyJTJGbXglMkZuZXdzbGV0dGVyLWFyY2hpdmUlMkYlMjIlMjAlMkIlMjAlMjQlMjh0aGlzJTI5LnZhbCUyOCUyOSUzQiUwQSUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyNCUyOCUyMiUyM25ld3NsZXR0ZXJGcmFtZSUyMiUyOS5hdHRyJTI4JTIyc3JjJTIyJTJDJTIwc3JjJTI5JTNCJTBBJTBBJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwcmV0dXJuJTIwZmFsc2UlM0IlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlN0QlMjklM0IlMEElMjAlMjAlMjAlMjAlN0QlMjklM0IlMEElMEElMEElMjAlMEElMEElM0MlMkZzY3JpcHQlM0U=[\/vc_raw_js][\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>[vc_row row_height_percent=&#8221;0&#8243; override_padding=&#8221;yes&#8221; h_padding=&#8221;2&#8243; top_padding=&#8221;0&#8243; bottom_padding=&#8221;1&#8243; overlay_alpha=&#8221;50&#8243; gutter_size=&#8221;3&#8243; column_width_percent=&#8221;100&#8243; shift_y=&#8221;0&#8243; z_index=&#8221;0&#8243;][vc_column width=&#8221;1\/1&#8243;][vc_single_image media=&#8221;7867&#8243; media_width_percent=&#8221;100&#8243;][\/vc_column][\/vc_row][vc_row row_height_percent=&#8221;0&#8243; override_padding=&#8221;yes&#8221; h_padding=&#8221;2&#8243; top_padding=&#8221;1&#8243; bottom_padding=&#8221;2&#8243; overlay_alpha=&#8221;50&#8243; [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-15256","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v24.4 (Yoast SEO v24.4) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\r\n<title>Newsletter Archive | Konica Minolta Sensing<\/title>\r\n<meta name=\"description\" content=\"Missed a Konica Newsletter in the past? Our newsletter archive is the perfect place to catch-up or reread one of our past e-newsletters.\" \/>\r\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\r\n<link rel=\"canonical\" href=\"https:\/\/sensing.konicaminolta.us\/mx\/newsletter-archive\/\" \/>\r\n<meta property=\"og:locale\" content=\"es_MX\" \/>\r\n<meta property=\"og:type\" content=\"article\" \/>\r\n<meta property=\"og:title\" content=\"Newsletter Archive | Konica Minolta Sensing\" \/>\r\n<meta property=\"og:description\" content=\"Missed a Konica Newsletter in the past? Our newsletter archive is the perfect place to catch-up or reread one of our past e-newsletters.\" \/>\r\n<meta property=\"og:url\" content=\"https:\/\/sensing.konicaminolta.us\/mx\/newsletter-archive\/\" \/>\r\n<meta property=\"og:site_name\" content=\"Konica Minolta Sensing\" \/>\r\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/KonicaMinoltaSensingAmericas\" \/>\r\n<meta property=\"article:modified_time\" content=\"2020-04-24T02:42:00+00:00\" \/>\r\n<meta property=\"og:image\" content=\"https:\/\/sensing.konicaminolta.us\/wp-content\/uploads\/14kmus_10oct_learningcenter_newsletter-archive-7qox828926.jpg\" \/>\r\n\t<meta property=\"og:image:width\" content=\"1130\" \/>\r\n\t<meta property=\"og:image:height\" content=\"253\" \/>\r\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\r\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\r\n<meta name=\"twitter:title\" content=\"Newsletter Archive | Konica Minolta Sensing\" \/>\r\n<meta name=\"twitter:description\" content=\"Missed a Konica Newsletter in the past? Our newsletter archive is the perfect place to catch-up or reread one of our past e-newsletters.\" \/>\r\n<meta name=\"twitter:site\" content=\"@KMSensingUS\" \/>\r\n<meta name=\"twitter:label1\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutos\" \/>\r\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/sensing.konicaminolta.us\/mx\/newsletter-archive\/\",\"url\":\"https:\/\/sensing.konicaminolta.us\/mx\/newsletter-archive\/\",\"name\":\"Newsletter Archive | Konica Minolta Sensing\",\"isPartOf\":{\"@id\":\"https:\/\/sensing.konicaminolta.us\/mx\/#website\"},\"datePublished\":\"2020-03-05T13:37:19+00:00\",\"dateModified\":\"2020-04-24T02:42:00+00:00\",\"description\":\"Missed a Konica Newsletter in the past? Our newsletter archive is the perfect place to catch-up or reread one of our past e-newsletters.\",\"breadcrumb\":{\"@id\":\"https:\/\/sensing.konicaminolta.us\/mx\/newsletter-archive\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/sensing.konicaminolta.us\/mx\/newsletter-archive\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/sensing.konicaminolta.us\/mx\/newsletter-archive\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/sensing.konicaminolta.us\/mx\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Archivo de Boletines\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/sensing.konicaminolta.us\/mx\/#website\",\"url\":\"https:\/\/sensing.konicaminolta.us\/mx\/\",\"name\":\"Konica Minolta Sensing\",\"description\":\"Color, Light, and LED Measuring Instruments\",\"publisher\":{\"@id\":\"https:\/\/sensing.konicaminolta.us\/mx\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/sensing.konicaminolta.us\/mx\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/sensing.konicaminolta.us\/mx\/#organization\",\"name\":\"Konica Minolta Sensing Americas\",\"url\":\"https:\/\/sensing.konicaminolta.us\/mx\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/sensing.konicaminolta.us\/mx\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/sensing.konicaminolta.us\/wp-content\/uploads\/kmsa-vertical.png\",\"contentUrl\":\"https:\/\/sensing.konicaminolta.us\/wp-content\/uploads\/kmsa-vertical.png\",\"width\":195,\"height\":135,\"caption\":\"Konica Minolta Sensing Americas\"},\"image\":{\"@id\":\"https:\/\/sensing.konicaminolta.us\/mx\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/KonicaMinoltaSensingAmericas\",\"https:\/\/x.com\/KMSensingUS\",\"https:\/\/www.instagram.com\/kmsensingus\/\",\"http:\/\/www.linkedin.com\/company\/531676?trk=tyah\",\"https:\/\/www.pinterest.com\/KMSensingUS\/\",\"http:\/\/www.youtube.com\/KonicaMinoltaSense\"]}]}<\/script>\r\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Newsletter Archive | Konica Minolta Sensing","description":"Missed a Konica Newsletter in the past? Our newsletter archive is the perfect place to catch-up or reread one of our past e-newsletters.","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:\/\/sensing.konicaminolta.us\/mx\/newsletter-archive\/","og_locale":"es_MX","og_type":"article","og_title":"Newsletter Archive | Konica Minolta Sensing","og_description":"Missed a Konica Newsletter in the past? Our newsletter archive is the perfect place to catch-up or reread one of our past e-newsletters.","og_url":"https:\/\/sensing.konicaminolta.us\/mx\/newsletter-archive\/","og_site_name":"Konica Minolta Sensing","article_publisher":"https:\/\/www.facebook.com\/KonicaMinoltaSensingAmericas","article_modified_time":"2020-04-24T02:42:00+00:00","og_image":[{"width":1130,"height":253,"url":"https:\/\/sensing.konicaminolta.us\/wp-content\/uploads\/14kmus_10oct_learningcenter_newsletter-archive-7qox828926.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_title":"Newsletter Archive | Konica Minolta Sensing","twitter_description":"Missed a Konica Newsletter in the past? Our newsletter archive is the perfect place to catch-up or reread one of our past e-newsletters.","twitter_site":"@KMSensingUS","twitter_misc":{"Tiempo de lectura":"2 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/sensing.konicaminolta.us\/mx\/newsletter-archive\/","url":"https:\/\/sensing.konicaminolta.us\/mx\/newsletter-archive\/","name":"Newsletter Archive | Konica Minolta Sensing","isPartOf":{"@id":"https:\/\/sensing.konicaminolta.us\/mx\/#website"},"datePublished":"2020-03-05T13:37:19+00:00","dateModified":"2020-04-24T02:42:00+00:00","description":"Missed a Konica Newsletter in the past? Our newsletter archive is the perfect place to catch-up or reread one of our past e-newsletters.","breadcrumb":{"@id":"https:\/\/sensing.konicaminolta.us\/mx\/newsletter-archive\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/sensing.konicaminolta.us\/mx\/newsletter-archive\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/sensing.konicaminolta.us\/mx\/newsletter-archive\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/sensing.konicaminolta.us\/mx\/"},{"@type":"ListItem","position":2,"name":"Archivo de Boletines"}]},{"@type":"WebSite","@id":"https:\/\/sensing.konicaminolta.us\/mx\/#website","url":"https:\/\/sensing.konicaminolta.us\/mx\/","name":"Konica Minolta Sensing","description":"Color, Light, and LED Measuring Instruments","publisher":{"@id":"https:\/\/sensing.konicaminolta.us\/mx\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/sensing.konicaminolta.us\/mx\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/sensing.konicaminolta.us\/mx\/#organization","name":"Konica Minolta Sensing Americas","url":"https:\/\/sensing.konicaminolta.us\/mx\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/sensing.konicaminolta.us\/mx\/#\/schema\/logo\/image\/","url":"https:\/\/sensing.konicaminolta.us\/wp-content\/uploads\/kmsa-vertical.png","contentUrl":"https:\/\/sensing.konicaminolta.us\/wp-content\/uploads\/kmsa-vertical.png","width":195,"height":135,"caption":"Konica Minolta Sensing Americas"},"image":{"@id":"https:\/\/sensing.konicaminolta.us\/mx\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/KonicaMinoltaSensingAmericas","https:\/\/x.com\/KMSensingUS","https:\/\/www.instagram.com\/kmsensingus\/","http:\/\/www.linkedin.com\/company\/531676?trk=tyah","https:\/\/www.pinterest.com\/KMSensingUS\/","http:\/\/www.youtube.com\/KonicaMinoltaSense"]}]}},"_links":{"self":[{"href":"https:\/\/sensing.konicaminolta.us\/mx\/wp-json\/wp\/v2\/pages\/15256","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sensing.konicaminolta.us\/mx\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/sensing.konicaminolta.us\/mx\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/sensing.konicaminolta.us\/mx\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/sensing.konicaminolta.us\/mx\/wp-json\/wp\/v2\/comments?post=15256"}],"version-history":[{"count":0,"href":"https:\/\/sensing.konicaminolta.us\/mx\/wp-json\/wp\/v2\/pages\/15256\/revisions"}],"wp:attachment":[{"href":"https:\/\/sensing.konicaminolta.us\/mx\/wp-json\/wp\/v2\/media?parent=15256"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}