
            <script>
            (function(){
                const timer = [{"countdown_start":"","countdown_end":"2027\/03\/09 10:00","countdown_text":"To the conference remains:","turn_off_countdown_button":"true"}];
                // normalize datetime strings
                for (let i = 0; i < timer.length; i++) {
                    if (timer[i] && timer[i]["countdown_end"]) {
                        timer[i]["countdown_end"] = timer[i]["countdown_end"].replace(/\//g, "-").replace(" ", "T");
                    }
                }

                const TR = {"day_one":"day_one","day_two":"day_two","day_five":"day_five","hour_one":"hour_one","hour_two":"hour_two","hour_five":"hour_five","minute_one":"minute_one","minute_two":"minute_two","minute_five":"minute_five","second_one":"second_one","second_two":"second_two","second_five":"second_five","day":"day","hour":"hour","minute":"minute","second":"second","day_singular":"day","day_plural":"days","hour_singular":"hour","hour_plural":"hours","minute_singular":"minute","minute_plural":"minutes","second_singular":"second","second_plural":"seconds","register_text":"<span>REGISTER<br\/>Get a free ticket<\/span>","register_link":"\/en\/registration\/","countdown_btn_text":"Book a stand","countdown_btn_url":"\/en\/become-an-exhibitor"};
                const locale = "en_US";
                const showSeconds = true;
                const targetId = 92800;

                jQuery(document).ready(function($) {
                    const intervals = {};
                    let j = 0; // pointer to current timer item

                    function updateCountdownStop(elementId) {
                        if (intervals[elementId]) {
                            clearInterval(intervals[elementId]);
                            delete intervals[elementId];
                        }
                    }

                    function pluralizePolish(count, singular, plural, pluralGenitive) {
                        if (count === 1 || (count % 10 === 1 && count % 100 !== 11)) {
                            return count + " " + singular;
                        } else if (count % 10 >= 2 && count % 10 <= 4 && (count % 100 < 10 || count % 100 >= 20)) {
                            return count + " " + plural;
                        } else {
                            return count + " " + pluralGenitive;
                        }
                    }

                    function pluralizeEnglish(count, noun) {
                        return count + " " + (count === 1 ? noun : (noun + "s"));
                    }

                    function pluralizeGerman(count, singular, plural) {
                        return count + " " + (count === 1 ? singular : plural);
                    }

                    // Wrapper using TR translations
                    function buildEndMessage(days, hours, minutes, seconds) {
                        if (locale === "pl_PL") {
                            const d = pluralizePolish(days, TR.day_one, TR.day_two, TR.day_five);
                            const h = pluralizePolish(hours, TR.hour_one, TR.hour_two, TR.hour_five);
                            const m = pluralizePolish(minutes, TR.minute_one, TR.minute_two, TR.minute_five);
                            const s = showSeconds ? " " + pluralizePolish(seconds, TR.second_one, TR.second_two, TR.second_five) : "";
                            return d + " " + h + " " + m + s;
                        } else if (locale === "de_DE") {
                            const d = pluralizeGerman(days, TR.day_singular, TR.day_plural);
                            const h = pluralizeGerman(hours, TR.hour_singular, TR.hour_plural);
                            const m = pluralizeGerman(minutes, TR.minute_singular, TR.minute_plural);
                            const s = showSeconds ? " " + pluralizeGerman(seconds, TR.second_singular, TR.second_plural) : "";
                            return d + " " + h + " " + m + s;
                        } else {
                            const d = pluralizeEnglish(days, TR.day);
                            const h = pluralizeEnglish(hours, TR.hour);
                            const m = pluralizeEnglish(minutes, TR.minute);
                            const s = showSeconds ? " " + pluralizeEnglish(seconds, TR.second) : "";
                            return d + " " + h + " " + m + s;
                        }
                    }

                    function updateCountdown(elementId) {
                        // ensure we clear previous interval if exists
                        updateCountdownStop(elementId);

                        intervals[elementId] = setInterval(function() {
                            if (typeof timer[j] !== "undefined" && timer[j] != null) {
                                const rightNow = new Date();
                                const endTime = new Date(timer[j]["countdown_end"]);
                                // keep hours as-is; in case you need timezone adjustments, handle here
                                endTime.setHours(endTime.getHours());
                                const distance = endTime - rightNow;

                                const days = Math.floor(distance / (1000 * 60 * 60 * 24));
                                const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
                                const minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
                                const seconds = Math.floor((distance % (1000 * 60)) / 1000);

                                let endMessage = "";

                                if (distance < 0) {
                                    // move to next timer entry
                                    j++;
                                    if (typeof timer[j] !== "undefined" && timer[j] != null && timer[j]["countdown_text"] != "") {
                                        $("#timer-header-text-" + elementId).text(timer[j]["countdown_text"]);
                                        $("#timer-button-" + elementId).text(timer[j]["countdown_btn_text"]);
                                        $("#timer-button-" + elementId).attr("href", timer[j]["countdown_btn_url"]);
                                    }
                                } else {
                                    endMessage = buildEndMessage(days, hours, minutes, seconds);
                                    $("#pwe-countdown-timer-" + elementId).text(endMessage);
                                }
                            } else {
                                // no more timers; stop and hide
                                updateCountdownStop(elementId);
                                $("#pwe-countdown-timer-" + elementId).parent().hide(0);
                            }
                        }, 1000);
                    }

                    // start
                    updateCountdown(targetId);

                    // Change button on sticky main timer (existing logic)
                    function handleClassChange(mutationsList, observer) {
                        for (let mutation of mutationsList) {
                            if (mutation.type === "attributes" && mutation.attributeName === "class") {
                                const targetElement = mutation.target;
                                const customBtn = document.getElementById("timer-button-" + targetId);
                                const hasStuckedClass = targetElement.classList.contains("is_stucked");
                                if (customBtn) {
                                    const buttonLink = customBtn.href || "";
                                    if (hasStuckedClass) {
                                        // use translations from TR
                                        customBtn.innerHTML = TR.register_text || '<span>Zarejestruj się<br/>Odbierz darmowy bilet</span>';
                                        customBtn.href = TR.register_link || "/rejestracja/";
                                    } else {
                                        customBtn.innerHTML = "<span>" + (TR.countdown_btn_text || "Zostań wystawcą") + "</span>";
                                        customBtn.href = TR.countdown_btn_url || "/zostan-wystawca/";
                                    }
                                }
                            }
                        }
                    }

                    let is_stucked = false;
                    const targetElement = document.querySelector(".sticky-element");
                    const mainTimerElement = document.querySelector("#main-timer");
                    const observer = new MutationObserver(handleClassChange);

                    if (mainTimerElement) {
                        const config = { attributes: true, attributeFilter: ["class"] };
                        const showRegisterBarValue = mainTimerElement.getAttribute("data-show-register-bar");
                        if (targetElement && showRegisterBarValue !== "true") {
                            observer.observe(targetElement, config);
                            targetElement.setAttribute("data-is-stucked", is_stucked);
                        }
                    }
                });
            })();
            </script>
            

{"id":253,"date":"2024-01-29T14:17:58","date_gmt":"2024-01-29T13:17:58","guid":{"rendered":"https:\/\/winewarsawexpo.com\/?page_id=253"},"modified":"2025-08-08T14:47:31","modified_gmt":"2025-08-08T12:47:31","slug":"conferences","status":"publish","type":"page","link":"https:\/\/winewarsawexpo.com\/en\/conferences\/","title":{"rendered":"Conference Of Modern Solutions In The Wine Industry"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_row][vc_column width=&#8221;1\/1&#8243;]<div class=\"pwelement pwelement_90428\">\r\n        <style>\r\n            .row-parent:has(.pwelement_90428 .pwe-header) {\r\n                max-width: 100%;\r\n                padding: 0 !important;\r\n            }\r\n            .wpb_column:has(.pwelement_90428 .pwe-header) {\r\n                max-width: 100%;\r\n            }\r\n            .pwelement_90428 .pwe-header-wrapper {\r\n                min-height: 60vh;\r\n                max-width: 1200px;\r\n                margin: 0 auto;\r\n                display: flex;\r\n                z-index: 2;\r\n            }\r\n            .pwelement_90428 .pwe-header-logo {\r\n                max-width: 400px !important;\r\n                width: 100%;\r\n                height: auto;\r\n                z-index: 1;\r\n            }\r\n            .pwelement_90428 .pwe-header-background {\r\n                background-size: cover;\r\n                background-repeat: no-repeat;\r\n                background-position: center;\r\n            }\r\n            .pwelement_90428 .pwe-header-text {\r\n                padding: 18px 0;\r\n                z-index: 1;\r\n            }\r\n            .pwelement_90428 .pwe-header-text :is(h1, h2), .pwe-header .pwe-logotypes-title h4 {\r\n                color: white;\r\n                text-transform: uppercase;\r\n                text-align: center;\r\n                width: auto;\r\n            }\r\n            .pwelement_90428 .pwe-header .pwe-logotypes-title {\r\n                justify-content: center;\r\n            }\r\n            .pwelement_90428 .pwe-header .pwe-logotypes-title h4 {\r\n                box-shadow: 9px 9px 0px -6px white;\r\n            }\r\n            .pwelement_90428 .pwe-header-text h1 {\r\n                font-size: 30px;\r\n            }\r\n            .pwelement_90428 .pwe-header-text h2 {\r\n                font-size: 36px;\r\n            }\r\n            .pwelement_90428 .pwe-header .slides div p,\r\n            .pwelement_90428 .pwe-header .pwe-logotypes-gallery-wrapper div p{\r\n                color: white;\r\n            }\r\n            .pwelement_90428 .pwe-header .dots-container {\r\n                display: none !important;\r\n            }\r\n            .pwelement_90428 .pwe-header .pwe-header-logotypes {\r\n                transition: .3s ease;\r\n                opacity: 0;\r\n            }\r\n            @media (min-width: 300px) and (max-width: 1200px) {\r\n                .pwelement_90428 .pwe-header-text h1 {\r\n                    font-size: calc(20px + (30 - 20) * ( (100vw - 300px) \/ (1200 - 300) ));\r\n                }\r\n                .pwelement_90428 .pwe-header-text h2 {\r\n                    font-size: calc(24px + (36 - 24) * ( (100vw - 300px) \/ (1200 - 300) ));\r\n                }\r\n            }\r\n            @media (max-width: 960px) {\r\n                .row-parent:has(.pwelement_90428 .pwe-header) {\r\n                    padding: 0 !important;\r\n                }\r\n                .pwelement_90428 .pwe-btn-container a {\r\n                    min-width: 280px !important;\r\n                }\r\n            }\r\n        <\/style>\r\n    <style>\r\n        @media (max-width: 569px) {\r\n            #pweHeader .pwe-header-container {\r\n                background-image: url(\/doc\/header_mobile.webp) !important;\r\n            }\r\n        }\r\n    <\/style>\r\n<style>\r\n    .pwelement_90428 .pwe-header-container:before {\r\n        content: \"\";\r\n        position: absolute;\r\n        top: 0;\r\n        left: 0;\r\n        right: 0;\r\n        bottom: 0;\r\n        background-color: ;\r\n        opacity: 0;\r\n        z-index: 0;\r\n    }\r\n    .pwelement_90428 .pwe-header-wrapper {\r\n        min-height: auto !important;\r\n        flex-direction: column;\r\n        justify-content: center;\r\n        align-items: center;\r\n    }\r\n    .pwelement_90428 .header-wrapper-column {\r\n        max-width: 650px;\r\n        width: 100%;\r\n        justify-content: space-evenly;\r\n        align-items: center;\r\n        display: flex;\r\n        flex-direction: column;\r\n        padding: 36px;\r\n    }\r\n    .pwelement_90428 .pwe-header-simple-logo {\r\n        display: flex;\r\n        flex-direction: column;\r\n        justify-content: center;\r\n        align-items: center;\r\n        gap: 18px;\r\n    }\r\n    .pwelement_90428 .pwe-header-simple-logo .pwe-btn-container {\r\n        width: 240px;\r\n        height: 50px;\r\n        padding: 0;\r\n    }\r\n    .pwelement_90428 .pwe-header .pwe-btn {\r\n        background-color: #5a7d7c !important;\r\n        border: #5a7d7c !important;\r\n        color: white !important;\r\n        width: 100%;\r\n        height: 100%;\r\n        transform: scale(1) !important;\r\n        text-transform: uppercase;\r\n        transition: .3s ease;\r\n        font-size: 15px;\r\n        font-weight: 600;\r\n        padding: 6px 18px !important;\r\n        letter-spacing: 0.1em;\r\n        text-align: center;\r\n        display: flex;\r\n        justify-content: center;\r\n        align-items: center;\r\n    }\r\n    .pwelement_90428 .pwe-header-simple-logo .pwe-btn:hover {\r\n        color: white;\r\n        background-color: #466968!important;\r\n        border: 2px solid #466968!important;\r\n    }\r\n    .pwelement_90428 .pwe-header-text {\r\n        display: flex;\r\n        flex-direction: column-reverse;\r\n    }\r\n    .pwelement_90428 .pwe-header-text h2 {\r\n        font-size: 40px;\r\n        margin: 0;\r\n    }\r\n    @media (max-width: 1200px) {\r\n        .pwelement_90428 .pwe-header-text h2 {\r\n            font-size: calc(24px + (40 - 24) * ( (100vw - 300px) \/ (1200 - 300) ));\r\n        }\r\n    }\r\n    @media (min-width: 960px) {\r\n        .pwelement_90428 .pwe-header-wrapper {\r\n            min-height: 350px !important;\r\n            height: 350px;\r\n        }\r\n        .pwelement_90428 .header-wrapper-column {\r\n            max-width: 1200px;\r\n            flex-direction: row;\r\n            gap: 60px;\r\n        }\r\n    }\r\n    @media (max-width: 960px) {\r\n        .pwelement_90428 .header-wrapper-column {\r\n            padding: 18px;\r\n        }\r\n    }\r\n<\/style>\r\n\r\n<div id=\"pweHeader\" class=\"pwe-header\">\r\n    <div style=\"background-image: url(https:\/\/winewarsawexpo.com\/doc\/background.webp);\"  class=\"pwe-header-container pwe-header-background\">\r\n        <div class=\"pwe-header-wrapper\">\r\n\r\n            <div class=\"header-wrapper-column\">\r\n                    <div class=\"pwe-header-simple-logo\">\r\n                        <img decoding=\"async\" class=\"pwe-header-logo\" src=\"\/doc\/kongres.webp\" alt=\"logo-Wine Warsaw Expo\">\r\n                        <div id=\"pweBtnRegistration\" class=\"pwe-btn-container header-button\">\r\n                            <a id=\"main-content\" class=\"pwe-link pwe-btn\" href=\"\/en\/registration\/\" alt=\"link to registration\">Take part<\/span><\/a>\r\n                        <\/div>\r\n                    <\/div>\r\n                <div class=\"pwe-header-text\">\r\n                    <h1>Conference Of Modern Solutions In The Wine Industry<\/h1>\r\n                    <h2>march 9-11, 2027<\/h2>\r\n                <\/div>\r\n            <\/div>\r\n\r\n        <\/div>\r\n    <\/div>\r\n<\/div><\/div>[\/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;2&#8243; bottom_padding=&#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; uncode_shortcode_id=&#8221;147349&#8243;][vc_column width=&#8221;1\/1&#8243;]<div class=\"pwelement pwelement_32749\"><div style=\"visibility: hidden; width: 0; height: 0;\" id=\"main-content\">...<\/div><style>\r\n                    .row-parent:has(.pwelement_32749) {\r\n                        background: #590118;\r\n                        max-width: 100%;\r\n                        padding: 0 !important;\r\n                    }\r\n                    .row-parent:has(.pwelement_32749) {\r\n                        background: #590118;\r\n                        max-width: 100%;\r\n                        padding: 0 !important;\r\n                    }\r\n                    .pwelement_32749 #main-timer p {\r\n                        color: white!important;\r\n                        margin: 9px auto;\r\n                        font-size: 18px !important;\r\n                    }\r\n                    .pwelement_32749 .pwe-btn {\r\n                        color: white!important;\r\n                        background-color: #5a7d7c!important;\r\n                        border: 1px solid #5a7d7c!important;\r\n                        margin: 9px 18px;\r\n                        transform: scale(1) !important;\r\n                    }\r\n                    .pwelement_32749 .pwe-btn:hover {\r\n                        color: white!important;\r\n                        background-color: #466968!important;\r\n                        border: 1px solid #466968!important;\r\n                    }\r\n                    .pwelement_32749 .pwe-timer-text {\r\n                        font-weight: 700;\r\n                        text-transform: uppercase;\r\n                        margin: 9px auto;\r\n                    }\r\n                    .pwelement_32749 .countdown-container {\r\n                        display: flex;\r\n                        justify-content: space-evenly;\r\n                        flex-wrap: wrap;\r\n                        \r\n                        align-items: center;\r\n                        max-width: 1200px;\r\n                        margin: 0 auto;\r\n                    }\r\n                    .pwelement_32749 .pwe-countdown-timer {\r\n                        min-width: 450px;\r\n                        text-align: center;\r\n                    }\r\n                    @media (min-width: 300px) and (max-width: 1200px) {\r\n                        .pwelement_32749 #main-timer p {\r\n                            font-size: calc(14px + (18 - 14) * ( (100vw - 300px) \/ (1200 - 300) )) !important;\r\n                        }\r\n                    }\r\n                    @media (max-width:570px){\r\n                        .pwelement_32749 .countdown-container {\r\n                            display: flex;\r\n                            flex-wrap: wrap;\r\n                            justify-content: space-evenly;\r\n                            align-items: baseline;\r\n                            margin: 8px auto;\r\n                        }\r\n                        .pwelement_32749 .pwe-countdown-timer {\r\n                            min-width: 100%;\r\n                        }\r\n                        .pwelement_32749 #main-timer p {\r\n                            margin: 0 auto;\r\n                        }\r\n                    }\r\n                    @media (max-width:959px){\r\n                        .wpb_column:has(.pwelement_32749) {\r\n                            padding-top: 0 !important;\r\n                        }\r\n                    }<\/style><div id=\"main-timer\" class=\"countdown-container\" data-show-register-bar=\"\"><p id=\"timer-header-text-92800\" class=\"timer-header-text pwe-timer-text\">To the conference remains:<\/p><p id=\"pwe-countdown-timer-92800\" class=\"pwe-countdown-timer pwe-timer-text\">\r\n                        304 days 16 hours 33 minutes 37  seconds \r\n                            <\/p><\/div><\/div>[\/vc_column][\/vc_row][vc_row unlock_row=&#8221;&#8221; 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; mobile_visibility=&#8221;yes&#8221; uncode_shortcode_id=&#8221;185675&#8243; row_name=&#8221;program&#8221;][vc_column width=&#8221;1\/1&#8243;][vc_custom_heading heading_semantic=&#8221;h4&#8243; text_size=&#8221;h4&#8243; text_transform=&#8221;uppercase&#8221; uncode_shortcode_id=&#8221;177928&#8243; el_class=&#8221;main-heading-text&#8221;]Participate in the industry events as part of the Conference Of Modern Solutions In The Wine Industry:[\/vc_custom_heading][\/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; uncode_shortcode_id=&#8221;559790&#8243; row_name=&#8221;program&#8221;][vc_column width=&#8221;1\/1&#8243;]<div id=\"conference-cap\" class=\"conference_cap__main-container\"><div class=\"conference_cap__conf-slug-navigation\"><img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/wine-2026-wineme\/conf_img_en.jpg\" alt=\"wine-2026-wineme\" id=\"nav_wine-2026-wineme\" class=\"conference_cap__conf-slug-img\"><img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/winebeerhoreca-trendy-2026\/conf_img_en.jpg\" alt=\"winebeerhoreca-trendy-2026\" id=\"nav_winebeerhoreca-trendy-2026\" class=\"conference_cap__conf-slug-img\"><img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/beer-debata-przyszlosc-piw-regionalnych-2026\/conf_img_en.jpg\" alt=\"beer-debata-przyszlosc-piw-regionalnych-2026\" id=\"nav_beer-debata-przyszlosc-piw-regionalnych-2026\" class=\"conference_cap__conf-slug-img\"><img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/beer-wine-medal-2026\/conf_img_en.webp\" alt=\"beer-wine-medal-2026\" id=\"nav_beer-wine-medal-2026\" class=\"conference_cap__conf-slug-img\"><\/div><div class=\"conference_cap__conf-slugs-container\"><div id=\"conf_wine-2026-wineme\" class=\"conference_cap__conf-slug\"><div class=\"conference_cap__conf-slug-header\">\r\n                                <img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/wine-2026-wineme\/conf_img_en.jpg\" alt=\"Polish Wine Zone. Knowledge and education for the industry\" class=\"conference_cap__conf-slug-image\">\r\n                                <div class=\"conference_cap__after-header-html\"><\/div>\r\n                                    <div class=\"conference_cap__conf-organizer-wrapper old\">\r\n                                        <h2 class=\"conference_cap__conf-organizer-title\">Conference Organizer<\/h2>\r\n                                        <div class=\"conference_cap__conf-organizer-logo\">\r\n                                            <img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/wine-2026-wineme\/organizer\/conf_organizer.webp\" alt=\"WINE ME\" class=\"conference_cap__conf-org-logo\">\r\n                                            <span class=\"conference_cap__conf-organizer-logo-title\">WINE ME<\/span>\r\n                                        <\/div>\r\n                                    <\/div>\r\n                                <div class=\"conference_cap__after-patrons-html\"><\/div>\r\n                                <h2 class=\"conference_cap__conf-slug-location\">Hall D <br> Conference Room No. 2<\/h2>\r\n                                <div class=\"conference_cap__after-location-html\"><\/div>\r\n                                <h2 class=\"conference_cap__conf-slug-title\">Polish Wine Zone. Knowledge and education for the industry<\/h2>\r\n                                <div class=\"conference_cap__after-title-html\"><\/div>\r\n                                <div class=\"conference_cap__conf-button\">\r\n                                    <a href=\"\/en\/registration\/\">Receive a free ticket<\/a>\r\n                                <\/div><\/div><div class=\"conference_cap__conf-slug-navigation-days\"><button id=\"tab_wine-2026-wineme_day-1\" class=\"conference_cap__conf-slug-navigation-day\">11\/03\/2026<\/button><button id=\"tab_wine-2026-wineme_day-2\" class=\"conference_cap__conf-slug-navigation-day\">12\/03\/2026<\/button><\/div><div class=\"conference_cap__conf-slug-contents\">\r\n                                        <div id=\"content_wine-2026-wineme_day-1\" class=\"conference_cap__conf-slug-content\">\r\n                                            <div class=\"conference_cap__before-day-html\"><\/div>\r\n                                                <div class=\"conference_cap__lecture-container\"><div id=\"wine-2026-wineme_day-1_pre-1\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><div class=\"conference_cap__lecture-speaker-img\"><div class=\"pwe-box-speakers-img\"><img decoding=\"async\" class=\"pwe-box-speaker\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/wine-2026-wineme\/Mateusz%20Papiernik.webp?v=1769781558649\" alt=\"speaker portrait\"\r\n                    style=\"position:relative; z-index:1; top:unset; left:unset; max-width: 80%;;\" \/><\/div><\/div><button class=\"conference_cap__lecture-speaker-btn\" data-lecture-id=\"wine-2026-wineme_day-1_pre-1\">BIO<\/button><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">10:30<\/h4><h5 class=\"conference_cap__lecture-name\">Mateusz Papiernik<\/h5><h4 class=\"conference_cap__lecture-title\">Stylistic mishmash or conscious diversity? On the polyphony of Polish sparkling wines<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"wine-2026-wineme_day-1_pre-2\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">12:00<\/h4><h5 class=\"conference_cap__lecture-name\"> Bo\u017cena Maciaszek, Winnica Kmiecia<\/h5><h4 class=\"conference_cap__lecture-title\">AccoThe terroir of the Bieszczady foothills \u2013 wine and regional identity. The example of the Kmie\u0107 Winery.unting in Vinnytsia - how does it differ from &quot;ordinary&quot; business activity<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"wine-2026-wineme_day-1_pre-3\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">13:30<\/h4><h5 class=\"conference_cap__lecture-name\">Dr. Eng. Katarzyna Korze\u0144 <\/h5><h4 class=\"conference_cap__lecture-title\">The phenomenon of enotourism \u2013 why wine travel is becoming more and more popular?<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"wine-2026-wineme_day-1_pre-4\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">15:00<\/h4><h5 class=\"conference_cap__lecture-name\">Dr. Nina Rapo-Wierzcho\u0144<\/h5><h4 class=\"conference_cap__lecture-title\">Expert lecture: Sustainability \u2013 fashion, necessity or real value?<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><\/div>\r\n                                            <div class=\"conference_cap__after-day-html\"><\/div><\/div>\r\n                                        <div id=\"content_wine-2026-wineme_day-2\" class=\"conference_cap__conf-slug-content\">\r\n                                            <div class=\"conference_cap__before-day-html\"><\/div>\r\n                                                <div class=\"conference_cap__lecture-container\"><div id=\"wine-2026-wineme_day-2_pre-1\" class=\"conference_cap__lecture-box\">\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">10:30<\/h4><h5 class=\"conference_cap__lecture-name\">dr A. Paw\u0142owska, Polish Wine Chamber<\/h5><h4 class=\"conference_cap__lecture-title\">Regional authenticity. How geographical indications and traditions build wine value and unlock promotion thanks to EU funds<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"wine-2026-wineme_day-2_pre-2\" class=\"conference_cap__lecture-box\">\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">12:00<\/h4><h5 class=\"conference_cap__lecture-name\">Arek Pro\u015bniewski, Vineyard Hello Sun <\/h5><h4 class=\"conference_cap__lecture-title\">Welcome Sun \u2013 wine born of light. A tale of place, exposure and the energy of place.<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"wine-2026-wineme_day-2_pre-3\" class=\"conference_cap__lecture-box\">\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">13:15<\/h4><h5 class=\"conference_cap__lecture-name\">Robert Stawski, Aris Vineyard \u2018Lightly touched muscat\u2019<\/h5><h4 class=\"conference_cap__lecture-title\"><\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"wine-2026-wineme_day-2_pre-4\" class=\"conference_cap__lecture-box\">\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">14:30<\/h4><h5 class=\"conference_cap__lecture-name\">dr Katarzyna Korze\u0144<\/h5><h4 class=\"conference_cap__lecture-title\">A tasting journey through the finest flavours of Polish wine.<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"wine-2026-wineme_day-2_pre-5\" class=\"conference_cap__lecture-box\">\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">15:45<\/h4><h5 class=\"conference_cap__lecture-name\">Masterclass Piotr P\u0142ochocki, The P\u0142ochocki Vineyard <\/h5><h4 class=\"conference_cap__lecture-title\">Time \u2013 the winemaker&#039;s greatest enemy or ally?<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><\/div>\r\n                                            <div class=\"conference_cap__after-day-html\"><\/div><\/div><\/div><div class=\"conference_cap__after-all-html\"><\/div><\/div><div id=\"conf_beer-wine-medal-2026\" class=\"conference_cap__conf-slug\"><div class=\"conference_cap__conf-slug-header\"><div class=\"conference_cap_medal_ceremony__main-container\">\r\n                <div class=\"conference_cap_medal_ceremony__title\">\r\n                    <h2>Medal Ceremony<\/h2>\r\n                <\/div>\r\n                <div class=\"conference_cap_medal_ceremony__ceremony-container\">\r\n                    <div class=\"conference_cap_medal_ceremony__date\">\r\n                        <h4>Date<\/h4>\r\n                        <span>10 march <br> time. 12:00<\/span>\r\n                    <\/div>\r\n                    <div class=\"conference_cap_medal_ceremony__location\">\r\n                        <h4>Location<\/h4>\r\n                        <span>Hall D<br> Trade Fair Studio<\/span>\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div><p>Trade Fair Medals Award Ceremony<\/p>\r\n                                <div class=\"conference_cap__conf-button\">\r\n                                    <a href=\"\/en\/registration\/\">Receive a free ticket<\/a>\r\n                                <\/div><\/div><\/div><div id=\"conf_winebeerhoreca-trendy-2026\" class=\"conference_cap__conf-slug\"><div class=\"conference_cap__conf-slug-header\">\r\n                                <img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/winebeerhoreca-trendy-2026\/conf_img_en.jpg\" alt=\"Trends Panel And Exhibitors Presentation\" class=\"conference_cap__conf-slug-image\">\r\n                                <div class=\"conference_cap__after-header-html\"><\/div>\r\n                                <div class=\"conference_cap__after-patrons-html\"><\/div>\r\n                                <h2 class=\"conference_cap__conf-slug-location\">Exhibition Studio <br> Hall D<\/h2>\r\n                                <div class=\"conference_cap__after-location-html\"><\/div>\r\n                                <h2 class=\"conference_cap__conf-slug-title\">Trends Panel And Exhibitors Presentation<\/h2>\r\n                                <div class=\"conference_cap__after-title-html\"><\/div>\r\n                                <div class=\"conference_cap__conf-button\">\r\n                                    <a href=\"\/en\/registration\/\">Receive a free ticket<\/a>\r\n                                <\/div><\/div><div class=\"conference_cap__conf-slug-navigation-days\"><button id=\"tab_winebeerhoreca-trendy-2026_day-1\" class=\"conference_cap__conf-slug-navigation-day\">Tuesday, 10 March<\/button><button id=\"tab_winebeerhoreca-trendy-2026_day-2\" class=\"conference_cap__conf-slug-navigation-day\">Wednesday, 11 March<\/button><\/div><div class=\"conference_cap__conf-slug-contents\">\r\n                                        <div id=\"content_winebeerhoreca-trendy-2026_day-1\" class=\"conference_cap__conf-slug-content\">\r\n                                            <div class=\"conference_cap__before-day-html\"><\/div>\r\n                                                <div class=\"conference_cap__lecture-container\"><div id=\"winebeerhoreca-trendy-2026_day-1_pre-1\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><div class=\"conference_cap__lecture-speaker-img\"><div class=\"pwe-box-speakers-img\"><img decoding=\"async\" class=\"pwe-box-speaker\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/winebeerhoreca-trendy-2026\/Malayali_Chandramohan_Nallur.webp?v=1772716006530\" alt=\"speaker portrait\"\r\n                    style=\"position:relative; z-index:1; top:unset; left:unset; max-width: 80%;;\" \/><\/div><\/div><button class=\"conference_cap__lecture-speaker-btn\" data-lecture-id=\"winebeerhoreca-trendy-2026_day-1_pre-1\">BIO<\/button><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">11:00 - 11:30<\/h4><h5 class=\"conference_cap__lecture-name\">Malayali spirits Chandramohan Nallur<\/h5><h4 class=\"conference_cap__lecture-title\">Brewing a Global Cultural Fusion for the Modern Generation.<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"winebeerhoreca-trendy-2026_day-1_pre-2\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><div class=\"conference_cap__lecture-speaker-img\"><div class=\"pwe-box-speakers-img\"><img decoding=\"async\" class=\"pwe-box-speaker\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/winebeerhoreca-trendy-2026\/Emilia%20Sznajder%20-%20horeca.webp?v=1772205323254\" alt=\"speaker portrait\"\r\n                    style=\"position:relative; z-index:1; top:unset; left:unset; max-width: 80%;;\" \/><\/div><\/div><button class=\"conference_cap__lecture-speaker-btn\" data-lecture-id=\"winebeerhoreca-trendy-2026_day-1_pre-2\">BIO<\/button><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">13:00 - 13:40<\/h4><h5 class=\"conference_cap__lecture-name\">Emilia Sznajder - co-owner of the Sznajder Family Farm in the Barycz Valley<\/h5><h4 class=\"conference_cap__lecture-title\">From seedlings to pickles, or how to pickle and why to eat pickled foods.<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"winebeerhoreca-trendy-2026_day-1_pre-3\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><div class=\"conference_cap__lecture-speaker-img\"><div class=\"pwe-box-speakers-img\"><img decoding=\"async\" class=\"pwe-box-speaker\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/winebeerhoreca-trendy-2026\/D.WIELOCH%20-%20beer.webp?v=1772700215424\" alt=\"speaker portrait\"\r\n                    style=\"position:relative; z-index:1; top:unset; left:unset; max-width: 80%;;\" \/><\/div><\/div><button class=\"conference_cap__lecture-speaker-btn\" data-lecture-id=\"winebeerhoreca-trendy-2026_day-1_pre-3\">BIO<\/button><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">13:40 - 14:40<\/h4><h5 class=\"conference_cap__lecture-name\">mgr in\u017c. Dawid Wieloch<\/h5><h4 class=\"conference_cap__lecture-title\">How to create wines that succeed on the market? Sensory analysis and consumer research in winemaking practice<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><\/div>\r\n                                            <div class=\"conference_cap__after-day-html\"><\/div><\/div>\r\n                                        <div id=\"content_winebeerhoreca-trendy-2026_day-2\" class=\"conference_cap__conf-slug-content\">\r\n                                            <div class=\"conference_cap__before-day-html\"><\/div>\r\n                                                <div class=\"conference_cap__lecture-container\"><div id=\"winebeerhoreca-trendy-2026_day-2_pre-1\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><div class=\"conference_cap__lecture-speaker-img\"><div class=\"pwe-box-speakers-img\"><img decoding=\"async\" class=\"pwe-box-speaker\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/winebeerhoreca-trendy-2026\/Marek%20P\u0142usa%20-%20HoReCa%20Foodservice.webp?v=1772521685779\" alt=\"speaker portrait\"\r\n                    style=\"position:relative; z-index:1; top:unset; left:unset; max-width: 80%;;\" \/><\/div><\/div><button class=\"conference_cap__lecture-speaker-btn\" data-lecture-id=\"winebeerhoreca-trendy-2026_day-2_pre-1\">BIO<\/button><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">11:00 - 11:30<\/h4><h5 class=\"conference_cap__lecture-name\">Marek P\u0142usa -  Manufaktura Kamedu\u0142y<\/h5><h4 class=\"conference_cap__lecture-title\">Vacuum systems in fruit processing and polyphenols<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"winebeerhoreca-trendy-2026_day-2_pre-2\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><div class=\"conference_cap__lecture-speaker-img\"><div class=\"pwe-box-speakers-img\"><img decoding=\"async\" class=\"pwe-box-speaker\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/winebeerhoreca-trendy-2026\/Krzysztof%20Rutkowski.webp?v=1772186273546\" alt=\"speaker portrait\"\r\n                    style=\"position:relative; z-index:1; top:0; left:15px; max-width: 50%;;\" \/><img decoding=\"async\" class=\"pwe-box-speaker\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/winebeerhoreca-trendy-2026\/Ada%20Marciniak-Becela%20(1).webp?v=1772186365042\" alt=\"speaker portrait\"\r\n                    style=\"position:relative; z-index:2; top:40px; left:-15px; max-width: 50%;;\" \/><img decoding=\"async\" class=\"pwe-box-speaker\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/winebeerhoreca-trendy-2026\/Angelika%20Bania.webp?v=1772186621526\" alt=\"speaker portrait\"\r\n                    style=\"position:relative; z-index:3; top:-15px; left:-30px; max-width: 50%;;\" \/><\/div><\/div><button class=\"conference_cap__lecture-speaker-btn\" data-lecture-id=\"winebeerhoreca-trendy-2026_day-2_pre-2\">BIO<\/button><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">13:00 - 13:30<\/h4><h5 class=\"conference_cap__lecture-name\">KDCP Kancelaria Doradztwa Celnego i Podatkowego Rutkowski i Wsp\u00f3lnicy sp. z o.o.<br>Krzysztof Rutkowski<br>Ada Marciniak-Becela<br>Angelika Bania<\/h5><h4 class=\"conference_cap__lecture-title\">Planned legislative changes in the brewing industry.<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"winebeerhoreca-trendy-2026_day-2_pre-3\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><div class=\"conference_cap__lecture-speaker-img\"><div class=\"pwe-box-speakers-img\"><img decoding=\"async\" class=\"pwe-box-speaker\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/winebeerhoreca-trendy-2026\/AnnaKaminska.jpg.webp?v=1772186853007\" alt=\"speaker portrait\"\r\n                    style=\"position:relative; z-index:1; top:unset; left:unset; max-width: 80%;;\" \/><\/div><\/div><button class=\"conference_cap__lecture-speaker-btn\" data-lecture-id=\"winebeerhoreca-trendy-2026_day-2_pre-3\">BIO<\/button><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">13:30 - 14:00<\/h4><h5 class=\"conference_cap__lecture-name\">Nickal sp. z o.o. Anna Kami\u0144ska<\/h5><h4 class=\"conference_cap__lecture-title\">MODERN FISH JERKY - as an alternative protein snack<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"winebeerhoreca-trendy-2026_day-2_pre-4\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><div class=\"conference_cap__lecture-speaker-img\"><div class=\"pwe-box-speakers-img\"><img decoding=\"async\" class=\"pwe-box-speaker\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/winebeerhoreca-trendy-2026\/TOMEK%202(1).webp?v=1773067900325\" alt=\"speaker portrait\"\r\n                    style=\"position:relative; z-index:1; top:unset; left:unset; max-width: 80%;;\" \/><\/div><\/div><button class=\"conference_cap__lecture-speaker-btn\" data-lecture-id=\"winebeerhoreca-trendy-2026_day-2_pre-4\">BIO<\/button><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\">14:00 - 15:00<\/h4><h5 class=\"conference_cap__lecture-name\">Tomasz Wojtkowski, MSc Eng. \u2013 Co-manager of the family-run company LeMag \u2013 fermentation centre<\/h5><h4 class=\"conference_cap__lecture-title\">Cider in Poland and around the world.<\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><\/div>\r\n                                            <div class=\"conference_cap__after-day-html\"><\/div><\/div><\/div><div class=\"conference_cap__after-all-html\"><\/div><\/div><div id=\"conf_beer-debata-przyszlosc-piw-regionalnych-2026\" class=\"conference_cap__conf-slug\"><div class=\"conference_cap__conf-slug-header\">\r\n                                <img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/beer-debata-przyszlosc-piw-regionalnych-2026\/conf_img_en.jpg\" alt=\"The Future of Regional Beers and Polish Hop Varieties \u2013 Tradition, Modernity, Consumer Expectations\" class=\"conference_cap__conf-slug-image\">\r\n                                <div class=\"conference_cap__after-header-html\"><\/div>\r\n                                <div class=\"conference_cap__after-patrons-html\"><\/div>\r\n                                <h2 class=\"conference_cap__conf-slug-location\">Conference Room 2<\/h2>\r\n                                <div class=\"conference_cap__after-location-html\"><\/div>\r\n                                <h2 class=\"conference_cap__conf-slug-title\">The Future of Regional Beers and Polish Hop Varieties \u2013 Tradition, Modernity, Consumer Expectations<\/h2>\r\n                                <div class=\"conference_cap__after-title-html\"><\/div><p style=\"text-align: center\"><strong><span style=\"font-size: x-large\">10.03.2026<\/span><\/strong><\/p><p style=\"text-align: center\"><strong><span style=\"font-size: x-large\">11:30<\/span><\/strong><\/p><ol><li style=\"text-align: left\"><strong><span style=\"font-size: large\">Opening and debate thesis\n<\/span><br><\/strong>What is a regional beer today and what will determine its future in Poland?\u00a0<\/li><li style=\"text-align: left\"><strong><span style=\"font-size: large\">Consumer and market 2026: trends, flavors, purchasing occasions\n<\/span><\/strong><br>Classic vs. new wave styles, shifting demand, premiumization vs. saving trends, the role of gastronomy and retail.\u00a0<\/li><li style=\"text-align: left\"><strong><span style=\"font-size: large\">Quality and style consistency \u2013 regional character without compromise<\/span><\/strong><br>Repeatability, quality standards, process control, building trust in regional brands.\u00a0<\/li><li style=\"text-align: left\"><strong><span style=\"font-size: large\">Local raw materials and Polish hops \u2013 flavor, availability, advantages<\/span><br><\/strong>The future of Polish hop varieties, quality and consistency, import vs. local sourcing, cooperation between hop growers and breweries.\u00a0<\/li><li style=\"text-align: left\"><strong><span style=\"font-size: large\">Costs and production realities \u2013 how to maintain profitability<\/span><\/strong><br>Energy, packaging, logistics and their impact on product range, pricing, and the development of regional breweries.\u00a0<\/li><li style=\"text-align: left\"><strong><span style=\"font-size: large\">What to do tomorrow: cooperation and market development<\/span><br><\/strong>Collaborations, joint promotional and educational initiatives, raw material contracting, beer tourism and regional identity as a competitive advantage.\u00a0<\/li><li style=\"text-align: left\"><strong><span style=\"font-size: large\">Summary and conclusions<\/span><\/strong><br>Key recommendations and market forecasts for the coming years + Q&amp;A session.<\/li><\/ol>\r\n                                <div class=\"conference_cap__conf-button\">\r\n                                    <a href=\"\/en\/registration\/\">Receive a free ticket<\/a>\r\n                                <\/div><\/div><div class=\"conference_cap__conf-slug-navigation-days\"><button id=\"tab_beer-debata-przyszlosc-piw-regionalnych-2026_day-1\" class=\"conference_cap__conf-slug-navigation-day\">10.03.2026<\/button><\/div><div class=\"conference_cap__conf-slug-contents\">\r\n                                        <div id=\"content_beer-debata-przyszlosc-piw-regionalnych-2026_day-1\" class=\"conference_cap__conf-slug-content\">\r\n                                            <div class=\"conference_cap__before-day-html\"><\/div>\r\n                                                <div class=\"conference_cap__lecture-container\"><div id=\"beer-debata-przyszlosc-piw-regionalnych-2026_day-1_pre-1\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><div class=\"conference_cap__lecture-speaker-img\"><div class=\"pwe-box-speakers-img\"><img decoding=\"async\" class=\"pwe-box-speaker\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/beer-debata-przyszlosc-piw-regionalnych-2026\/MarekGogola%20(1).webp?v=1773068557668\" alt=\"speaker portrait\"\r\n                    style=\"position:relative; z-index:1; top:unset; left:unset; max-width: 80%;;\" \/><\/div><\/div><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\"> <\/h4><h5 class=\"conference_cap__lecture-name\">Marek Gogola \u2013 Debate Moderator<\/h5><h4 class=\"conference_cap__lecture-title\"> <\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><p style=\"text-align: left; \"><strong>Marek Gogola<\/strong> is the founder of Sztuka Degustacji (est. 2012), an educator and sensory expert with over 26 years of experience in the brewing industry. He gained professional expertise at Kompania Piwowarska and as part of the European sensory team of SAB (now Asahi). Today, he delivers sensory training and tastings for the alcoholic beverages sector and, since 2020, has served as the Director of the consumer competition \u201cPiwne Akordy\u201d during the BikoTech Brewing Congress. He also supports breweries in recipe development\u2014at Chmielaki Krasnostawskie 2024, beers from Browar Geneza he was responsible for took 1st place (APA) and 3rd place (AIPA).<\/p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"beer-debata-przyszlosc-piw-regionalnych-2026_day-1_pre-2\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><div class=\"conference_cap__lecture-speaker-img\"><div class=\"pwe-box-speakers-img\"><img decoding=\"async\" class=\"pwe-box-speaker\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/beer-debata-przyszlosc-piw-regionalnych-2026\/A.Olkowski.webp?v=1772630584872\" alt=\"speaker portrait\"\r\n                    style=\"position:relative; z-index:1; top:unset; left:unset; max-width: 80%;;\" \/><\/div><\/div><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\"> <\/h4><h5 class=\"conference_cap__lecture-name\">Andrzej Olkowski<\/h5><h4 class=\"conference_cap__lecture-title\"> <\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><p style=\"text-align: left; \"><strong>Andrzej Olkowski<\/strong> \u2013 Born on January 28, 1961, in Olsztyn. Graduated from the Faculty of Mechanical Engineering at the Agricultural and Technical Academy (ART) in Olsztyn (1980\u20131988).He gained experience in modern management and marketing at ASKO Ltd in Amsterdam. After completing his studies, he worked for the architectural firm A. Kretschemer GmbH in D\u00fcsseldorf. Upon returning to Poland, he ran his own trading company specializing in industrial goods.\n\nIn 1993, together with partners, he co-founded Browar Kormoran, investing his own capital in the company. Since 2000, he has served as President of the Association of Regional Polish Breweries, working on behalf of its member breweries, promoting beer culture, and advocating ethical business practices.<\/p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"beer-debata-przyszlosc-piw-regionalnych-2026_day-1_pre-3\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\"> <\/h4><h4 class=\"conference_cap__lecture-title\"> <\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"beer-debata-przyszlosc-piw-regionalnych-2026_day-1_pre-4\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><div class=\"conference_cap__lecture-speaker-img\"><div class=\"pwe-box-speakers-img\"><img decoding=\"async\" class=\"pwe-box-speaker\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/beer-debata-przyszlosc-piw-regionalnych-2026\/Mateusz%20Majchrzak%20(1).webp?v=1772708303657\" alt=\"speaker portrait\"\r\n                    style=\"position:relative; z-index:1; top:unset; left:unset; max-width: 80%;;\" \/><\/div><\/div><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\"><\/h4><h5 class=\"conference_cap__lecture-name\">Mateusz Majchrzak<\/h5><h4 class=\"conference_cap__lecture-title\"><\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><div id=\"beer-debata-przyszlosc-piw-regionalnych-2026_day-1_pre-5\" class=\"conference_cap__lecture-box\"><div class=\"conference_cap__lecture-speaker\"><\/div>\r\n                     <div class=\"conference_cap__lecture-box-info\">\r\n                        <h4 class=\"conference_cap__lecture-time\"> <\/h4><h4 class=\"conference_cap__lecture-title\"> <\/h4>\r\n                        <div class=\"conference_cap__lecture-desc\"><p><\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div><\/div>\r\n                                            <div class=\"conference_cap__after-day-html\"><\/div><\/div><\/div><div class=\"conference_cap__after-all-html\"><\/div><\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row][vc_column width=&#8221;1\/1&#8243;]<div class=\"pwelement pwelement_25171 pwe_logotypes\">\r\n            <style>\r\n            <\/style>\r\n            <style>\r\n                .pwelement_25171 .pwe-container-logotypes-gallery {\r\n                    z-index: 1;\r\n                }\r\n                .pwelement_25171.pwe_logotypes .pwe-logo-item-container {\r\n                    box-shadow: none;\r\n                    \r\n                    border-radius: 10px;\r\n                    overflow: hidden;\r\n                    padding: 5px;\r\n                    background-color: white !important;\r\n                }\r\n                .pwelement_25171 .pwe-header-logotypes .pwe-logo-item-container,\r\n                .pwelement_25171 .pwe-logo-item-container {\r\n                    margin: 5px;\r\n                }\r\n                .pwelement_25171 .pwe-logo-item {\r\n                    max-width: 140px;\r\n                    140px\r\n                    display: flex;\r\n                    flex-direction: column;\r\n                    justify-content: center;\r\n                    align-items: center;\r\n                    margin: 0 auto;\r\n                }\r\n                .pwelement_25171 .pwe-logo-item p {\r\n                    margin: 8px 0 0;\r\n                    font-size: 14px;\r\n                    font-weight: 500;\r\n                }\r\n                .pwelement_25171 .slick-slide .pwe-logo-item {\r\n                    max-width: 100%;\r\n                }\r\n                .pwelement_25171 .pwe-logo-item img {\r\n                    object-fit: contain;\r\n                    aspect-ratio: 3 \/ 2;\r\n                }\r\n                .pwelement_25171 .pwe-logotypes-title {\r\n                    display: flex;\r\n                    justify-content: left;\r\n                }\r\n                .pwe-logotypes-title h4 {\r\n                    margin: 0;\r\n                }\r\n                .row-parent:has(.pwelement_25171 .pwe-full-width)  {\r\n                    max-width: 100% !important;\r\n                }\r\n                .pwelement_25171 .pwe-white-logotypes img,\r\n                .pwelement_25171 .pwe-header .pwe-logotypes-gallery-wrapper img {\r\n                    filter: brightness(0) invert(1);\r\n                    transition: all .3s ease;\r\n                }\r\n                .pwelement_25171 .pwe-white-logotypes img:hover,\r\n                .pwelement_25171 .pwe-header .pwe-logotypes-gallery-wrapper img:hover {\r\n                    filter: none;\r\n                }\r\n                .pwelement_25171 .pwe-logo-original img {\r\n                    filter: none !important;\r\n                }\r\n                .pwelement_25171 .pwe-color-logotypes .pwe-logo-item img {\r\n                    filter: none !important;\r\n                }\r\n                .pwelement_25171 .pwe-header .pwe-logotypes-title {\r\n                    justify-content: center;\r\n                }\r\n\r\n                .pwelement_25171 .pwe-logo-item-container p {\r\n                    text-transform: uppercase;\r\n                    font-size: 12px;\r\n                    font-weight: 700;\r\n                    color: black;\r\n                    white-space: break-spaces;\r\n                    text-align: center;\r\n                    line-height: 1.1 !important;\r\n                    margin: 5px;\r\n                }\r\n            <\/style>\r\n                <div id=\"pweLogotypes-83793\" class=\"pwe-container-logotypes-gallery\">\r\n                    <div class=\"pwe-logotypes-title main-heading-text\">\r\n                        <h4 class=\"pwe-uppercase\"><span>patrons of the trade fair and conference<\/span><\/h4>\r\n                    <\/div>\r\n                    <div class=\"pwe-slides pwe-logotypes-gallery-wrapper\">\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"SZEF_KUCHNI_PATRON_MEDIALNY\" alt=\"Media PatronSZEF_KUCHNI_PATRON_MEDIALNY\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/winewarsawexpo-com\/partners\/patron-medialny\/SZEF_KUCHNI_PATRON_MEDIALNY.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"wineme\" alt=\"Media Patronwineme\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/winewarsawexpo-com\/partners\/patron-medialny\/wineme.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"wino_pasja\" alt=\"Media Patronwino_pasja\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/winewarsawexpo-com\/partners\/patron-medialny\/wino_pasja.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"bevlegal\" alt=\"Media Patronbevlegal\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/winewarsawexpo-com\/partners\/patron-medialny\/bevlegal.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"food-service-logo\" alt=\"Media Patronfood-service-logo\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/winewarsawexpo-com\/partners\/patron-medialny\/food-service-logo.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"image\" alt=\"Media Patronimage\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/winewarsawexpo-com\/partners\/patron-medialny\/image.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"hotelarz\" alt=\"Media Patronhotelarz\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/winewarsawexpo-com\/partners\/patron-medialny\/hotelarz.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"erestauracja\" alt=\"Media Patronerestauracja\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/winewarsawexpo-com\/partners\/patron-medialny\/erestauracja.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"przeglad gastro\" alt=\"Media Patronprzeglad gastro\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/winewarsawexpo-com\/partners\/patron-medialny\/przeglad gastro.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"restaurant management (1)\" alt=\"Media Patronrestaurant management (1)\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/winewarsawexpo-com\/partners\/patron-medialny\/restaurant management (1).webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"restaurant management\" alt=\"Media Patronrestaurant management\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/winewarsawexpo-com\/partners\/patron-medialny\/restaurant management.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"wiadomo\u015bci spozywcze\" alt=\"Media Patronwiadomo\u015bci spozywcze\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/winewarsawexpo-com\/partners\/patron-medialny\/wiadomo\u015bci spozywcze.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"kdcp\" alt=\"Media Patronkdcp\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/winewarsawexpo-com\/partners\/patron-medialny\/kdcp.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"foodanddesign\" alt=\"Media Patronfoodanddesign\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/winewarsawexpo-com\/partners\/patron-medialny\/foodanddesign.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                        <div class=\"pwe-logo-item-container\" style=\"\">\r\n                                            <div class=\"pwe-logo-item \" style=\" \">\r\n                                                <img decoding=\"async\" id=\"Izba Polskich Win\" alt=\"Content PartnerIzba Polskich Win\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/winewarsawexpo-com\/partners\/partner-merytoryczny\/Izba Polskich Win.webp\"\/>\r\n                                                <p>content partner<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                    <\/div>\r\n                <\/div>\r\n            <style>\r\n                #pweLogotypes-83793 .pwe-slides {\r\n                    visibility: hidden;\r\n                    opacity: 0;\r\n                    height: 0;\r\n                    width: 0;\r\n                    transition: .3s ease;\r\n                }\r\n                #pweLogotypes-83793 .slick-slide {\r\n                    height: auto;\r\n                }\r\n                #pweLogotypes-83793 .pwe-arrow {\r\n                    display: block;\r\n                    position: absolute;\r\n                    top: 50%;\r\n                    transform: translate(0, -50%);\r\n                    font-size: 60px;\r\n                    font-weight: 700;\r\n                    z-index: 1;\r\n                    cursor: pointer;\r\n                }\r\n                #pweLogotypes-83793 .pwe-arrow-prev {\r\n                    left: 14px;\r\n                }\r\n                #pweLogotypes-83793 .pwe-arrow-next {\r\n                    right: 14px;\r\n                }\r\n                #pweLogotypes-83793 .slick-dots {\r\n                    position: relative;\r\n                    width: 100%;\r\n                    max-width: 90px;\r\n                    overflow: hidden;\r\n                    white-space: nowrap;\r\n                    padding: 0 !important;\r\n                    list-style: none;\r\n                    margin: auto !important;\r\n                }\r\n                #pweLogotypes-83793 .slick-dots li {\r\n                    width: 16px;\r\n                    height: 16px;\r\n                    margin: 0 7px;\r\n                    background-color: #bbb;\r\n                    border: none;\r\n                    border-radius: 50%;\r\n                }\r\n                #pweLogotypes-83793 .slick-dots li button {\r\n                    opacity: 0;\r\n                }\r\n                #pweLogotypes-83793 .slick-dots li.slick-active {\r\n                    transform-origin: center;\r\n                    background: #5a7d7c;\r\n                }\r\n            <\/style>\r\n                <style>\r\n                    #pweLogotypes-83793 .pwe-arrow-prev {\r\n                        left: -26px;\r\n                    }\r\n                    #pweLogotypes-83793 .pwe-arrow-next {\r\n                        right: -26px;\r\n                    }\r\n                <\/style>\r\n            <script>\r\n                jQuery(function ($) {\r\n                    const pweElement = $(\"#pweLogotypes-83793\");\r\n                    const slickSlider = $(\"#pweLogotypes-83793 .pwe-slides\");\r\n                    const sliderArrows = $(\"#pweLogotypes-83793 .pwe-arrow\");\r\n                    const totalSlides = slickSlider.children().length;\r\n\r\n                    const sliderDotsDisplay = \"true\";\r\n                    const sliderArrowsDisplay = \"\";\r\n                    const slidesToShowSetting = 7;\r\n\r\n                    \/\/ Function to initialize Slick Slider\r\n                    function initializeSlick(arrowsEnabled = false, dotsEnabled = false) {\r\n                        const currentSlidesToShow = getInitialSlidesToShow();\r\n\r\n                        \/\/ Destroy Slick if already initialized\r\n                        if (slickSlider.hasClass(\"slick-initialized\")) {\r\n                            slickSlider.slick(\"unslick\");\r\n                        }\r\n\r\n                        \/\/ Initialize Slick Slider\r\n                        slickSlider.slick({\r\n                            infinite: true,\r\n                            slidesToShow: currentSlidesToShow,\r\n                            slidesToScroll: 1,\r\n                            arrows: arrowsEnabled,\r\n                            nextArrow: $(\"#pweLogotypes-83793 .pwe-arrow-next\"),\r\n                            prevArrow: $(\"#pweLogotypes-83793 .pwe-arrow-prev\"),\r\n                            autoplay: true,\r\n                            autoplaySpeed: 5000,\r\n                            speed: 600,\r\n                            dots: dotsEnabled,\r\n                            cssEase: \"linear\",\r\n                            \r\n                            swipeToSlide: true,\r\n                            \r\n                            \r\n                        });\r\n\r\n                        \/\/ Hide arrows if arrows are disabled\r\n                        if (!arrowsEnabled) {\r\n                            sliderArrows.hide();\r\n                        } else {\r\n                            sliderArrows.show();\r\n                        }\r\n\r\n                        monitorRoleAttributes();\r\n                    }\r\n\r\n                    \/\/ Function to monitor role=\"tabpanel\" and remove it if it\"s added\r\n                    function monitorRoleAttributes() {\r\n                        \/\/ Create a MutationObserver to watch for changes in the DOM\r\n                        const observer = new MutationObserver(function(mutationsList) {\r\n                            for (const mutation of mutationsList) {\r\n                                if (mutation.type === \"attributes\" && mutation.attributeName === \"role\") {\r\n                                    const target = mutation.target;\r\n                                    if (target.getAttribute(\"role\") === \"tabpanel\") {\r\n                                        target.removeAttribute(\"role\"); \/\/ Remove role=\"tabpanel\"\r\n                                    }\r\n                                }\r\n                            }\r\n                        });\r\n\r\n                        \/\/ Target all img elements inside .two-cols-logotypes\r\n                        const targetNodes = document.querySelectorAll(\".two-cols-logotypes img\");\r\n\r\n                        \/\/ Observe changes in these elements\r\n                        targetNodes.forEach(node => {\r\n                            observer.observe(node, {\r\n                                attributes: true \/\/ Watch for attribute changes\r\n                            });\r\n                        });\r\n                    }\r\n\r\n                    \/\/ Settings for slidesToShow based on breakpoints\r\n                    function getInitialSlidesToShow() {\r\n                        const elementWidth = pweElement.width();\r\n                        \r\n                return  elementWidth < 400 ? 2 :\r\n                        elementWidth < 600 ? 3 :\r\n                        elementWidth < 960 ? 5:\r\n                        slidesToShowSetting;\r\n                \r\n                    }\r\n\r\n                    \/\/ Check if arrows and dots should be enabled\r\n                    function updateSlickSettings() {\r\n                        const currentSlidesToShow = getInitialSlidesToShow();\r\n                        let dotsEnabled = totalSlides > currentSlidesToShow && sliderDotsDisplay === \"true\";\r\n                        let arrowsEnabled = totalSlides > currentSlidesToShow && sliderArrowsDisplay === \"true\";\r\n\r\n                        initializeSlick(arrowsEnabled, dotsEnabled);\r\n\r\n                        if (dotsEnabled) {\r\n                            slickSlider.on(\"afterChange\", function (event, slick, currentSlide) {\r\n                                const $slickDots = $(event.target).find(\".slick-dots\");\r\n                                const dotWidth = 30;\r\n\r\n                                \/\/ Calculate the offset based on the currentSlide index\r\n                                const scrollPosition = (currentSlide - 1) * dotWidth;\r\n\r\n                                \/\/ Set scrollLeft directly on the .slick-dots container\r\n                                $slickDots.animate({ scrollLeft: scrollPosition }, 300);\r\n                            });\r\n                        }\r\n                    }\r\n\r\n                    \/\/ Initialize slider on document ready\r\n                    updateSlickSettings();\r\n\r\n                    \/\/ Reinitialize slider on window resize and element resize\r\n                    const resizeObserver = new ResizeObserver(() => {\r\n                        updateSlickSettings();\r\n                    });\r\n\r\n                    resizeObserver.observe(pweElement[0]);\r\n\r\n                    slickSlider.css({\r\n                        \"visibility\": \"visible\",\r\n                        \"opacity\": \"1\",\r\n                        \"height\": \"auto\",\r\n                        \"width\": \"auto\"\r\n                    });\r\n\r\n                });\r\n            <\/script>\r\n        <script>\r\n            document.addEventListener(\"DOMContentLoaded\", function () {\r\n                const get_database_fairs_data = [{\"id\":\"89\",\"fair_name_pl\":\"Beer Warsaw Expo\",\"fair_name_en\":\"Beer Warsaw Expo\",\"fair_desc_pl\":\"Targi Wyrob\\u00f3w Piwowarskich\",\"fair_desc_en\":\"Trade Fair for Brewing Products\",\"fair_short_desc_pl\":\"Targi Wyrob\\u00f3w Piwowarskich\",\"fair_short_desc_en\":\"Brewing Products Trade Fair\",\"fair_full_desc_pl\":\"<strong>Beer Warsaw Expo<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce technologie produkcji piwa, systemy automatyzacji oraz kontrol\\u0119 proces\\u00f3w browarniczych. Zaprezentowane zostan\\u0105 maszyny, akcesoria browarnicze, linie rozlewnicze, biotechnologia i certyfikacja piw. \\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Poznaj innowacje w produkcji piwa i piwowarstwie rzemie\\u015blniczym.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w warsztatach i prelekcjach ekspert\\u00f3w z bran\\u017cy piwowarskiej.\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>Beer Warsaw Expo<\\\/strong> is a key industry event presenting beer production technologies, automation systems, and brewery process control solutions. The exhibition will feature brewing machines, accessories, bottling lines, biotechnology, and beer certification standards. \\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover innovations in beer production and craft brewing.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Participate in workshops and lectures led by experts in the brewing industry.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2027\\\/03\\\/09\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/03\\\/11\",\"fair_date_end_hour\":null,\"fair_edition\":\"4\",\"fair_visitors\":\"2148\",\"fair_exhibitors\":\"31\",\"fair_countries\":\"8\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"2488\\\",\\\"fair_foreign_current\\\":\\\"315\\\",\\\"fair_exhibitors_current\\\":\\\"49\\\",\\\"fair_countries_current\\\":\\\"17\\\",\\\"fair_area_current\\\":\\\"5000\\\",\\\"fair_year_previous\\\":\\\"2025\\\",\\\"fair_visitors_previous\\\":\\\"2148\\\",\\\"fair_foreign_previous\\\":\\\"310\\\",\\\"fair_exhibitors_previous\\\":\\\"31\\\",\\\"fair_countries_previous\\\":\\\"8\\\",\\\"fair_area_previous\\\":\\\"5000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/BeerWarsawExpo\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/beerwarsawexpo\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/beer-warsaw-expo\\\/about\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/watch?v=1RCo1Mv9IEs\",\"fair_color_accent\":\"#101e1f\",\"fair_color_main2\":\"#de9a34\",\"fair_hall\":\"D4\",\"fair_area\":\"5000\",\"fair_kw\":\"2249\",\"fair_badge\":\"beer\",\"fair_domain\":\"beerwarsawexpo.com\",\"fair_shop\":\"{\\\"products\\\":{\\\"smycze\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"logotyp\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-planu\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"vip-room\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-restauracji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wieczoru\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-vip-gold\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wkladki-reklamowej\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"lokowanie-w-sms\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"post-promocyjny\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-publikacji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zdjecia-stoiska\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wideo-promocyjne\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"relacja\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wywiad\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wspoltworzony-post\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"hostessa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-przestrzeni\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"roll-up-winder\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zaproszenie-w-wysy\\u0142ce\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-24x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-15x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-6x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"stand-reklamowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"materialy-reklamowe\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-wzmianka\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"naklejka-podlogowa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"komunikat-w-radiowezle\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-barierkach\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flagobaner\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flaga-na-maszcie\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"pozycjonowanie-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"skaner-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"1000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"240\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-wieczor-branzowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false}},\\\"options\\\":{\\\"margin\\\":\\\"\\\"}}\",\"fair_group\":\"gr2\",\"category_pl\":\"\\u017bywno\\u015b\\u0107\",\"category_en\":\"Food\",\"konf_name\":\"Innovation in Brewing Forum\",\"konf_title_pl\":\"Konferencja Bran\\u017cy Piwowarskiej\",\"konf_title_en\":\"Brewing Industry Conference\",\"fair_kw_new\":\"74\",\"fair_kw_old_arch\":\"2027-22492025-1737;\",\"fair_kw_new_arch\":\"2026- 74;\",\"fair_entrance\":null},{\"id\":\"136\",\"fair_name_pl\":\"World Hotel\",\"fair_name_en\":\"World Hotel\",\"fair_desc_pl\":\"Mi\\u0119dzynarodowe Targi Bran\\u017cy Hotelarskiej\",\"fair_desc_en\":\"International Trade Fair for the Hotel Industry\",\"fair_short_desc_pl\":\"Targi Hotelarskie\",\"fair_short_desc_en\":\"Hotel Industry Trade Fair\",\"fair_full_desc_pl\":\"<strong>World Hotel<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce technologie dla hoteli, klimatyzacj\\u0119, ogrzewanie oraz \\u015brodki czysto\\u015bci. Zaprezentowane zostan\\u0105 urz\\u0105dzenia czyszcz\\u0105ce, systemy zabezpiecze\\u0144, tekstylia, dekoracje i akcesoria gastronomiczne. Poznaj innowacje, kt\\u00f3re redefiniuj\\u0105 standardy w hotelarstwie i gastronomii. \\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Znajdziesz tu najnowsze rozwi\\u0105zania w wyposa\\u017ceniu i zarz\\u0105dzaniu hotelami.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w z bran\\u017cy hotelarskiej.\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>World Hotel<\\\/strong> is a key industry event showcasing technologies for hotels, including air conditioning, heating, and cleaning products. It will feature cleaning devices, security systems, textiles, decorations, and catering accessories. Discover innovations redefining standards in the hospitality and gastronomy industries.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Explore the latest solutions in hotel equipment and management.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong>  Participate in conferences led by experts from the hospitality.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2027\\\/03\\\/09\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/03\\\/11\",\"fair_date_end_hour\":null,\"fair_edition\":\"19\",\"fair_visitors\":\"23202\",\"fair_exhibitors\":\"521\",\"fair_countries\":\"22\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"24726\\\",\\\"fair_foreign_current\\\":\\\"1246\\\",\\\"fair_exhibitors_current\\\":\\\"563\\\",\\\"fair_countries_current\\\":\\\"41\\\",\\\"fair_area_current\\\":\\\"60000\\\",\\\"fair_year_previous\\\":\\\"2025\\\",\\\"fair_visitors_previous\\\":\\\"23202\\\",\\\"fair_foreign_previous\\\":\\\"1856\\\",\\\"fair_exhibitors_previous\\\":\\\"521\\\",\\\"fair_countries_previous\\\":\\\"22\\\",\\\"fair_area_previous\\\":\\\"50000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/TargiWorldHotel\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/targiworldhotel\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/targi-worldhotel\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/playlist?list=PL0uv62TZgbz_M9dV4CWcg7c5LEmJ40KMS\",\"fair_color_accent\":\"#474238\",\"fair_color_main2\":\"#ae842d\",\"fair_hall\":\"E1, E2, F1, F2\",\"fair_area\":\"50000\",\"fair_kw\":\"2221\",\"fair_badge\":\"whotel\",\"fair_domain\":\"worldhotel.pl\",\"fair_shop\":\"{\\\"products\\\":{\\\"smycze\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"logotyp\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-planu\\\":{\\\"prod_price_pl\\\":\\\"6000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"vip-room\\\":{\\\"prod_price_pl\\\":\\\"20000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-restauracji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wieczoru\\\":{\\\"prod_price_pl\\\":\\\"50000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-vip-gold\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wkladki-reklamowej\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"lokowanie-w-sms\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"post-promocyjny\\\":{\\\"prod_price_pl\\\":\\\"1800\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-publikacji\\\":{\\\"prod_price_pl\\\":\\\"1300\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zdjecia-stoiska\\\":{\\\"prod_price_pl\\\":\\\"1200\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wideo-promocyjne\\\":{\\\"prod_price_pl\\\":\\\"2200\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"relacja\\\":{\\\"prod_price_pl\\\":\\\"800\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wywiad\\\":{\\\"prod_price_pl\\\":\\\"3200\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wspoltworzony-post\\\":{\\\"prod_price_pl\\\":\\\"1400\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"hostessa\\\":{\\\"prod_price_pl\\\":\\\"1200\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-przestrzeni\\\":{\\\"prod_price_pl\\\":\\\"800\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"roll-up-winder\\\":{\\\"prod_price_pl\\\":\\\"1150\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zaproszenie-w-wysy\\u0142ce\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-24x6\\\":{\\\"prod_price_pl\\\":\\\"28000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-15x6\\\":{\\\"prod_price_pl\\\":\\\"24000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-6x6\\\":{\\\"prod_price_pl\\\":\\\"20000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"stand-reklamowy\\\":{\\\"prod_price_pl\\\":\\\"3500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"materialy-reklamowe\\\":{\\\"prod_price_pl\\\":\\\"4000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"6000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"5500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-wzmianka\\\":{\\\"prod_price_pl\\\":\\\"2000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"naklejka-podlogowa\\\":{\\\"prod_price_pl\\\":\\\"500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"komunikat-w-radiowezle\\\":{\\\"prod_price_pl\\\":\\\"650\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-barierkach\\\":{\\\"prod_price_pl\\\":\\\"1300\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flagobaner\\\":{\\\"prod_price_pl\\\":\\\"1400\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flaga-na-maszcie\\\":{\\\"prod_price_pl\\\":\\\"1500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"pozycjonowanie-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"1000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"1500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"2000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"skaner-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"1600\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-wieczor-branzowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false}},\\\"options\\\":{\\\"margin\\\":\\\"\\\"}}\",\"fair_group\":\"gr3\",\"category_pl\":\"Dom\",\"category_en\":\"Home\",\"konf_name\":\"Hotel Innovation Forum\",\"konf_title_pl\":\"Konferencja Bran\\u017cy Horeca\",\"konf_title_en\":\"Congress of the Horeca Industry\",\"fair_kw_new\":\"68\",\"fair_kw_old_arch\":\"2027-2221;2025-1712;2022-314;2024-764;2023-597;\",\"fair_kw_new_arch\":\"2026-68;\",\"fair_entrance\":null},{\"id\":\"163\",\"fair_name_pl\":\"Smart Home Expo\",\"fair_name_en\":\"Smart Home Expo\",\"fair_desc_pl\":\"Mi\\u0119dzynarodowe Targi Automatyki Wn\\u0119trz i Budynk\\u00f3w Mieszkalnych\",\"fair_desc_en\":\"International Trade Fair for Interior and Residential Building Automation\",\"fair_short_desc_pl\":\"Targi Automatyki Budynk\\u00f3w i Wn\\u0119trz\",\"fair_short_desc_en\":\"Building Automation and Interior Automation Trade Fair\",\"fair_full_desc_pl\":\"<strong>Smart Home&IoT Expo<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce technologie automatyzacji domowej, inteligentnych urz\\u0105dze\\u0144 i zarz\\u0105dzania energi\\u0105. Zaprezentowane zostan\\u0105 systemy bezpiecze\\u0144stwa, fotowoltaika, o\\u015bwietlenie LED, asystenci g\\u0142osowi oraz technologie IoT. \\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Odkryj innowacje w automatyzacji domowej i technologiach IoT.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w w dziedzinie smart home i IoT.\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>Smart Home&IoT Expo<\\\/strong> is a key industry event presenting home automation technologies, smart devices, and energy management solutions. It will showcase security systems, photovoltaic panels, LED lighting, voice assistants, and IoT solutions. \\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover innovations in home automation and IoT technologies.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Participate in conferences led by experts in the field of smart home and IoT.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2027\\\/02\\\/23\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/02\\\/25\",\"fair_date_end_hour\":null,\"fair_edition\":\"3\",\"fair_visitors\":\"5465\",\"fair_exhibitors\":\"57\",\"fair_countries\":\"38\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"8044\\\",\\\"fair_foreign_current\\\":\\\"502\\\",\\\"fair_exhibitors_current\\\":\\\"114\\\",\\\"fair_countries_current\\\":\\\"31\\\",\\\"fair_area_current\\\":\\\"18000\\\",\\\"fair_year_previous\\\":\\\"2025\\\",\\\"fair_visitors_previous\\\":\\\"5465\\\",\\\"fair_foreign_previous\\\":\\\"345\\\",\\\"fair_exhibitors_previous\\\":\\\"57\\\",\\\"fair_countries_previous\\\":\\\"38\\\",\\\"fair_area_previous\\\":\\\"15000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/TargiSmartHomeExpo\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/smart_home_expo\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/smart-homeexpo\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/watch?v=ZqB-bDHMyvk\",\"fair_color_accent\":\"#012f6d\",\"fair_color_main2\":\"#8e0e65\",\"fair_hall\":\"D1, D2\",\"fair_area\":\"15000\",\"fair_kw\":\"2219\",\"fair_badge\":\"smarthome\",\"fair_domain\":\"smarthomeexpo.pl\",\"fair_shop\":\"{\\\"products\\\":{\\\"smycze\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"logotyp\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-planu\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"vip-room\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-restauracji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wieczoru\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-vip-gold\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wkladki-reklamowej\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"lokowanie-w-sms\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"post-promocyjny\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-publikacji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zdjecia-stoiska\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wideo-promocyjne\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"relacja\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wywiad\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wspoltworzony-post\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"hostessa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-przestrzeni\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"roll-up-winder\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zaproszenie-w-wysy\\u0142ce\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-24x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-15x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-6x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"stand-reklamowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"materialy-reklamowe\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-wzmianka\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"naklejka-podlogowa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"komunikat-w-radiowezle\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-barierkach\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flagobaner\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flaga-na-maszcie\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"pozycjonowanie-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"skaner-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"1000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"240\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-wieczor-branzowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false}},\\\"options\\\":{\\\"margin\\\":\\\"\\\"}}\",\"fair_group\":\"gr2\",\"category_pl\":\"Dom\",\"category_en\":\"Home\",\"konf_name\":\"Interior Automation Conference\",\"konf_title_pl\":\"Konferencja Automatyki Wn\\u0119trz i Budynk\\u00f3w Mieszkalnych\",\"konf_title_en\":\"Interior and Building Automation Conference\",\"fair_kw_new\":\"55, 49\",\"fair_kw_old_arch\":\"2027-2219;2026-1650;2025-1273;\",\"fair_kw_new_arch\":\"2026-55, 49;\",\"fair_entrance\":null},{\"id\":\"174\",\"fair_name_pl\":\"Wine Warsaw Expo\",\"fair_name_en\":\"Wine Warsaw Expo\",\"fair_desc_pl\":\"Targi Wyrob\\u00f3w Winiarskich\",\"fair_desc_en\":\"Wine Products Trade Fair\",\"fair_short_desc_pl\":\"Targi Wyrob\\u00f3w Winiarskich\",\"fair_short_desc_en\":\"Wine Products Trade Fair\",\"fair_full_desc_pl\":\"<strong>Wine Warsaw Expo<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce winnice polskie i zagraniczne, handel winami oraz technologie produkcji. Zaprezentowane zostan\\u0105 ekologiczne uprawy, sprz\\u0119t do pakowania i certyfikacja win. Poznaj trendy, warsztaty sommelierskie i innowacje, kt\\u00f3re kszta\\u0142tuj\\u0105 przysz\\u0142o\\u015b\\u0107 winiarstwa i rynku win.\\r\\n\\r\\n<br><br><strong>Tw&oacute;rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Odkryj najlepsze wina i innowacyjne technologie w winiarstwie.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert&oacute;w z bran\\u017cy winiarskiej i technologii produkcji win.\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider&oacute;w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>Wine Warsaw Expo<\\\/strong> is a key industry event showcasing Polish and international vineyards, wine trade, and production technologies. It will feature organic cultivation, packaging equipment, and wine certification. Discover trends, sommelier workshops, and innovations shaping the future of winemaking and the wine industry.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover the best wines and innovative technologies in winemaking.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Join experts for insightful conferences on the wine industry and wine production technologies.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2027\\\/03\\\/09\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/03\\\/11\",\"fair_date_end_hour\":null,\"fair_edition\":\"4\",\"fair_visitors\":\"3220\",\"fair_exhibitors\":\"52\",\"fair_countries\":\"8\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"3580\\\",\\\"fair_foreign_current\\\":\\\"377\\\",\\\"fair_exhibitors_current\\\":\\\"61\\\",\\\"fair_countries_current\\\":\\\"19\\\",\\\"fair_area_current\\\":\\\"10000\\\",\\\"fair_year_previous\\\":\\\"2025\\\",\\\"fair_visitors_previous\\\":\\\"3220\\\",\\\"fair_foreign_previous\\\":\\\"347\\\",\\\"fair_exhibitors_previous\\\":\\\"52\\\",\\\"fair_countries_previous\\\":\\\"8\\\",\\\"fair_area_previous\\\":\\\"10000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/WineWarsawExpo\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/winewarsawexpo\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/wine-warsaw-expo\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/watch?v=svz5dxxip7k\",\"fair_color_accent\":\"#590118\",\"fair_color_main2\":\"#5a7d7c\",\"fair_hall\":\"D3\",\"fair_area\":\"10000\",\"fair_kw\":\"2249\",\"fair_badge\":\"wine\",\"fair_domain\":\"winewarsawexpo.com\",\"fair_shop\":\"{\\\"products\\\":{\\\"smycze\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"logotyp\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-planu\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"vip-room\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-restauracji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wieczoru\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-vip-gold\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wkladki-reklamowej\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"lokowanie-w-sms\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"post-promocyjny\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-publikacji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zdjecia-stoiska\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wideo-promocyjne\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"relacja\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wywiad\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wspoltworzony-post\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"hostessa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-przestrzeni\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"roll-up-winder\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zaproszenie-w-wysy\\u0142ce\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-24x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-15x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-6x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"stand-reklamowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"materialy-reklamowe\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-wzmianka\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"naklejka-podlogowa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"komunikat-w-radiowezle\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-barierkach\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flagobaner\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flaga-na-maszcie\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"pozycjonowanie-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"skaner-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"1000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"240\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-wieczor-branzowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false}},\\\"options\\\":{\\\"margin\\\":\\\"\\\"}}\",\"fair_group\":\"gr2\",\"category_pl\":\"\\u017bywno\\u015b\\u0107\",\"category_en\":\"Food\",\"konf_name\":\"Wine Innovation Forum\",\"konf_title_pl\":\"Konferencja Nowoczesnych Rozwi\\u0105za\\u0144 Bran\\u017cy Winiarskiej\",\"konf_title_en\":\"Conference Of Modern Solutions In The Wine Industry\",\"fair_kw_new\":\"73\",\"fair_kw_old_arch\":\"2027-2249;2026-1737;2025-1159;\",\"fair_kw_new_arch\":\"2026-73;\",\"fair_entrance\":null},{\"id\":\"176\",\"fair_name_pl\":\"Wood Tech Expo\",\"fair_name_en\":\"Wood Tech Expo\",\"fair_desc_pl\":\"Targi Technologii Obr\\u00f3bki Drewna i Produkcji Mebli\",\"fair_desc_en\":\"Trade Fair for Woodworking Technology and Furniture Production\",\"fair_short_desc_pl\":\"Targi Technologii Drewna i Meblarstwa\",\"fair_short_desc_en\":\"Woodworking and Furniture Technology Trade Fair\",\"fair_full_desc_pl\":\"<strong>Wood Tech Warsaw Expo<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce technologie obr\\u00f3bki drewna, maszyny, narz\\u0119dzia i urz\\u0105dzenia. Zaprezentowane zostan\\u0105 materia\\u0142y drewniane, drewno konstrukcyjne, tarcica, systemy monta\\u017cowe oraz logistyka i magazynowanie. Poznaj innowacje kszta\\u0142tuj\\u0105ce przysz\\u0142o\\u015b\\u0107 przemys\\u0142u drzewnego.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Znajdziesz tu najnowsze technologie w obr\\u00f3bce drewna i produkcji mebli.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w w dziedzinie technologii drewna i mebli.\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>Wood Tech Warsaw Expo<\\\/strong> is a key industry event showcasing wood processing technologies, machinery, tools, and equipment. The exhibition will feature wood materials, structural timber, lumber, assembly systems, and solutions for logistics and storage. Discover groundbreaking innovations shaping the future of the wood industry.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Explore the latest technologies in wood processing and furniture manufacturing.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Participate in conferences led by experts in the field of wood and furniture technologies.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2027\\\/03\\\/02\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/03\\\/04\",\"fair_date_end_hour\":null,\"fair_edition\":\"6\",\"fair_visitors\":\"10833\",\"fair_exhibitors\":\"168\",\"fair_countries\":\"29\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"12043\\\",\\\"fair_foreign_current\\\":\\\"612\\\",\\\"fair_exhibitors_current\\\":\\\"182\\\",\\\"fair_countries_current\\\":\\\"31\\\",\\\"fair_area_current\\\":\\\"27000\\\",\\\"fair_year_previous\\\":\\\"2025\\\",\\\"fair_visitors_previous\\\":\\\"10833\\\",\\\"fair_foreign_previous\\\":\\\"518\\\",\\\"fair_exhibitors_previous\\\":\\\"168\\\",\\\"fair_countries_previous\\\":\\\"29\\\",\\\"fair_area_previous\\\":\\\"25000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/WoodTechWarsawExpo\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/woodtechwarsawexpo\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/wood-tech-warsaw-expo\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/playlist?list=PL0uv62TZgbz_qjvsF8PB0X6RJu-TobT7P\",\"fair_color_accent\":\"#472D0D\",\"fair_color_main2\":\"#f6b300\",\"fair_hall\":\"D, C3,C4\",\"fair_area\":\"25000\",\"fair_kw\":\"2256\",\"fair_badge\":\"wood\",\"fair_domain\":\"woodwarsawexpo.com\",\"fair_shop\":\"{\\\"products\\\":{\\\"smycze\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"logotyp\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-planu\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"vip-room\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-restauracji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wieczoru\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-vip-gold\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wkladki-reklamowej\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"lokowanie-w-sms\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"post-promocyjny\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-publikacji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zdjecia-stoiska\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wideo-promocyjne\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"relacja\\\":{\\\"prod_price_pl\\\":\\\"1000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wywiad\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wspoltworzony-post\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"hostessa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-przestrzeni\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"roll-up-winder\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zaproszenie-w-wysy\\u0142ce\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-24x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-15x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-6x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"stand-reklamowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"materialy-reklamowe\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-wzmianka\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"naklejka-podlogowa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"komunikat-w-radiowezle\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-barierkach\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flagobaner\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flaga-na-maszcie\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"pozycjonowanie-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"1000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"skaner-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"1000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"240\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-wieczor-branzowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false}},\\\"options\\\":{\\\"margin\\\":\\\"\\\"}}\",\"fair_group\":\"gr2\",\"category_pl\":\"Budownictwo, Przemys\\u0142\",\"category_en\":\"Construction, Industry\",\"konf_name\":\"Woodworking Technology Conference\",\"konf_title_pl\":\"Konferencja Bran\\u017cy Obr\\u00f3bki Drewna\",\"konf_title_en\":\"Woodworking Industry Conference\",\"fair_kw_new\":\"77\",\"fair_kw_old_arch\":\"2027-2256;2026-1695;2024-722;2023-516;2025-1104;2022-323;\",\"fair_kw_new_arch\":\"2026-77;\",\"fair_entrance\":null},{\"id\":\"178\",\"fair_name_pl\":\"Warsaw HVAC Expo\",\"fair_name_en\":\"Warsaw HVAC Expo\",\"fair_desc_pl\":\"Mi\\u0119dzynarodowe Targi HVAC\",\"fair_desc_en\":\"International HVAC Trade Fair\",\"fair_short_desc_pl\":\"Targi HVAC\",\"fair_short_desc_en\":\"HVAC Trade Fair\",\"fair_full_desc_pl\":\"<strong>Warsaw HVAC Expo<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce technologie ogrzewania, wentylacji i klimatyzacji. Zaprezentowane zostan\\u0105 pompy ciep\\u0142a, systemy automatyzacji, filtry powietrza oraz energooszcz\\u0119dne rozwi\\u0105zania. Odkryj innowacje w projektowaniu system\\u00f3w, izolacji i us\\u0142ugach serwisowych dla bran\\u017cy HVAC.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Poznaj nowoczesne technologie w ogrzewaniu, wentylacji i klimatyzacji.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w w dziedzinie system\\u00f3w HVAC.\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>Warsaw HVAC Expo<\\\/strong> is a key industry event that presents cutting-edge heating, ventilation, and air conditioning technologies. It will feature heat pumps, automation systems, air filters, and energy-efficient solutions. Explore groundbreaking innovations in system design, insulation, and comprehensive HVAC services.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover modern technologies in heating, ventilation, and air conditioning.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Participate in conferences led by experts in the field of HVAC systems.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2027\\\/02\\\/23\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/02\\\/25\",\"fair_date_end_hour\":null,\"fair_edition\":\"5\",\"fair_visitors\":\"19101\",\"fair_exhibitors\":\"403\",\"fair_countries\":\"41\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"21010\\\",\\\"fair_foreign_current\\\":\\\"1953\\\",\\\"fair_exhibitors_current\\\":\\\"433\\\",\\\"fair_countries_current\\\":\\\"46\\\",\\\"fair_area_current\\\":\\\"60000\\\",\\\"fair_year_previous\\\":\\\"2025\\\",\\\"fair_visitors_previous\\\":\\\"19101\\\",\\\"fair_foreign_previous\\\":\\\"1776\\\",\\\"fair_exhibitors_previous\\\":\\\"403\\\",\\\"fair_countries_previous\\\":\\\"41\\\",\\\"fair_area_previous\\\":\\\"60000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/warsawhvacexpo\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/miedzynarodowe_targi_hvac\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/warsaw-hvac-expo\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/playlist?list=PL0uv62TZgbz-bXyiTx06g9vPyxrgFJlA0\",\"fair_color_accent\":\"#5b8dc3\",\"fair_color_main2\":\"#e37b08\",\"fair_hall\":\"E, F\",\"fair_area\":\"60000\",\"fair_kw\":\"2210\",\"fair_badge\":\"hvac\",\"fair_domain\":\"warsawhvacexpo.com\",\"fair_shop\":\"{\\\"products\\\":{\\\"smycze\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"logotyp\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-planu\\\":{\\\"prod_price_pl\\\":\\\"6000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"vip-room\\\":{\\\"prod_price_pl\\\":\\\"17000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-restauracji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wieczoru\\\":{\\\"prod_price_pl\\\":\\\"80000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-vip-gold\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wkladki-reklamowej\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"lokowanie-w-sms\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"post-promocyjny\\\":{\\\"prod_price_pl\\\":\\\"1800\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-publikacji\\\":{\\\"prod_price_pl\\\":\\\"1200\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zdjecia-stoiska\\\":{\\\"prod_price_pl\\\":\\\"1300\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wideo-promocyjne\\\":{\\\"prod_price_pl\\\":\\\"2500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"relacja\\\":{\\\"prod_price_pl\\\":\\\"700\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wywiad\\\":{\\\"prod_price_pl\\\":\\\"3500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wspoltworzony-post\\\":{\\\"prod_price_pl\\\":\\\"1300\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"hostessa\\\":{\\\"prod_price_pl\\\":\\\"1400\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-przestrzeni\\\":{\\\"prod_price_pl\\\":\\\"700\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"roll-up-winder\\\":{\\\"prod_price_pl\\\":\\\"1300\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zaproszenie-w-wysy\\u0142ce\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-24x6\\\":{\\\"prod_price_pl\\\":\\\"29000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-15x6\\\":{\\\"prod_price_pl\\\":\\\"25000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-6x6\\\":{\\\"prod_price_pl\\\":\\\"20000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"stand-reklamowy\\\":{\\\"prod_price_pl\\\":\\\"3500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"materialy-reklamowe\\\":{\\\"prod_price_pl\\\":\\\"4500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"6000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"5000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-wzmianka\\\":{\\\"prod_price_pl\\\":\\\"2500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"naklejka-podlogowa\\\":{\\\"prod_price_pl\\\":\\\"500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"komunikat-w-radiowezle\\\":{\\\"prod_price_pl\\\":\\\"700\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-barierkach\\\":{\\\"prod_price_pl\\\":\\\"1300\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flagobaner\\\":{\\\"prod_price_pl\\\":\\\"1500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flaga-na-maszcie\\\":{\\\"prod_price_pl\\\":\\\"1700\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"pozycjonowanie-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"700\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"1400\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"1800\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"skaner-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"1600\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-wieczor-branzowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false}},\\\"options\\\":{\\\"margin\\\":\\\"\\\"}}\",\"fair_group\":\"gr3\",\"category_pl\":\"Budownictwo, Energetyka\",\"category_en\":\"Construction, Energy\",\"konf_name\":\"HVAC Innovations Summit\",\"konf_title_pl\":\"Mi\\u0119dzynarodowa konferencja bran\\u017cy HVAC\",\"konf_title_en\":\"International HVAC industry conference\",\"fair_kw_new\":\"49, 55\",\"fair_kw_old_arch\":\"2024-703;2023-573;2025-1089;2026-1659;2027-2210;\",\"fair_kw_new_arch\":\"2026-49, 55;\",\"fair_entrance\":null},{\"id\":\"181\",\"fair_name_pl\":\"EuroGastro\",\"fair_name_en\":\"EuroGastro\",\"fair_desc_pl\":\"Mi\\u0119dzynarodowe Targi Rozwi\\u0105za\\u0144 dla Bran\\u017cy HoReCa\",\"fair_desc_en\":\"International Trade Fair for HoReCa Industry Solutions\",\"fair_short_desc_pl\":\"Targi Rozwi\\u0105za\\u0144 dla HoReCa\",\"fair_short_desc_en\":\"HoReCa Solutions Trade Fair\",\"fair_full_desc_pl\":\"<strong>EuroGastro<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce wyposa\\u017cenie hoteli, restauracji i bar\\u00f3w. Zaprezentowane zostan\\u0105 produkty spo\\u017cywcze, napoje, kawa, sprz\\u0119t barowy oraz rozwi\\u0105zania dla zaplecza kuchennego. Poznaj innowacje w piekarstwie, cukiernictwie i dekoracji wn\\u0119trz, kt\\u00f3re zmieniaj\\u0105 bran\\u017c\\u0119 gastronomiczn\\u0105.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Odkryj innowacje w wyposa\\u017ceniu hoteli, restauracji i bar\\u00f3w.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w z bran\\u017cy gastronomicznej i hotelarskiej.\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>EuroGastro<\\\/strong> is a key industry event that presents equipment for hotels, restaurants, and bars. The event will showcase food products, beverages, coffee, bar equipment, and kitchen solutions. Discover groundbreaking innovations in baking, confectionery, and interior decoration that are revolutionizing the gastronomy industry.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover innovations in hotel, restaurant, and bar equipment.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Participate in conferences led by experts from the gastronomy and hospitality industry.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2027\\\/03\\\/09\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/03\\\/11\",\"fair_date_end_hour\":null,\"fair_edition\":\"30\",\"fair_visitors\":\"23202\",\"fair_exhibitors\":\"521\",\"fair_countries\":\"34\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"26298\\\",\\\"fair_foreign_current\\\":\\\"2041\\\",\\\"fair_exhibitors_current\\\":\\\"563\\\",\\\"fair_countries_current\\\":\\\"41\\\",\\\"fair_area_current\\\":\\\"60000\\\",\\\"fair_year_previous\\\":\\\"2025\\\",\\\"fair_visitors_previous\\\":\\\"23202\\\",\\\"fair_foreign_previous\\\":\\\"1856\\\",\\\"fair_exhibitors_previous\\\":\\\"521\\\",\\\"fair_countries_previous\\\":\\\"34\\\",\\\"fair_area_previous\\\":\\\"50000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/TargiEuroGastro\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/targieurogastro\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/targi-eurogastro\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/playlist?list=PL0uv62TZgbz_RMkWem8IiGH3EcTJofwUg\",\"fair_color_accent\":\"#606060\",\"fair_color_main2\":\"#e8be8a\",\"fair_hall\":\"E3, E4, F3, F4\",\"fair_area\":\"50000\",\"fair_kw\":\"2221\",\"fair_badge\":\"eurogastro\",\"fair_domain\":\"eurogastro.com.pl\",\"fair_shop\":\"{\\\"products\\\":{\\\"smycze\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"logotyp\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-planu\\\":{\\\"prod_price_pl\\\":\\\"8000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"vip-room\\\":{\\\"prod_price_pl\\\":\\\"17000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-restauracji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wieczoru\\\":{\\\"prod_price_pl\\\":\\\"100000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-vip-gold\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wkladki-reklamowej\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"lokowanie-w-sms\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"post-promocyjny\\\":{\\\"prod_price_pl\\\":\\\"1800\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-publikacji\\\":{\\\"prod_price_pl\\\":\\\"1300\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zdjecia-stoiska\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wideo-promocyjne\\\":{\\\"prod_price_pl\\\":\\\"3000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"relacja\\\":{\\\"prod_price_pl\\\":\\\"750\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wywiad\\\":{\\\"prod_price_pl\\\":\\\"3500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wspoltworzony-post\\\":{\\\"prod_price_pl\\\":\\\"1150\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"hostessa\\\":{\\\"prod_price_pl\\\":\\\"1200\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-przestrzeni\\\":{\\\"prod_price_pl\\\":\\\"800\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"roll-up-winder\\\":{\\\"prod_price_pl\\\":\\\"1400\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zaproszenie-w-wysy\\u0142ce\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-24x6\\\":{\\\"prod_price_pl\\\":\\\"28000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-15x6\\\":{\\\"prod_price_pl\\\":\\\"25000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-6x6\\\":{\\\"prod_price_pl\\\":\\\"18000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"stand-reklamowy\\\":{\\\"prod_price_pl\\\":\\\"3500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"materialy-reklamowe\\\":{\\\"prod_price_pl\\\":\\\"4500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"6000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"5000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-wzmianka\\\":{\\\"prod_price_pl\\\":\\\"2000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"naklejka-podlogowa\\\":{\\\"prod_price_pl\\\":\\\"500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"komunikat-w-radiowezle\\\":{\\\"prod_price_pl\\\":\\\"600\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-barierkach\\\":{\\\"prod_price_pl\\\":\\\"1200\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flagobaner\\\":{\\\"prod_price_pl\\\":\\\"1400\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flaga-na-maszcie\\\":{\\\"prod_price_pl\\\":\\\"1500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"pozycjonowanie-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"700\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"1300\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"1750\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"skaner-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"1700\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-wieczor-branzowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false}},\\\"options\\\":{\\\"margin\\\":\\\"\\\"}}\",\"fair_group\":\"gr3\",\"category_pl\":\"\\u017bywno\\u015b\\u0107\",\"category_en\":\"Food\",\"konf_name\":\"Horeca Business Forum\",\"konf_title_pl\":\"Konferencja Bran\\u017cy Horeca\",\"konf_title_en\":\"Congress of the Horeca Industry\",\"fair_kw_new\":\"67\",\"fair_kw_old_arch\":\"2027-2221;2025-1712;2024-764;2023-479;2025-1092;2022-314;\",\"fair_kw_new_arch\":\"2026-67\",\"fair_entrance\":null},{\"id\":\"182\",\"fair_name_pl\":\"GRIND-TECH Expo\",\"fair_name_en\":\"GRIND-TECH Expo\",\"fair_desc_pl\":\"Targi Technologii Szlifierskich\",\"fair_desc_en\":\"Grinding Technology Trade Fair\",\"fair_short_desc_pl\":\"Targi Technologii Szlifierskich\",\"fair_short_desc_en\":\"Grinding Technologies Trade Fair\",\"fair_full_desc_pl\":\"<strong>Grind-Tech Expo<\\\/strong> to targi dedykowane technologiom szlifierskim w bran\\u017cach metalowej, szklarskiej, ceramicznej i samochodowej. Odkryj maszyny i urz\\u0105dzenia do obr\\u00f3bki precyzyjnej, narz\\u0119dzia i akcesoria szlifierskie oraz systemy pomiarowe. Poznaj rozwi\\u0105zania zwi\\u0119kszaj\\u0105ce efektywno\\u015b\\u0107 i bezpiecze\\u0144stwo pracy w sektorze szlifierskim.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Odkryj innowacje w technologiach szlifierskich dla r\\u00f3\\u017cnych sektor\\u00f3w przemys\\u0142u.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w z bran\\u017cy szlifierskiej i technologii obr\\u00f3bki.\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>Grind-Tech Expo<\\\/strong> is a trade fair dedicated to grinding technologies in the metal, glass, ceramic, and automotive industries. Discover machines and equipment for precision processing, grinding tools and accessories, as well as measurement systems. Explore solutions that enhance efficiency and safety in the grinding sector.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover innovations in grinding technologies for various industrial sectors.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Join experts for insightful conferences on grinding and machining technologies.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2027\\\/03\\\/16\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/03\\\/18\",\"fair_date_end_hour\":null,\"fair_edition\":\"1\",\"fair_visitors\":\"5000\",\"fair_exhibitors\":\"70\",\"fair_countries\":\"12\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"\\\",\\\"fair_visitors_current\\\":\\\"5000\\\",\\\"fair_foreign_current\\\":\\\"400\\\",\\\"fair_exhibitors_current\\\":\\\"70\\\",\\\"fair_countries_current\\\":\\\"12\\\",\\\"fair_area_current\\\":\\\"15000\\\",\\\"fair_year_previous\\\":\\\"\\\",\\\"fair_visitors_previous\\\":\\\"0\\\",\\\"fair_foreign_previous\\\":\\\"0\\\",\\\"fair_exhibitors_previous\\\":\\\"0\\\",\\\"fair_countries_previous\\\":\\\"0\\\",\\\"fair_area_previous\\\":\\\"0\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/GrindTechExpo\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/grind_tech_expo\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/grind-tech-expo\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/@ptakwarsawexpo2557\",\"fair_color_accent\":\"#093b30\",\"fair_color_main2\":\"#f8a721\",\"fair_hall\":\"C1, C2\",\"fair_area\":\"15000\",\"fair_kw\":\"972,1959\",\"fair_badge\":\"grindtech\",\"fair_domain\":\"grindtechexpo.com\",\"fair_shop\":null,\"fair_group\":\"gr1\",\"category_pl\":\"Przemys\\u0142\",\"category_en\":\"Industry\",\"konf_name\":\"Grinding Technology Forum\",\"konf_title_pl\":\"Konferencja bran\\u017cy Technologii Szlifierskich\",\"konf_title_en\":\"Grinding Technology Industry Conference\",\"fair_kw_new\":\"65\",\"fair_kw_old_arch\":null,\"fair_kw_new_arch\":null,\"fair_entrance\":null},{\"id\":\"192\",\"fair_name_pl\":\"Clean-Tech Expo\",\"fair_name_en\":\"Clean-Tech Expo\",\"fair_desc_pl\":\"Bran\\u017cowe Targi Technologii Czyszczenia i \\u015arodk\\u00f3w Utrzymania Czysto\\u015bci\",\"fair_desc_en\":\"Industry Trade Fair for Cleaning Technologies and Maintenance Products\",\"fair_short_desc_pl\":\"Targi Technologii i Utrzymania Czysto\\u015bci\",\"fair_short_desc_en\":\"Cleaning Technology and Maintenance Trade Fair\",\"fair_full_desc_pl\":\"<strong>Clean-Tech Expo<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce technologie i sprz\\u0119t do czyszczenia pomieszcze\\u0144, maszyny czyszcz\\u0105ce oraz \\u015brodki dezynfekcji. Zaprezentowane zostan\\u0105 systemy piel\\u0119gnacji pod\\u0142\\u00f3g, roboty sprz\\u0105taj\\u0105ce, nowoczesne akcesoria i szkolenia. \\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Odkryj innowacje w technologii czyszczenia i \\u015brodk\\u00f3w utrzymania czysto\\u015bci.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w bran\\u017cy czysto\\u015bci i technologii sprz\\u0105tania.\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>Clean-Tech Expo<\\\/strong> is a key industry event that presents technologies and equipment for cleaning spaces, cleaning machines, and disinfection products. The event will showcase floor care systems, cleaning robots, modern accessories, and professional training. \\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover innovations in cleaning technology and maintenance solutions.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Join experts for insightful conferences on the cleaning industry and cleaning technologies.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2027\\\/03\\\/09\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/03\\\/11\",\"fair_date_end_hour\":null,\"fair_edition\":\"3\",\"fair_visitors\":\"4455\",\"fair_exhibitors\":\"64\",\"fair_countries\":\"8\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"5290\\\",\\\"fair_foreign_current\\\":\\\"340\\\",\\\"fair_exhibitors_current\\\":\\\"79\\\",\\\"fair_countries_current\\\":\\\"26\\\",\\\"fair_area_current\\\":\\\"15000\\\",\\\"fair_year_previous\\\":\\\"2025\\\",\\\"fair_visitors_previous\\\":\\\"4455\\\",\\\"fair_foreign_previous\\\":\\\"294\\\",\\\"fair_exhibitors_previous\\\":\\\"64\\\",\\\"fair_countries_previous\\\":\\\"8\\\",\\\"fair_area_previous\\\":\\\"15000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/TargiCleanTechExpo\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/clean_tech_expo\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/clean-tech-expo\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/@ptakwarsawexpo2557\\\/featured\",\"fair_color_accent\":\"#0639ac\",\"fair_color_main2\":\"#ef3e36\",\"fair_hall\":\"B1, B2\",\"fair_area\":\"15000\",\"fair_kw\":\"2233\",\"fair_badge\":\"cleantech\",\"fair_domain\":\"cleantechexpo.pl\",\"fair_shop\":\"{\\\"products\\\":{\\\"smycze\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"logotyp\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-planu\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"vip-room\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-restauracji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wieczoru\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-vip-gold\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wkladki-reklamowej\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"lokowanie-w-sms\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"post-promocyjny\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-publikacji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zdjecia-stoiska\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wideo-promocyjne\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"relacja\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wywiad\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wspoltworzony-post\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"hostessa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-przestrzeni\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"roll-up-winder\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zaproszenie-w-wysy\\u0142ce\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-24x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-15x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-6x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"stand-reklamowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"materialy-reklamowe\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-wzmianka\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"naklejka-podlogowa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"komunikat-w-radiowezle\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-barierkach\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flagobaner\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flaga-na-maszcie\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"pozycjonowanie-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"skaner-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"1000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"240\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-wieczor-branzowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false}},\\\"options\\\":{\\\"margin\\\":\\\"\\\"}}\",\"fair_group\":\"gr2\",\"category_pl\":\"Przemys\\u0142\",\"category_en\":\"Industry\",\"konf_name\":\"Cleaning Industry Congress\",\"konf_title_pl\":\"Kongres Bran\\u017cy Technologii Czyszczenia i \\u015arodk\\u00f3w Utrzymania Czysto\\u015bci\",\"konf_title_en\":\"Cleaning Technology and Cleaning Products Industry Congress\",\"fair_kw_new\":\"75\",\"fair_kw_old_arch\":\"2027-2233;2026-1710;2025-1275;\",\"fair_kw_new_arch\":\"2026-75;\",\"fair_entrance\":null},{\"id\":\"193\",\"fair_name_pl\":\"World of BUILD Expo\",\"fair_name_en\":\"World of BUILD Expo\",\"fair_desc_pl\":\"Mi\\u0119dzynarodowe Targi Technologii i Materia\\u0142\\u00f3w Budowlanych\",\"fair_desc_en\":\"International Trade Fair for Building Technologies and Materials\",\"fair_short_desc_pl\":\"Targi Technologii i Materia\\u0142\\u00f3w Budowlanych\",\"fair_short_desc_en\":\"Building Materials and Technology Trade Fair\",\"fair_full_desc_pl\":\"<strong>World of BUILD Expo<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce technologie budowy hal produkcyjnych, magazyn\\u00f3w i infrastruktury przemys\\u0142owej. Zaprezentowane zostan\\u0105 materia\\u0142y budowlane, maszyny, prefabrykaty oraz innowacje w in\\u017cynierii, bezpiecze\\u0144stwie pracy i technologiach dla zr\\u00f3wnowa\\u017conego budownictwa.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Poznaj nowoczesne technologie dla budownictwa przemys\\u0142owego.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w z bran\\u017cy budownictwa przemys\\u0142owego.\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>World of BUILD Expo<\\\/strong> is a key industry event presenting technologies for constructing production halls, warehouses, and industrial infrastructure. The exhibition will feature building materials, machinery, prefabricated elements, and innovations in engineering, workplace safety, and sustainable construction solutions.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover modern technologies for industrial construction.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Join experts for insightful conferences on industrial construction.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2027\\\/03\\\/16\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/03\\\/18\",\"fair_date_end_hour\":null,\"fair_edition\":\"3\",\"fair_visitors\":\"4266\",\"fair_exhibitors\":\"61\",\"fair_countries\":\"12\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"4581\\\",\\\"fair_foreign_current\\\":\\\"254\\\",\\\"fair_exhibitors_current\\\":\\\"101\\\",\\\"fair_countries_current\\\":\\\"16\\\",\\\"fair_area_current\\\":\\\"20000\\\",\\\"fair_year_previous\\\":\\\"2025\\\",\\\"fair_visitors_previous\\\":\\\"4266\\\",\\\"fair_foreign_previous\\\":\\\"248\\\",\\\"fair_exhibitors_previous\\\":\\\"61\\\",\\\"fair_countries_previous\\\":\\\"16\\\",\\\"fair_area_previous\\\":\\\"15000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/ExpoWorldOfBuild\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/worldofbuildexpo\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/world-of-build-expo\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/@ptakwarsawexpo2557\\\/featured\",\"fair_color_accent\":\"#202a2b\",\"fair_color_main2\":\"#d77d3a\",\"fair_hall\":\"D2\",\"fair_area\":\"15000\",\"fair_kw\":\"2153\",\"fair_badge\":\"worldofbuild\",\"fair_domain\":\"worldofbuildexpo.com\",\"fair_shop\":null,\"fair_group\":\"gr2\",\"category_pl\":\"Budownictwo\",\"category_en\":\"Construction\",\"konf_name\":\"Construction Innovation Congress\",\"konf_title_pl\":\"Mi\\u0119dzynarodowa Konferencja Bran\\u017cy Technologii i Materia\\u0142\\u00f3w Budowlanych\",\"konf_title_en\":\"International Industry Conference of the Building Technologies and Materials\",\"fair_kw_new\":\"31, 29\",\"fair_kw_old_arch\":\"2025-1327;2027-2153\",\"fair_kw_new_arch\":\"2026-31,29;\",\"fair_entrance\":null},{\"id\":\"194\",\"fair_name_pl\":\"SAFETY & RESCUE Expo Poland\",\"fair_name_en\":\"SAFETY & RESCUE Expo Poland\",\"fair_desc_pl\":\"Targi Technologii dla Ratownictwa, Obrony Cywilnej i Zapobiegania Sytuacjom Kryzysowym\",\"fair_desc_en\":\"Technology Trade Fair for Rescue, Civil Defense and Emergency Prevention\",\"fair_short_desc_pl\":\"Targi Technologii dla Ratownictwa i Obrony Cywilnej\",\"fair_short_desc_en\":\"Emergency and Civil Defense Technology Trade Fair\",\"fair_full_desc_pl\":\"<strong>SAFETY & RESCUE Expo Poland<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce zarz\\u0105dzanie kryzysowe, technologie bezza\\u0142ogowe, sprz\\u0119t ratowniczy i systemy zabezpiecze\\u0144. Zaprezentowane zostan\\u0105 wyposa\\u017cenie ochronne, infrastruktura awaryjna i symulacje. Poznaj rozwi\\u0105zania kszta\\u0142tuj\\u0105ce przysz\\u0142o\\u015b\\u0107 bezpiecze\\u0144stwa i ratownictwa. \\r\\n\\r\\n<br><br><strong>Tw&oacute;rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Odkryj innowacje w zarz\\u0105dzaniu kryzysowym i ratownictwie.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert&oacute;w z bran\\u017cy zarz\\u0105dzania kryzysowego i technologii ratowniczych.\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider&oacute;w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>SAFETY & RESCUE Expo Poland<\\\/strong> is a key industry event presenting crisis management, unmanned technologies, rescue equipment, and advanced security systems. The event will showcase protective gear, emergency infrastructure, and innovative simulation solutions. Discover solutions shaping the future of safety and rescue.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover innovations in crisis management and rescue operations.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Join experts for insightful conferences on crisis management and rescue technologies.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2027\\\/03\\\/02\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/03\\\/04\",\"fair_date_end_hour\":null,\"fair_edition\":\"2\",\"fair_visitors\":\"5000\",\"fair_exhibitors\":\"90\",\"fair_countries\":\"12\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"25033\\\",\\\"fair_foreign_current\\\":\\\"2144\\\",\\\"fair_exhibitors_current\\\":\\\"362\\\",\\\"fair_countries_current\\\":\\\"52\\\",\\\"fair_area_current\\\":\\\"60000\\\",\\\"fair_year_previous\\\":\\\"\\\",\\\"fair_visitors_previous\\\":\\\"0\\\",\\\"fair_foreign_previous\\\":\\\"0\\\",\\\"fair_exhibitors_previous\\\":\\\"0\\\",\\\"fair_countries_previous\\\":\\\"0\\\",\\\"fair_area_previous\\\":\\\"0\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/safety.rescue.expo\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/safety_rescue_warsaw\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/safety-rescue-expo-poland\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/@ptakwarsawexpo2557\",\"fair_color_accent\":\"#7a92a7\",\"fair_color_main2\":\"#d03c39\",\"fair_hall\":\"C1, C2\",\"fair_area\":\"15000\",\"fair_kw\":\"2225\",\"fair_badge\":\"safetyrescue\",\"fair_domain\":\"safetyrescueexpo.com\",\"fair_shop\":\"{\\\"products\\\":{\\\"smycze\\\":{\\\"prod_price_pl\\\":\\\"15000\\\",\\\"prod_price_desc_pl\\\":\\\"netto\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"3572\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"logotyp\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-planu\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"vip-room\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-restauracji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wieczoru\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-vip-gold\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wkladki-reklamowej\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"lokowanie-w-sms\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"post-promocyjny\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-publikacji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zdjecia-stoiska\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wideo-promocyjne\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"relacja\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wywiad\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wspoltworzony-post\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"hostessa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-przestrzeni\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"roll-up-winder\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zaproszenie-w-wysy\\u0142ce\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-24x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-15x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-6x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"stand-reklamowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"materialy-reklamowe\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-wzmianka\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"naklejka-podlogowa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"komunikat-w-radiowezle\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-barierkach\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flagobaner\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flaga-na-maszcie\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"pozycjonowanie-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"skaner-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-wieczor-branzowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false}},\\\"options\\\":{\\\"margin\\\":\\\"\\\"}}\",\"fair_group\":\"gr2\",\"category_pl\":\"Medycyna\",\"category_en\":\"Medical\",\"konf_name\":\"Crisis & Safety Forum\",\"konf_title_pl\":\"Bran\\u017cowa Konferencja Technologii dla Ratownictwa, Obrony Cywilnej i Zapobiegania Sytuacjom Kryzysowym\",\"konf_title_en\":\"Industry Conference on Technologies for Rescue, Civil Defense and Emergency Prevention\",\"fair_kw_new\":\"60\",\"fair_kw_old_arch\":\"2026-1473;2027-2225;\",\"fair_kw_new_arch\":\"2026-60;\",\"fair_entrance\":null},{\"id\":\"200\",\"fair_name_pl\":\"ISOLTEX\",\"fair_name_en\":\"ISOLTEX\",\"fair_desc_pl\":\"Targi Technologii Izolacyjnych dla Przemys\\u0142u\",\"fair_desc_en\":\"Industrial Insulation Technology Trade Fair\",\"fair_short_desc_pl\":\"Targi Technologii Izolacyjnych dla Przemys\\u0142u\",\"fair_short_desc_en\":\"Industrial Insulation Technologies Trade Fair\",\"fair_full_desc_pl\":\"<strong>ISOLTEX<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce technologie izolacji termicznej, akustycznej, przeciwwilgociowej i ognioodpornej. Znajdziesz tu innowacje w ekologicznych materia\\u0142ach, systemach monta\\u017cowych, recyklingu oraz projektowaniu izolacji. Odkryj przysz\\u0142o\\u015b\\u0107 zr\\u00f3wnowa\\u017conych rozwi\\u0105za\\u0144 dla przemys\\u0142u i budownictwa.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Odkryj innowacyjne rozwi\\u0105zania w izolacjach termicznych i akustycznych.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w z bran\\u017cy izolacji i zr\\u00f3wnowa\\u017conych materia\\u0142\\u00f3w budowlanych.\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>ISOLTEX<\\\/strong> is a key industry event presenting technologies for thermal, acoustic, moisture, and fire insulation. The exhibition will feature innovations in eco-friendly materials, installation systems, recycling solutions, and insulation design. Discover the future of sustainable solutions for construction and industry.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover innovative solutions in thermal and acoustic insulation.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Join experts for insightful conferences on insulation and sustainable construction materials.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2027\\\/02\\\/23\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/02\\\/25\",\"fair_date_end_hour\":null,\"fair_edition\":\"2\",\"fair_visitors\":\"5000\",\"fair_exhibitors\":\"70\",\"fair_countries\":\"8\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"2071\\\",\\\"fair_foreign_current\\\":\\\"107\\\",\\\"fair_exhibitors_current\\\":\\\"61\\\",\\\"fair_countries_current\\\":\\\"27\\\",\\\"fair_area_current\\\":\\\"15000\\\",\\\"fair_year_previous\\\":\\\"\\\",\\\"fair_visitors_previous\\\":\\\"0\\\",\\\"fair_foreign_previous\\\":\\\"0\\\",\\\"fair_exhibitors_previous\\\":\\\"0\\\",\\\"fair_countries_previous\\\":\\\"0\\\",\\\"fair_area_previous\\\":\\\"0\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/TargiIsoltex\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/isoltex_expo\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/isoltex-targi\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/@ptakwarsawexpo2557\\\/featured\",\"fair_color_accent\":\"#514236\",\"fair_color_main2\":\"#424b54\",\"fair_hall\":\"C1, C2\",\"fair_area\":\"15000\",\"fair_kw\":\"2216\",\"fair_badge\":\"isoltex\",\"fair_domain\":\"isoltexexpo.com\",\"fair_shop\":null,\"fair_group\":\"gr2\",\"category_pl\":\"Przemys\\u0142\",\"category_en\":\"Industry\",\"konf_name\":\"Insulation Tech Conference\",\"konf_title_pl\":\"Konferencja Bran\\u017cy Technologii Izolacyjnych dla Przemys\\u0142u\",\"konf_title_en\":\"Insulation Technology Industry Conference\",\"fair_kw_new\":\"57\",\"fair_kw_old_arch\":\"2026-1245;2027-2216;\",\"fair_kw_new_arch\":\"2026-57;\",\"fair_entrance\":null},{\"id\":\"254\",\"fair_name_pl\":\"Horeca FoodService Expo\",\"fair_name_en\":\"Horeca FoodService Expo\",\"fair_desc_pl\":\"Targi Zaopatrzenia \\u017bywno\\u015bciowego i \\u0141a\\u0144cucha Dostaw dla Bran\\u017cy HoReCa\",\"fair_desc_en\":\"Food Supply and Supply Chain Trade Fair for the HoReCa Industry\",\"fair_short_desc_pl\":\"Targi Zaopatrzenia i Logistyki dla Bran\\u017cy HoReCa\",\"fair_short_desc_en\":\"HoReCa Supply and Logistics Trade Fair\",\"fair_full_desc_pl\":\"<strong>HoReCa FoodService Expo<\\\/strong> to  wydarzenie bran\\u017cowe prezentuj\\u0105ce najnowsze rozwi\\u0105zania dla gastronomii, handlu i przemys\\u0142u spo\\u017cywczego. W\\u015br\\u00f3d prezentowanych rozwi\\u0105za\\u0144 znajd\\u0105 si\\u0119 nowoczesne systemy zaopatrzenia i logistyki, inteligentne technologie sprzeda\\u017cy, a tak\\u017ce produkty dla profesjonalnej kuchni \\u2014 od \\u017cywno\\u015bci \\u015bwie\\u017cej i funkcjonalnej po zaawansowane systemy IT i automatyzacj\\u0119 proces\\u00f3w.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Odkryj prze\\u0142omowe rozwi\\u0105zania dla sektora HoReCa i foodservice.\\r\\n\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w specjalistycznych konferencjach i debatach z udzia\\u0142em ekspert\\u00f3w bran\\u017cowych.\\r\\n\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>HoReCa FoodService Expo<\\\/strong> is a trade event showcasing the latest solutions for the gastronomy, retail, and food production sectors. Among the featured innovations are modern supply and logistics systems, smart sales technologies, and products for professional kitchens \\u2014 from fresh and functional food to advanced IT systems and process automation.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover breakthrough solutions for the HoReCa and foodservice sector.\\r\\n\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Take part in expert-led conferences and industry-focused panel discussions.\\r\\n\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and strengthen your competitive advantage.\",\"fair_date_start\":\"2027\\\/03\\\/09\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/03\\\/11\",\"fair_date_end_hour\":null,\"fair_edition\":\"2\",\"fair_visitors\":\"5000\",\"fair_exhibitors\":\"70\",\"fair_countries\":\"12\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"4988\\\",\\\"fair_foreign_current\\\":\\\"224\\\",\\\"fair_exhibitors_current\\\":\\\"73\\\",\\\"fair_countries_current\\\":\\\"23\\\",\\\"fair_area_current\\\":\\\"10000\\\",\\\"fair_year_previous\\\":\\\"\\\",\\\"fair_visitors_previous\\\":\\\"0\\\",\\\"fair_foreign_previous\\\":\\\"0\\\",\\\"fair_exhibitors_previous\\\":\\\"0\\\",\\\"fair_countries_previous\\\":\\\"0\\\",\\\"fair_area_previous\\\":\\\"0\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/HoReCaFoodServiceExpo\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/horecafoodserviceexpo\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/horeca-foodservice-expo\\\/\",\"fair_youtube\":null,\"fair_color_accent\":\"#4b595c\",\"fair_color_main2\":\"#d2003b\",\"fair_hall\":\"D1, D2\",\"fair_area\":\"15000\",\"fair_kw\":\"2246\",\"fair_badge\":\"horecafood\",\"fair_domain\":\"horecafoodserviceexpo.com\",\"fair_shop\":null,\"fair_group\":\"gr2\",\"category_pl\":\"\\u017bywno\\u015b\\u0107\",\"category_en\":\"Food\",\"konf_name\":\"FoodSupply Summit\",\"konf_title_pl\":\"Konferencja Zaopatrzenia \\u017bywno\\u015bciowego i \\u0141a\\u0144cucha Dostaw dla Bran\\u017cy HoReCa\",\"konf_title_en\":\"Conference on Food Supply and Supply Chain for the HoReCa Industry\",\"fair_kw_new\":\"62\",\"fair_kw_old_arch\":\"2026-1848;2027-2246\",\"fair_kw_new_arch\":\"2026- 62;\",\"fair_entrance\":null},{\"id\":\"277\",\"fair_name_pl\":\"Plac Budowy Expo\",\"fair_name_en\":\"Construction Site Expo\",\"fair_desc_pl\":\"Targi Rusztowa\\u0144 i Wyposa\\u017cenia Plac\\u00f3w Budowy\",\"fair_desc_en\":\"Scaffolding and Construction Site Equipment Trade Fair\",\"fair_short_desc_pl\":\"Targi Rusztowa\\u0144 i Sprz\\u0119tu Budowlanego\",\"fair_short_desc_en\":\"Scaffolding and Construction Site Equipment Trade Fair\",\"fair_full_desc_pl\":\"<strong>PLAC BUDOWY EXPO<\\\/strong> to kompleksowe wydarzenie bran\\u017cowe po\\u015bwi\\u0119cone technologiom i rozwi\\u0105zaniom usprawniaj\\u0105cym organizacj\\u0119 oraz bezpiecze\\u0144stwo plac\\u00f3w budowy. Targi stanowi\\u0105 interdyscyplinarn\\u0105 platform\\u0119 prezentuj\\u0105c\\u0105 innowacje w zakresie rusztowa\\u0144 i system\\u00f3w szalunkowych, kontener\\u00f3w i zabud\\u00f3w tymczasowych, ogrodze\\u0144 i zabezpiecze\\u0144, zaplecza sanitarnego, a tak\\u017ce system\\u00f3w zarz\\u0105dzania, logistyki i ekologicznych technologii dla budownictwa.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Poznaj technologie i rozwi\\u0105zania kszta\\u0142tuj\\u0105ce przysz\\u0142o\\u015b\\u0107 plac\\u00f3w budowy oraz wspieraj\\u0105ce bezpieczne i efektywne inwestycje.\\r\\n\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach i prezentacjach ekspert\\u00f3w bran\\u017cy budowlanej, technologii i logistyki plac\\u00f3w budowy.\\r\\n\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>Construction Site Expo<\\\/strong> is a comprehensive industry event dedicated to technologies and solutions that improve the organization and safety of construction sites. The fair serves as an interdisciplinary platform showcasing innovations in scaffolding and formwork systems, containers and temporary structures, fencing and site security, sanitary facilities, as well as construction site management systems, logistics, and eco-friendly technologies for the building industry.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover technologies and solutions shaping the future of construction sites and supporting safe and efficient investments.\\r\\n\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Take part in conferences and presentations by experts in construction, technology, and site logistics.\\r\\n\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive edge in the market.\",\"fair_date_start\":\"2027\\\/03\\\/16\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/03\\\/18\",\"fair_date_end_hour\":null,\"fair_edition\":\"2\",\"fair_visitors\":\"5000\",\"fair_exhibitors\":\"90\",\"fair_countries\":\"12\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"2104\\\",\\\"fair_foreign_current\\\":\\\"58\\\",\\\"fair_exhibitors_current\\\":\\\"48\\\",\\\"fair_countries_current\\\":\\\"16\\\",\\\"fair_area_current\\\":\\\"10000\\\",\\\"fair_year_previous\\\":\\\"\\\",\\\"fair_visitors_previous\\\":\\\"0\\\",\\\"fair_foreign_previous\\\":\\\"0\\\",\\\"fair_exhibitors_previous\\\":\\\"0\\\",\\\"fair_countries_previous\\\":\\\"0\\\",\\\"fair_area_previous\\\":\\\"0\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/placbudowyexpo\\\/pl\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/placbudowyexpo\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/plac-budowy-expo\",\"fair_youtube\":null,\"fair_color_accent\":\"#cac426\",\"fair_color_main2\":\"#222222\",\"fair_hall\":\"C1, C2\",\"fair_area\":\"15000\",\"fair_kw\":\"2153\",\"fair_badge\":\"placbudowy\",\"fair_domain\":\"placbudowyexpo.com\",\"fair_shop\":\"{\\\"products\\\":{\\\"smycze\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false,\\\"prod_image_text_pl\\\":\\\"\\\"},\\\"logotyp\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-planu\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"vip-room\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-restauracji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wieczoru\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-vip-gold\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wkladki-reklamowej\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"lokowanie-w-sms\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"post-promocyjny\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-publikacji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zdjecia-stoiska\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wideo-promocyjne\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"relacja\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wywiad\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wspoltworzony-post\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"hostessa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-przestrzeni\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"roll-up-winder\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zaproszenie-w-wysy\\u0142ce\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-24x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-15x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-6x6\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"stand-reklamowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"materialy-reklamowe\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-wzmianka\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"naklejka-podlogowa\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"komunikat-w-radiowezle\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-barierkach\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flagobaner\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flaga-na-maszcie\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"pozycjonowanie-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"skaner-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-wieczor-branzowy\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false}},\\\"options\\\":{\\\"margin\\\":\\\"\\\"}}\",\"fair_group\":\"gr2\",\"category_pl\":\"Budownictwo\",\"category_en\":\"Construction\",\"konf_name\":\"BuildSite Innovation Forum\",\"konf_title_pl\":\"Konferencja Rusztowa\\u0144 i Wyposa\\u017cenia Plac\\u00f3w Budowy\",\"konf_title_en\":\"Scaffolding and Construction Site Equipment Conference\",\"fair_kw_new\":\"29, 31\",\"fair_kw_old_arch\":\"2026-1911;2027-2153\",\"fair_kw_new_arch\":\"2026-29,31;\",\"fair_entrance\":null},{\"id\":\"279\",\"fair_name_pl\":\"Vending Poland Expo\",\"fair_name_en\":\"Vending Poland Expo\",\"fair_desc_pl\":\"Bran\\u017cowe Targi Vendingu i Technologii Self-Service\",\"fair_desc_en\":\"Industry Vending and Self-Service Technology Trade Fair\",\"fair_short_desc_pl\":\"Targi Vendingu i Technologii Self-Service\",\"fair_short_desc_en\":\"Vending & Self-Service Trade Fair\",\"fair_full_desc_pl\":\"<strong>VENDING POLAND EXPO<\\\/strong> to targi automat\\u00f3w sprzeda\\u017cowych i technologii self-service, prezentuj\\u0105ce innowacje w maszynach snack & beverage, automatach gor\\u0105cych napoj\\u00f3w, micro-marketach, kioskach self-checkout, p\\u0142atno\\u015bciach bezgot\\u00f3wkowych oraz systemach IoT i AI. Wydarzenie obejmuje tak\\u017ce ofert\\u0119 produkt\\u00f3w FMCG i non-food, rozwi\\u0105za\\u0144 zero-waste, komponent\\u00f3w, us\\u0142ug serwisowych, opakowa\\u0144 zr\\u00f3wnowa\\u017conych oraz logistyki vendingu.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Poznaj technologie i rozwi\\u0105zania, kt\\u00f3re kszta\\u0142tuj\\u0105 przysz\\u0142o\\u015b\\u0107 handlu automatycznego i obs\\u0142ugi self-service.\\r\\n\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach lider\\u00f3w bran\\u017cy i ekspert\\u00f3w vendingu, self-service, automatyzacji sprzeda\\u017cy i p\\u0142atno\\u015bci.\\r\\n\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>VENDING POLAND EXPO<\\\/strong> is a trade fair for vending machines and self-service technologies, showcasing innovations in snack &amp; beverage machines, hot drink dispensers, micro-markets, self-checkout kiosks, cashless payments, as well as IoT and AI systems. The event also features FMCG and non-food products, zero-waste solutions, components, service and maintenance, sustainable packaging, and vending logistics.\\r\\n\\r\\n<br><br><strong>Create the future of the industry:<\\\/strong> Discover technologies and solutions shaping the future of automated retail and self-service.\\r\\n\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Join conferences led by industry leaders and experts in vending, self-service, sales automation, and payment systems.\\r\\n\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive advantage in the market.\",\"fair_date_start\":\"2027\\\/03\\\/09\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/03\\\/11\",\"fair_date_end_hour\":null,\"fair_edition\":\"2\",\"fair_visitors\":\"5000\",\"fair_exhibitors\":\"90\",\"fair_countries\":\"12\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"4803\\\",\\\"fair_foreign_current\\\":\\\"240\\\",\\\"fair_exhibitors_current\\\":\\\"67\\\",\\\"fair_countries_current\\\":\\\"28\\\",\\\"fair_area_current\\\":\\\"10000\\\",\\\"fair_year_previous\\\":\\\"\\\",\\\"fair_visitors_previous\\\":\\\"0\\\",\\\"fair_foreign_previous\\\":\\\"0\\\",\\\"fair_exhibitors_previous\\\":\\\"0\\\",\\\"fair_countries_previous\\\":\\\"0\\\",\\\"fair_area_previous\\\":\\\"0\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/vendingpolandexpo\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/vendingpolandexpo\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/vending-poland-expo\",\"fair_youtube\":null,\"fair_color_accent\":\"#002e46\",\"fair_color_main2\":\"#74bf44\",\"fair_hall\":\"C1, C2\",\"fair_area\":\"15000\",\"fair_kw\":\"2243\",\"fair_badge\":\"vendingpoland\",\"fair_domain\":\"vendingpolandexpo.com\",\"fair_shop\":null,\"fair_group\":\"gr2\",\"category_pl\":\"Przemys\\u0142\",\"category_en\":\"Industry\",\"konf_name\":\"Smart Vending Congress\",\"konf_title_pl\":\"Konferencja Vendingu i Technologii Self-Service\",\"konf_title_en\":\"Conference on Vending and Self-Service Technologies\",\"fair_kw_new\":\"61\",\"fair_kw_old_arch\":\"2026-1896;2027-2243;\",\"fair_kw_new_arch\":\"2026-61;\",\"fair_entrance\":null},{\"id\":\"281\",\"fair_name_pl\":\"Modular & Prefab Expo\",\"fair_name_en\":\"Modular & Prefab Expo\",\"fair_desc_pl\":\"Targi Technologii Budownictwa Modu\\u0142owego i Materia\\u0142\\u00f3w Prefabrykowanych\",\"fair_desc_en\":\"Trade Fair for Modular Construction Technology and Prefabricated Materials\",\"fair_short_desc_pl\":\"Targi Budownictwa Modu\\u0142owego i Prefabrykat\\u00f3w\",\"fair_short_desc_en\":\"Modular Construction and Prefabrication Trade Fair\",\"fair_full_desc_pl\":\"<strong>MODULAR & PREFAB EXPO<\\\/strong> to kompleksowe wydarzenie bran\\u017cowe po\\u015bwi\\u0119cone technologiom prefabrykacji i budownictwa modu\\u0142owego. Targi stanowi\\u0105 interdyscyplinarn\\u0105 platform\\u0119 prezentuj\\u0105c\\u0105 innowacje w zakresie konstrukcji drewnianych, dom\\u00f3w modu\\u0142owych i szkieletowych, nowoczesnych materia\\u0142\\u00f3w budowlanych, maszyn produkcyjnych, instalacji oraz zr\\u00f3wnowa\\u017conych rozwi\\u0105za\\u0144 dla sektora budowlanego.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Poznaj innowacyjne technologie i rozwi\\u0105zania, kt\\u00f3re kszta\\u0142tuj\\u0105 przysz\\u0142o\\u015b\\u0107 prefabrykacji i budownictwa modu\\u0142owego.\\r\\n\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w prefabrykacji, budownictwa modu\\u0142owego, i innowacyjnych technologii.\\u201d\\r\\n\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>MODULAR & PREFAB EXPO<\\\/strong> is a comprehensive industry event dedicated to prefabrication technologies and modular construction. The trade fair serves as an interdisciplinary platform showcasing innovations in timber structures, modular and timber-frame houses, modern building materials, production machinery, installations, and sustainable solutions for the construction sector.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover innovative technologies and solutions that are shaping the future of prefabrication and modular construction.\\r\\n\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Take part in conferences with experts in prefabrication, modular construction, and innovative technologies.\\r\\n\\r\\n<br><br><strong>Build relationships:<\\\/strong> Meet industry leaders, establish valuable connections, and gain a competitive advantage in the market.\",\"fair_date_start\":\"2027\\\/03\\\/02\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/03\\\/04\",\"fair_date_end_hour\":null,\"fair_edition\":\"2\",\"fair_visitors\":\"5000\",\"fair_exhibitors\":\"90\",\"fair_countries\":\"12\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"3902\\\",\\\"fair_foreign_current\\\":\\\"230\\\",\\\"fair_exhibitors_current\\\":\\\"53\\\",\\\"fair_countries_current\\\":\\\"31\\\",\\\"fair_area_current\\\":\\\"10000\\\",\\\"fair_year_previous\\\":\\\"\\\",\\\"fair_visitors_previous\\\":\\\"0\\\",\\\"fair_foreign_previous\\\":\\\"0\\\",\\\"fair_exhibitors_previous\\\":\\\"0\\\",\\\"fair_countries_previous\\\":\\\"0\\\",\\\"fair_area_previous\\\":\\\"0\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/modularprefabexpo\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/modular_prefab_expo\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/modular-prefab-expo\",\"fair_youtube\":null,\"fair_color_accent\":\"#343428\",\"fair_color_main2\":\"#fe8302\",\"fair_hall\":\"C1, C2\",\"fair_area\":\"15000\",\"fair_kw\":\"2253\",\"fair_badge\":\"modularprefabe\",\"fair_domain\":\"modularprefabexpopoland.com\",\"fair_shop\":null,\"fair_group\":\"gr2\",\"category_pl\":\"Budownictwo\",\"category_en\":\"Construction\",\"konf_name\":\"Modular & Prefab Construction Forum\",\"konf_title_pl\":\"Konferencja Technologii Budownictwa Modu\\u0142owego i Materia\\u0142\\u00f3w Prefabrykowanych\",\"konf_title_en\":\"Conference on Modular Construction Technologies and Prefabricated Materials\",\"fair_kw_new\":\"64\",\"fair_kw_old_arch\":\"2026-1959;2027-2253\",\"fair_kw_new_arch\":\"2026-64\",\"fair_entrance\":null},{\"id\":\"288\",\"fair_name_pl\":\"Gun & Shooting Expo\",\"fair_name_en\":\"Gun & Shooting Expo\",\"fair_desc_pl\":\"Targi broni cywilnej, akcesori\\u00f3w i bezpiecze\\u0144stwa osobistego\",\"fair_desc_en\":\"Trade Fair of Civilian Firearms, Accessories and Personal Security\",\"fair_short_desc_pl\":\"Targi broni cywilnej i bezpiecze\\u0144stwa\",\"fair_short_desc_en\":\"Trade Fair of Civilian Firearms and Security\",\"fair_full_desc_pl\":\"<strong>Gun & Shooting Expo<\\\/strong> to kompleksowe wydarzenie bran\\u017cowe po\\u015bwi\\u0119cone sprz\\u0119towi i technologiom dla legalnego rynku broni cywilnej. Targi gromadz\\u0105 producent\\u00f3w, dystrybutor\\u00f3w, operator\\u00f3w strzelnic oraz pasjonat\\u00f3w, prezentuj\\u0105c bro\\u0144 i optyk\\u0119, amunicj\\u0119 i komponenty, akcesoria, sejfy S1, systemy zabezpiecze\\u0144, trena\\u017cery VR i laserowe, oprogramowanie oraz odzie\\u017c ochronn\\u0105.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy: <\\\/strong> Sprawd\\u017a swoje mo\\u017cliwo\\u015bci na profesjonalnych symulatorach, poznaj techniki analizy strza\\u0142u i skorzystaj z wiedzy trener\\u00f3w oraz instruktor\\u00f3w.\\r\\n\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w prezentacjach ekspert\\u00f3w zajmuj\\u0105cych si\\u0119 bezpiecze\\u0144stwem, przepisami oraz odpowiedzialnym u\\u017cytkowaniem broni.\\r\\n\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj producent\\u00f3w, dystrybutor\\u00f3w i operator\\u00f3w strzelnic, aby nawi\\u0105za\\u0107 warto\\u015bciowe kontakty i rozwija\\u0107 projekty szybciej.\",\"fair_full_desc_en\":\"<strong>Gun & Shooting Expo<\\\/strong> is a comprehensive industry event dedicated to equipment and technologies for the legal civilian firearms market. The fair brings together manufacturers, distributors, shooting range operators, and enthusiasts, presenting firearms and optics, ammunition and components, accessories, S1 safes, security systems, VR and laser trainers, software, and protective gear.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Test yourself on professional simulators, explore shot analysis techniques, and learn from trainers and instructors.\\r\\n\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Take part in presentations by experts on safety, regulations, and responsible firearm ownership.\\r\\n\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet manufacturers, distributors, and range operators to establish valuable contacts and accelerate projects.\",\"fair_date_start\":\"2027\\\/03\\\/02\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/03\\\/04\",\"fair_date_end_hour\":null,\"fair_edition\":\"2\",\"fair_visitors\":null,\"fair_exhibitors\":null,\"fair_countries\":null,\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"25033\\\",\\\"fair_foreign_current\\\":\\\"2144\\\",\\\"fair_exhibitors_current\\\":\\\"362\\\",\\\"fair_countries_current\\\":\\\"52\\\",\\\"fair_area_current\\\":\\\"60000\\\",\\\"fair_year_previous\\\":\\\"\\\",\\\"fair_visitors_previous\\\":\\\"0\\\",\\\"fair_foreign_previous\\\":\\\"0\\\",\\\"fair_exhibitors_previous\\\":\\\"0\\\",\\\"fair_countries_previous\\\":\\\"0\\\",\\\"fair_area_previous\\\":\\\"0\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/profile.php?id=61583525067130#\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/gun_shooting_expo\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/gun-shooting-expo\\\/\",\"fair_youtube\":null,\"fair_color_accent\":\"#9e8e64\",\"fair_color_main2\":\"#2b4a38\",\"fair_hall\":\"B1, B2\",\"fair_area\":null,\"fair_kw\":\"2207\",\"fair_badge\":\"gunshot\",\"fair_domain\":\"gunshootingexpo.com\",\"fair_shop\":\"{\\\"products\\\":{\\\"smycze\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"logotyp\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-planu\\\":{\\\"prod_price_pl\\\":\\\"5500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"vip-room\\\":{\\\"prod_price_pl\\\":\\\"17000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-restauracji\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wieczoru\\\":{\\\"prod_price_pl\\\":\\\"70000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-vip-gold\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"sponsor-wkladki-reklamowej\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"lokowanie-w-sms\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"post-promocyjny\\\":{\\\"prod_price_pl\\\":\\\"1800\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-publikacji\\\":{\\\"prod_price_pl\\\":\\\"1300\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zdjecia-stoiska\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wideo-promocyjne\\\":{\\\"prod_price_pl\\\":\\\"2500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"relacja\\\":{\\\"prod_price_pl\\\":\\\"700\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wywiad\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"wspoltworzony-post\\\":{\\\"prod_price_pl\\\":\\\"1500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"hostessa\\\":{\\\"prod_price_pl\\\":\\\"1200\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"udostepnienie-przestrzeni\\\":{\\\"prod_price_pl\\\":\\\"700\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"roll-up-winder\\\":{\\\"prod_price_pl\\\":\\\"1200\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"zaproszenie-w-wysy\\u0142ce\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-24x6\\\":{\\\"prod_price_pl\\\":\\\"27000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-15x6\\\":{\\\"prod_price_pl\\\":\\\"24000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-elewacji-6x6\\\":{\\\"prod_price_pl\\\":\\\"18000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"stand-reklamowy\\\":{\\\"prod_price_pl\\\":\\\"3500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"materialy-reklamowe\\\":{\\\"prod_price_pl\\\":\\\"4000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"6000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"5000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"mailing-wzmianka\\\":{\\\"prod_price_pl\\\":\\\"2000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"naklejka-podlogowa\\\":{\\\"prod_price_pl\\\":\\\"450\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"komunikat-w-radiowezle\\\":{\\\"prod_price_pl\\\":\\\"600\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"baner-na-barierkach\\\":{\\\"prod_price_pl\\\":\\\"1200\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flagobaner\\\":{\\\"prod_price_pl\\\":\\\"1300\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"flaga-na-maszcie\\\":{\\\"prod_price_pl\\\":\\\"1400\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"pozycjonowanie-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"600\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-klienta\\\":{\\\"prod_price_pl\\\":\\\"1500\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-nas\\\":{\\\"prod_price_pl\\\":\\\"2000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"skaner-wystawcy\\\":{\\\"prod_price_pl\\\":\\\"650\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"header-en file-upload\\\":\\\"\\\",\\\"custom-link\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"header_text_pl\\\":\\\"\\\",\\\"header_text_en\\\":\\\"\\\",\\\"sold_out\\\":false}},\\\"options\\\":{\\\"margin\\\":\\\"\\\"}}\",\"fair_group\":\"gr2\",\"category_pl\":\"Inne\",\"category_en\":\"Other\",\"konf_name\":\"International Security & Firearms Forum\",\"konf_title_pl\":\"Konferencja broni cywilnej, akcesori\\u00f3w i bezpiecze\\u0144stwa osobistego\",\"konf_title_en\":\"Conference on Civilian Firearms, Accessories, and Personal Security\",\"fair_kw_new\":\"66\",\"fair_kw_old_arch\":\"2026-2003;2027-2207\",\"fair_kw_new_arch\":\"2026- 66;\",\"fair_entrance\":null},{\"id\":\"296\",\"fair_name_pl\":\"Drone World Expo\",\"fair_name_en\":\"Drone World Expo\",\"fair_desc_pl\":\"Targi Technologii i Zastosowa\\u0144 Dron\\u00f3w i System\\u00f3w Bezza\\u0142ogowych\",\"fair_desc_en\":\"Trade Fair for Drone and Unmanned Systems Technology and Applications\",\"fair_short_desc_pl\":\"Targi Dron\\u00f3w i System\\u00f3w Bezza\\u0142ogowych\",\"fair_short_desc_en\":\"Drone and Unmanned Systems Trade Fair\",\"fair_full_desc_pl\":\"<strong>Drone World Expo<\\\/strong> to wiod\\u0105ce wydarzenie bran\\u017cowe prezentuj\\u0105ce zaawansowane technologie dronowe i bezza\\u0142ogowe systemy powietrzne. W\\u015br\\u00f3d prezentowanych rozwi\\u0105za\\u0144 znajd\\u0105 si\\u0119 drony inspekcyjne i przemys\\u0142owe, specjalistyczne jednostki dla s\\u0142u\\u017cb ratunkowych i mundurowych, precyzyjne drony geodezyjne, fotogrametryczne oraz inne specjalistyczne rozwi\\u0105zania\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Odkryj prze\\u0142omowe technologie dronowe dla przemys\\u0142u.\\r\\n\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w ekspert\\u00f3w dronowych i UAS.\\r\\n\\r\\n<br><br><strong>Nawi\\u0105\\u017c relacje:<\\\/strong> Spotkaj lider\\u00f3w bran\\u017cy, nawi\\u0105\\u017c cenne kontakty i zwi\\u0119ksz przewag\\u0119 konkurencyjn\\u0105 na rynku.\",\"fair_full_desc_en\":\"<strong>Drone World Expo<\\\/strong> is a leading industry event showcasing advanced drone technologies and unmanned aerial systems. Among the presented solutions will be inspection and industrial drones, specialized units for emergency and uniformed services, precise surveying and photogrammetry drones, as well as other specialized applications.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover breakthrough drone technologies for industry.\\r\\n\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Take part in expert conferences on drones and UAS.\\r\\n\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive edge in the market.\",\"fair_date_start\":\"2027\\\/03\\\/02\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/03\\\/04\",\"fair_date_end_hour\":null,\"fair_edition\":\"2\",\"fair_visitors\":null,\"fair_exhibitors\":null,\"fair_countries\":null,\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"25033\\\",\\\"fair_foreign_current\\\":\\\"2144\\\",\\\"fair_exhibitors_current\\\":\\\"362\\\",\\\"fair_countries_current\\\":\\\"52\\\",\\\"fair_area_current\\\":\\\"60000\\\",\\\"fair_year_previous\\\":\\\"\\\",\\\"fair_visitors_previous\\\":\\\"0\\\",\\\"fair_foreign_previous\\\":\\\"0\\\",\\\"fair_exhibitors_previous\\\":\\\"0\\\",\\\"fair_countries_previous\\\":\\\"0\\\",\\\"fair_area_previous\\\":\\\"0\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/DroneTechPolandExpo\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/dronetechpolandexpo\\\/pl\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/drone-world-expo\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/@ptakwarsawexpo2557\",\"fair_color_accent\":\"#4b595c\",\"fair_color_main2\":\"#ff6b35\",\"fair_hall\":\"D1, D2\",\"fair_area\":null,\"fair_kw\":\"2229\",\"fair_badge\":\"dronetech\",\"fair_domain\":\"droneworldexpo.pl\",\"fair_shop\":null,\"fair_group\":\"gr2\",\"category_pl\":\"Przemys\\u0142\",\"category_en\":\"Industry\",\"konf_name\":\"SkyTech Intelligence Summit\",\"konf_title_pl\":\"Konferencja Technologii i Zastosowa\\u0144 Dron\\u00f3w Cywilnych i System\\u00f3w Bezza\\u0142ogowych\",\"konf_title_en\":\"Conference for Civil Drone Technologies and Applications and Unmanned Systems\",\"fair_kw_new\":\"59\",\"fair_kw_old_arch\":\"2026-1776;2027-2229;\",\"fair_kw_new_arch\":\"2026- 59;\",\"fair_entrance\":null},{\"id\":\"301\",\"fair_name_pl\":\"Warsaw Security & Defence Expo\",\"fair_name_en\":\"Warsaw Security & Defence Expo\",\"fair_desc_pl\":\"Zintegrowany blok targowy\",\"fair_desc_en\":\"Integrated trade fair block\",\"fair_short_desc_pl\":\"Zintegrowany blok targowy\",\"fair_short_desc_en\":\"Integrated trade fair block\",\"fair_full_desc_pl\":null,\"fair_full_desc_en\":null,\"fair_date_start\":\"2027\\\/03\\\/02\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2027\\\/03\\\/04\",\"fair_date_end_hour\":null,\"fair_edition\":\"2\",\"fair_visitors\":null,\"fair_exhibitors\":null,\"fair_countries\":null,\"estimations\":\"{\\\"fair_year_current\\\":\\\"2026\\\",\\\"fair_visitors_current\\\":\\\"25033\\\",\\\"fair_foreign_current\\\":\\\"2144\\\",\\\"fair_exhibitors_current\\\":\\\"362\\\",\\\"fair_countries_current\\\":\\\"52\\\",\\\"fair_area_current\\\":\\\"60000\\\",\\\"fair_year_previous\\\":\\\"\\\",\\\"fair_visitors_previous\\\":\\\"0\\\",\\\"fair_foreign_previous\\\":\\\"0\\\",\\\"fair_exhibitors_previous\\\":\\\"0\\\",\\\"fair_countries_previous\\\":\\\"0\\\",\\\"fair_area_previous\\\":\\\"0\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/WarsawDefenceSecurityExpo\\\/\",\"fair_instagram\":null,\"fair_linkedin\":null,\"fair_youtube\":null,\"fair_color_accent\":\"#135da0\",\"fair_color_main2\":\"#43b9ad\",\"fair_hall\":null,\"fair_area\":null,\"fair_kw\":\"1776\",\"fair_badge\":\"securitydefence\",\"fair_domain\":\"warsawsecuritydefenceexpo.com\",\"fair_shop\":null,\"fair_group\":\"gr2\",\"category_pl\":null,\"category_en\":null,\"konf_name\":\"Security & Defence Forum\",\"konf_title_pl\":\"Security & Defence Forum\",\"konf_title_en\":\"Security & Defence Forum\",\"fair_kw_new\":\"59, 60, 66\",\"fair_kw_old_arch\":null,\"fair_kw_new_arch\":\"2026-59, 60, 66;\",\"fair_entrance\":null}];\r\n                const get_database_logotypes_data = [{\"id\":\"3883\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/partner-targow\\\/kit_1.webp\",\"logos_type\":\"partner-targow\",\"logos_order\":\"1\",\"logos_alt\":\"Kit_1\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-23 07:17:43\",\"created_at\":\"2025-05-23 07:17:43\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-targow\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w\\\", \\\"desc_en\\\": \\\"Fair Partner\\\"}\"},{\"id\":\"3884\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/partner-targow\\\/Polish_chamber.webp\",\"logos_type\":\"partner-targow\",\"logos_order\":\"2\",\"logos_alt\":\"Polish_chamber\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-23 07:17:44\",\"created_at\":\"2025-05-23 07:17:44\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-targow\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w\\\", \\\"desc_en\\\": \\\"Fair Partner\\\"}\"},{\"id\":\"3885\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/partner-targow\\\/UKASIEWICZ_SIEC_BADAWCZA.webp\",\"logos_type\":\"partner-targow\",\"logos_order\":\"3\",\"logos_alt\":\"UKASIEWICZ_SIEC_BADAWCZA\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-23 07:17:44\",\"created_at\":\"2025-05-23 07:17:44\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-targow\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w\\\", \\\"desc_en\\\": \\\"Fair Partner\\\"}\"},{\"id\":\"3887\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/partner-targow\\\/Federacja.webp\",\"logos_type\":\"partner-targow\",\"logos_order\":\"4\",\"logos_alt\":\"Federacja\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2026-01-23 08:17:52\",\"created_at\":\"2025-05-23 07:17:44\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-targow\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w\\\", \\\"desc_en\\\": \\\"Fair Partner\\\"}\"},{\"id\":\"7230\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/partner-targow\\\/tableart.webp\",\"logos_type\":\"partner-targow\",\"logos_order\":\"5\",\"logos_alt\":null,\"logos_link\":null,\"logos_exh_name\":null,\"data\":\"{\\\"logos_alt\\\":\\\"Tableart\\\",\\\"logos_alt_en\\\":\\\"Tableart\\\",\\\"logos_alt_de\\\":\\\"Tableart\\\",\\\"logos_pl_PL\\\":\\\"true\\\",\\\"logos_en_US\\\":\\\"true\\\",\\\"logos_de_DE\\\":\\\"true\\\"}\",\"updated\":\"aleksandra.wagner@warsawexpo.eu\",\"updated_at\":\"2026-01-23 08:17:52\",\"created_at\":\"2026-01-23 08:17:02\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-targow\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w\\\", \\\"desc_en\\\": \\\"Fair Partner\\\"}\"},{\"id\":\"7231\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/partner-targow\\\/fws.webp\",\"logos_type\":\"partner-targow\",\"logos_order\":\"6\",\"logos_alt\":null,\"logos_link\":null,\"logos_exh_name\":null,\"data\":\"{\\\"logos_alt\\\":\\\"Fws\\\",\\\"logos_alt_en\\\":\\\"Fws\\\",\\\"logos_alt_de\\\":\\\"Fws\\\",\\\"logos_pl_PL\\\":\\\"true\\\",\\\"logos_en_US\\\":\\\"true\\\",\\\"logos_de_DE\\\":\\\"true\\\"}\",\"updated\":\"aleksandra.wagner@warsawexpo.eu\",\"updated_at\":\"2026-01-23 08:17:52\",\"created_at\":\"2026-01-23 08:17:02\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-targow\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w\\\", \\\"desc_en\\\": \\\"Fair Partner\\\"}\"},{\"id\":\"3890\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/patron-medialny\\\/SZEF_KUCHNI_PATRON_MEDIALNY.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"1\",\"logos_alt\":\"SZEF_KUCHNI_PATRON_MEDIALNY\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2026-03-05 07:28:37\",\"created_at\":\"2025-05-23 07:17:54\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"3894\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/patron-medialny\\\/wineme.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"2\",\"logos_alt\":\"Wineme\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2026-03-05 07:30:25\",\"created_at\":\"2025-05-23 07:17:54\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"3895\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/patron-medialny\\\/wino_pasja.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"3\",\"logos_alt\":\"Wino_pasja\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2026-03-05 07:30:25\",\"created_at\":\"2025-05-23 07:17:54\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"3896\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/patron-medialny\\\/bevlegal.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"4\",\"logos_alt\":\"Bevlegal\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2026-03-05 07:30:25\",\"created_at\":\"2025-05-23 07:17:54\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"3897\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/patron-medialny\\\/food-service-logo.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"5\",\"logos_alt\":\"Food-service-logo\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2026-03-05 07:30:25\",\"created_at\":\"2025-05-23 07:17:55\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"5033\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/patron-medialny\\\/image.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"6\",\"logos_alt\":\"Image\",\"logos_link\":\"https:\\\/\\\/factories.pl\\\/\",\"logos_exh_name\":null,\"data\":null,\"updated\":\"julia.witek@warsawexpo.eu\",\"updated_at\":\"2026-03-05 07:30:25\",\"created_at\":\"2025-08-29 11:42:38\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"7232\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/patron-medialny\\\/hotelarz.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"7\",\"logos_alt\":null,\"logos_link\":null,\"logos_exh_name\":null,\"data\":\"{\\\"logos_alt\\\":\\\"Hotelarz\\\",\\\"logos_alt_en\\\":\\\"Hotelarz\\\",\\\"logos_alt_de\\\":\\\"Hotelarz\\\",\\\"logos_pl_PL\\\":\\\"true\\\",\\\"logos_en_US\\\":\\\"true\\\",\\\"logos_de_DE\\\":\\\"true\\\"}\",\"updated\":\"aleksandra.wagner@warsawexpo.eu\",\"updated_at\":\"2026-03-05 07:30:25\",\"created_at\":\"2026-01-23 08:17:10\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"7233\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/patron-medialny\\\/erestauracja.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"8\",\"logos_alt\":null,\"logos_link\":null,\"logos_exh_name\":null,\"data\":\"{\\\"logos_alt\\\":\\\"Erestauracja\\\",\\\"logos_alt_en\\\":\\\"Erestauracja\\\",\\\"logos_alt_de\\\":\\\"Erestauracja\\\",\\\"logos_pl_PL\\\":\\\"true\\\",\\\"logos_en_US\\\":\\\"true\\\",\\\"logos_de_DE\\\":\\\"true\\\"}\",\"updated\":\"aleksandra.wagner@warsawexpo.eu\",\"updated_at\":\"2026-03-05 07:30:25\",\"created_at\":\"2026-01-23 08:17:10\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"7234\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/patron-medialny\\\/przeglad gastro.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"9\",\"logos_alt\":null,\"logos_link\":null,\"logos_exh_name\":null,\"data\":\"{\\\"logos_alt\\\":\\\"Przeglad Gastro\\\",\\\"logos_alt_en\\\":\\\"Przeglad Gastro\\\",\\\"logos_alt_de\\\":\\\"Przeglad Gastro\\\",\\\"logos_pl_PL\\\":\\\"true\\\",\\\"logos_en_US\\\":\\\"true\\\",\\\"logos_de_DE\\\":\\\"true\\\"}\",\"updated\":\"aleksandra.wagner@warsawexpo.eu\",\"updated_at\":\"2026-03-05 07:30:25\",\"created_at\":\"2026-01-23 08:17:10\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"7759\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/patron-medialny\\\/restaurant management (1).webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"10\",\"logos_alt\":null,\"logos_link\":null,\"logos_exh_name\":null,\"data\":\"{\\\"logos_alt\\\":\\\"Restaurant Management (1)\\\",\\\"logos_alt_en\\\":\\\"Restaurant Management (1)\\\",\\\"logos_alt_de\\\":\\\"Restaurant Management (1)\\\",\\\"logos_pl_PL\\\":\\\"true\\\",\\\"logos_en_US\\\":\\\"true\\\",\\\"logos_de_DE\\\":\\\"true\\\"}\",\"updated\":\"aleksandra.wagner@warsawexpo.eu\",\"updated_at\":\"2026-03-05 07:30:25\",\"created_at\":\"2026-02-27 14:00:19\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"7760\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/patron-medialny\\\/restaurant management.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"11\",\"logos_alt\":null,\"logos_link\":null,\"logos_exh_name\":null,\"data\":\"{\\\"logos_alt\\\":\\\"Restaurant Management\\\",\\\"logos_alt_en\\\":\\\"Restaurant Management\\\",\\\"logos_alt_de\\\":\\\"Restaurant Management\\\",\\\"logos_pl_PL\\\":\\\"true\\\",\\\"logos_en_US\\\":\\\"true\\\",\\\"logos_de_DE\\\":\\\"true\\\"}\",\"updated\":\"aleksandra.wagner@warsawexpo.eu\",\"updated_at\":\"2026-03-05 07:30:25\",\"created_at\":\"2026-02-27 14:00:19\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"7761\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/patron-medialny\\\/wiadomo\\u015bci spozywcze.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"12\",\"logos_alt\":null,\"logos_link\":null,\"logos_exh_name\":null,\"data\":\"{\\\"logos_alt\\\":\\\"Wiadomo\\\\u015bci Spozywcze\\\",\\\"logos_alt_en\\\":\\\"Wiadomo\\\\u015bci Spozywcze\\\",\\\"logos_alt_de\\\":\\\"Wiadomo\\\\u015bci Spozywcze\\\",\\\"logos_pl_PL\\\":\\\"true\\\",\\\"logos_en_US\\\":\\\"true\\\",\\\"logos_de_DE\\\":\\\"true\\\"}\",\"updated\":\"aleksandra.wagner@warsawexpo.eu\",\"updated_at\":\"2026-03-05 07:30:25\",\"created_at\":\"2026-02-27 14:01:44\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"7829\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/patron-medialny\\\/kdcp.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"13\",\"logos_alt\":null,\"logos_link\":null,\"logos_exh_name\":null,\"data\":\"{\\\"logos_alt\\\":\\\"Kdcp\\\",\\\"logos_alt_en\\\":\\\"Kdcp\\\",\\\"logos_alt_de\\\":\\\"Kdcp\\\",\\\"logos_pl_PL\\\":\\\"true\\\",\\\"logos_en_US\\\":\\\"true\\\",\\\"logos_de_DE\\\":\\\"true\\\"}\",\"updated\":\"aleksandra.wagner@warsawexpo.eu\",\"updated_at\":\"2026-03-05 07:30:25\",\"created_at\":\"2026-03-05 07:28:40\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"7851\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/patron-medialny\\\/foodanddesign.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"14\",\"logos_alt\":null,\"logos_link\":null,\"logos_exh_name\":null,\"data\":\"{\\\"logos_alt\\\":\\\"Foodanddesign\\\",\\\"logos_alt_en\\\":\\\"Foodanddesign\\\",\\\"logos_alt_de\\\":\\\"Foodanddesign\\\",\\\"logos_pl_PL\\\":\\\"true\\\",\\\"logos_en_US\\\":\\\"true\\\",\\\"logos_de_DE\\\":\\\"true\\\"}\",\"updated\":\"aleksandra.wagner@warsawexpo.eu\",\"updated_at\":\"2026-03-05 13:39:31\",\"created_at\":\"2026-03-05 13:39:31\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"7515\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/partner-merytoryczny\\\/Izba Polskich Win.webp\",\"logos_type\":\"partner-merytoryczny\",\"logos_order\":\"1\",\"logos_alt\":null,\"logos_link\":null,\"logos_exh_name\":null,\"data\":\"{\\\"logos_alt\\\":\\\"Izba Polskich Win\\\",\\\"logos_alt_en\\\":\\\"Izba Polskich Win\\\",\\\"logos_alt_de\\\":\\\"Izba Polskich Win\\\",\\\"logos_pl_PL\\\":\\\"true\\\",\\\"logos_en_US\\\":\\\"true\\\",\\\"logos_de_DE\\\":\\\"true\\\"}\",\"updated\":\"aleksandra.wagner@warsawexpo.eu\",\"updated_at\":\"2026-02-16 07:47:23\",\"created_at\":\"2026-02-16 07:47:23\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-merytoryczny\\\", \\\"desc_pl\\\": \\\"Partner Merytoryczny\\\", \\\"desc_en\\\": \\\"Content Partner\\\"}\"},{\"id\":\"7721\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/partner-strategiczny\\\/meiko (1).webp\",\"logos_type\":\"partner-strategiczny\",\"logos_order\":\"1\",\"logos_alt\":null,\"logos_link\":null,\"logos_exh_name\":null,\"data\":\"{\\\"logos_alt\\\":\\\"Meiko (1)\\\",\\\"logos_alt_en\\\":\\\"Meiko (1)\\\",\\\"logos_alt_de\\\":\\\"Meiko (1)\\\",\\\"logos_pl_PL\\\":\\\"true\\\",\\\"logos_en_US\\\":\\\"true\\\",\\\"logos_de_DE\\\":\\\"true\\\"}\",\"updated\":\"aleksandra.wagner@warsawexpo.eu\",\"updated_at\":\"2026-02-25 13:31:09\",\"created_at\":\"2026-02-25 13:31:09\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-strategiczny\\\", \\\"desc_pl\\\": \\\"Partner Strategiczny\\\", \\\"desc_en\\\": \\\"Strategic Partner\\\"}\"},{\"id\":\"3878\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/europe-event\\\/VINEXPO (Pary\\u017c, Francja) - VINEXPO (Paris, France).webp\",\"logos_type\":\"europe-event\",\"logos_order\":\"1\",\"logos_alt\":\"VINEXPO (Pary\\u017c, Francja) - VINEXPO (Paris, France)\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-23 07:17:35\",\"created_at\":\"2025-05-23 07:17:35\",\"meta_data\":\"{\\\"slug\\\": \\\"europe-event\\\", \\\"desc_pl\\\": \\\"Wydarzenie Europa\\\", \\\"desc_en\\\": \\\"Europe Event\\\"}\"},{\"id\":\"3879\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/europe-event\\\/VINITALY (Werona, W\\u0142ochy) - VINITALY (Verona, Italy).webp\",\"logos_type\":\"europe-event\",\"logos_order\":\"2\",\"logos_alt\":\"VINITALY (Werona, W\\u0142ochy) - VINITALY (Verona, Italy)\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-23 07:17:35\",\"created_at\":\"2025-05-23 07:17:35\",\"meta_data\":\"{\\\"slug\\\": \\\"europe-event\\\", \\\"desc_pl\\\": \\\"Wydarzenie Europa\\\", \\\"desc_en\\\": \\\"Europe Event\\\"}\"},{\"id\":\"3880\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/europe-event\\\/Wine Warsaw Expo (Warszawa, Polska) - Wine Warsaw Expo (Warsaw, Poland).webp\",\"logos_type\":\"europe-event\",\"logos_order\":\"3\",\"logos_alt\":\"Wine Warsaw Expo (Warszawa, Polska) - Wine Warsaw Expo (Warsaw, Poland)\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-23 07:17:35\",\"created_at\":\"2025-05-23 07:17:35\",\"meta_data\":\"{\\\"slug\\\": \\\"europe-event\\\", \\\"desc_pl\\\": \\\"Wydarzenie Europa\\\", \\\"desc_en\\\": \\\"Europe Event\\\"}\"},{\"id\":\"3881\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/europe-event\\\/PROWEIN (D\\u00fcsseldorf, Niemcy) - PROWEIN (D\\u00fcsseldorf, Germany).webp\",\"logos_type\":\"europe-event\",\"logos_order\":\"4\",\"logos_alt\":\"PROWEIN (D\\u00fcsseldorf, Niemcy) - PROWEIN (D\\u00fcsseldorf, Germany)\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-23 07:17:35\",\"created_at\":\"2025-05-23 07:17:35\",\"meta_data\":\"{\\\"slug\\\": \\\"europe-event\\\", \\\"desc_pl\\\": \\\"Wydarzenie Europa\\\", \\\"desc_en\\\": \\\"Europe Event\\\"}\"},{\"id\":\"3882\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/europe-event\\\/VIEVINUM (Wiede\\u0144, Austria) - VIEVINUM (Vienna, Austria).webp\",\"logos_type\":\"europe-event\",\"logos_order\":\"5\",\"logos_alt\":\"VIEVINUM (Wiede\\u0144, Austria) - VIEVINUM (Vienna, Austria)\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-23 07:17:35\",\"created_at\":\"2025-05-23 07:17:35\",\"meta_data\":\"{\\\"slug\\\": \\\"europe-event\\\", \\\"desc_pl\\\": \\\"Wydarzenie Europa\\\", \\\"desc_en\\\": \\\"Europe Event\\\"}\"},{\"id\":\"5011\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/miedzynarodowy-patron-medialny\\\/thumbnail_ExpoTobi-300_200.webp\",\"logos_type\":\"miedzynarodowy-patron-medialny\",\"logos_order\":\"1\",\"logos_alt\":\"Thumbnail_ExpoTobi-300_200\",\"logos_link\":\"https:\\\/\\\/expotobi.com\\\/\",\"logos_exh_name\":null,\"data\":null,\"updated\":\"julia.witek@warsawexpo.eu\",\"updated_at\":\"2025-08-27 09:05:00\",\"created_at\":\"2025-08-27 09:04:57\",\"meta_data\":\"{\\\"slug\\\": \\\"miedzynarodowy-patron-medialny\\\", \\\"desc_pl\\\": \\\"Mi\\u0119dzynarodowy Patron Medialny\\\", \\\"desc_en\\\": \\\"International Media Patron\\\"}\"},{\"id\":\"7677\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/header-partner-targow-i-konferencji\\\/Izba Polskich Win.webp\",\"logos_type\":\"header-partner-targow-i-konferencji\",\"logos_order\":\"1\",\"logos_alt\":null,\"logos_link\":null,\"logos_exh_name\":null,\"data\":\"{\\\"logos_alt\\\":\\\"Izba Polskich Win\\\",\\\"logos_alt_en\\\":\\\"Izba Polskich Win\\\",\\\"logos_alt_de\\\":\\\"Izba Polskich Win\\\",\\\"logos_pl_PL\\\":\\\"true\\\",\\\"logos_en_US\\\":\\\"true\\\",\\\"logos_de_DE\\\":\\\"true\\\"}\",\"updated\":\"magdalena.szkoda@warsawexpo.eu\",\"updated_at\":\"2026-02-23 08:57:08\",\"created_at\":\"2026-02-23 08:57:08\",\"meta_data\":\"{\\\"slug\\\": \\\"header-partner-targow-i-konferencji\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w i Konferencji\\\", \\\"desc_en\\\": \\\"Trade Fair and Conference Partner\\\"}\"},{\"id\":\"7678\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/header-partner-targow-i-konferencji\\\/tableart.webp\",\"logos_type\":\"header-partner-targow-i-konferencji\",\"logos_order\":\"2\",\"logos_alt\":null,\"logos_link\":null,\"logos_exh_name\":null,\"data\":\"{\\\"logos_alt\\\":\\\"Tableart\\\",\\\"logos_alt_en\\\":\\\"Tableart\\\",\\\"logos_alt_de\\\":\\\"Tableart\\\",\\\"logos_pl_PL\\\":\\\"true\\\",\\\"logos_en_US\\\":\\\"true\\\",\\\"logos_de_DE\\\":\\\"true\\\"}\",\"updated\":\"magdalena.szkoda@warsawexpo.eu\",\"updated_at\":\"2026-02-23 08:57:12\",\"created_at\":\"2026-02-23 08:57:12\",\"meta_data\":\"{\\\"slug\\\": \\\"header-partner-targow-i-konferencji\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w i Konferencji\\\", \\\"desc_en\\\": \\\"Trade Fair and Conference Partner\\\"}\"},{\"id\":\"7679\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/header-partner-targow-i-konferencji\\\/wineme.webp\",\"logos_type\":\"header-partner-targow-i-konferencji\",\"logos_order\":\"3\",\"logos_alt\":null,\"logos_link\":null,\"logos_exh_name\":null,\"data\":\"{\\\"logos_alt\\\":\\\"Wineme\\\",\\\"logos_alt_en\\\":\\\"Wineme\\\",\\\"logos_alt_de\\\":\\\"Wineme\\\",\\\"logos_pl_PL\\\":\\\"true\\\",\\\"logos_en_US\\\":\\\"true\\\",\\\"logos_de_DE\\\":\\\"true\\\"}\",\"updated\":\"magdalena.szkoda@warsawexpo.eu\",\"updated_at\":\"2026-02-23 08:57:15\",\"created_at\":\"2026-02-23 08:57:15\",\"meta_data\":\"{\\\"slug\\\": \\\"header-partner-targow-i-konferencji\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w i Konferencji\\\", \\\"desc_en\\\": \\\"Trade Fair and Conference Partner\\\"}\"},{\"id\":\"7722\",\"fair_id\":\"174\",\"logos_url\":\"\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/header-partner-strategiczny\\\/meiko (1).webp\",\"logos_type\":\"header-partner-strategiczny\",\"logos_order\":\"1\",\"logos_alt\":null,\"logos_link\":null,\"logos_exh_name\":null,\"data\":\"{\\\"logos_alt\\\":\\\"Meiko (1)\\\",\\\"logos_alt_en\\\":\\\"Meiko (1)\\\",\\\"logos_alt_de\\\":\\\"Meiko (1)\\\",\\\"logos_pl_PL\\\":\\\"true\\\",\\\"logos_en_US\\\":\\\"true\\\",\\\"logos_de_DE\\\":\\\"true\\\"}\",\"updated\":\"aleksandra.wagner@warsawexpo.eu\",\"updated_at\":\"2026-02-25 13:31:43\",\"created_at\":\"2026-02-25 13:31:43\",\"meta_data\":\"{\\\"slug\\\": \\\"header-partner-strategiczny\\\", \\\"desc_pl\\\": \\\"Partner Strategiczny\\\", \\\"desc_en\\\": \\\"Strategic Partner\\\"}\"}];\r\n                const get_database_meta_data = [{\"id\":\"1\",\"slug\":\"euro_rate\",\"meta_data\":\"4.2286\",\"rights\":\"none\",\"updated\":\"NBP Api\",\"updated_at\":\"2026-05-07 16:00:02\",\"created_at\":\"2025-05-06 12:53:04\"},{\"id\":\"3\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-targow\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w\\\", \\\"desc_en\\\": \\\"Fair Partner\\\"}\",\"rights\":\"all\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-05-21 10:11:55\",\"created_at\":\"2025-05-06 10:55:51\"},{\"id\":\"5\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\",\"rights\":\"all\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-05-21 10:11:49\",\"created_at\":\"2025-05-06 12:07:14\"},{\"id\":\"6\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-merytoryczny\\\", \\\"desc_pl\\\": \\\"Partner Merytoryczny\\\", \\\"desc_en\\\": \\\"Content Partner\\\"}\",\"rights\":\"all\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-05-15 08:38:35\",\"created_at\":\"2025-05-06 12:18:18\"},{\"id\":\"7\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-strategiczny\\\", \\\"desc_pl\\\": \\\"Partner Strategiczny\\\", \\\"desc_en\\\": \\\"Strategic Partner\\\"}\",\"rights\":\"all\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-05-15 08:38:19\",\"created_at\":\"2025-05-12 07:17:44\"},{\"id\":\"8\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-honorowy\\\", \\\"desc_pl\\\": \\\"Partner Honorowy\\\", \\\"desc_en\\\": \\\"Honorary Partner\\\"}\",\"rights\":\"all\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-05-13 13:24:40\",\"created_at\":\"2025-05-12 07:18:41\"},{\"id\":\"9\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"kraj-partnerski\\\", \\\"desc_pl\\\": \\\"Kraj Partnerski\\\", \\\"desc_en\\\": \\\"Partner Country\\\"}\",\"rights\":\"admin\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-05-13 13:24:50\",\"created_at\":\"2025-05-12 07:19:43\"},{\"id\":\"10\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"europe-event\\\", \\\"desc_pl\\\": \\\"Wydarzenie Europa\\\", \\\"desc_en\\\": \\\"Europe Event\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-09-15 07:21:07\",\"created_at\":\"2025-05-15 08:36:07\"},{\"id\":\"11\",\"slug\":\"patrons\",\"meta_data\":\"{ \\\"slug\\\": \\\"international-partner\\\",\\\"desc_pl\\\": \\\"Patronat Mi\\u0119dzynarodowy\\\",\\\"desc_en\\\": \\\"International Patrons\\\"}\",\"rights\":\"all\",\"updated\":\"marek.rumianek@warsawexpo.eu\",\"updated_at\":\"2025-05-21 12:40:39\",\"created_at\":\"2025-05-21 12:40:39\"},{\"id\":\"12\",\"slug\":\"patrons\",\"meta_data\":\"{ \\\"slug\\\": \\\"principal-partner\\\",\\\"desc_pl\\\": \\\"Partner G\\u0142\\u00f3wny\\\",\\\"desc_en\\\": \\\"Principal Partner\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-21 14:13:58\",\"created_at\":\"2025-05-21 14:13:58\"},{\"id\":\"13\",\"slug\":\"patrons\",\"meta_data\":\"{ \\\"slug\\\": \\\"industry-media-partner\\\",\\\"desc_pl\\\": \\\"Patron Medialny Bran\\u017cowy\\\",\\\"desc_en\\\": \\\"Industry Media Partner\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-21 14:16:11\",\"created_at\":\"2025-05-21 14:16:11\"},{\"id\":\"14\",\"slug\":\"patrons\",\"meta_data\":\"{ \\\"slug\\\": \\\"organizatorzy-konferencji\\\",\\\"desc_pl\\\": \\\"Organizatorzy Konferencji\\\",\\\"desc_en\\\": \\\"Conference Organizers\\\"}\",\"rights\":\"admin\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-22 10:12:56\",\"created_at\":\"2025-05-22 10:12:56\"},{\"id\":\"15\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-branzowy\\\", \\\"desc_pl\\\": \\\"Partner Bran\\u017cowy\\\", \\\"desc_en\\\": \\\"Industry Partner\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-22 10:39:25\",\"created_at\":\"2025-05-22 10:39:25\"},{\"id\":\"18\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"miedzynarodowy-patron-medialny\\\", \\\"desc_pl\\\": \\\"Mi\\u0119dzynarodowy Patron Medialny\\\", \\\"desc_en\\\": \\\"International Media Patron\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-22 10:59:19\",\"created_at\":\"2025-05-22 10:59:19\"},{\"id\":\"19\",\"slug\":\"hubspot_marketing\",\"meta_data\":\"pat-eu1-924602da-c7a3-405d-9150-2bf0e39b9e4a\",\"rights\":\"admin\",\"updated\":\"marek.rumianek@warsawexpo.eu\",\"updated_at\":\"2025-06-10 14:16:15\",\"created_at\":\"2025-06-10 13:25:42\"},{\"id\":\"20\",\"slug\":\"hubspot_fokus\",\"meta_data\":\"pat-eu1-1f774a12-244b-445e-b668-5fd620e8dd07\",\"rights\":\"admin\",\"updated\":\"marek.rumianek@warsawexpo.eu\",\"updated_at\":\"2025-07-16 09:15:42\",\"created_at\":\"2025-06-12 07:39:06\"},{\"id\":\"22\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-konferencji-green-gas-poland\\\", \\\"desc_pl\\\": \\\"Partner Konferencji Green Gas Poland\\\", \\\"desc_en\\\": \\\"Conference Partner Green Gas Poland\\\"}\",\"rights\":\"all\",\"updated\":\"piotr.krupniewski@warsawexpo.eu\",\"updated_at\":\"2025-06-23 07:11:13\",\"created_at\":\"2025-06-13 09:42:10\"},{\"id\":\"23\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-partner-targow\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w\\\", \\\"desc_en\\\": \\\"Fair Partner\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-07-25 09:48:56\",\"created_at\":\"2025-07-25 09:48:56\"},{\"id\":\"24\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-partner-merytoryczny\\\", \\\"desc_pl\\\": \\\"Partner Merytoryczny\\\", \\\"desc_en\\\": \\\"Content Partner\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-07-25 09:49:16\",\"created_at\":\"2025-07-25 09:49:16\"},{\"id\":\"25\",\"slug\":\"exh_catalog_address\",\"meta_data\":\"https:\\\/\\\/export.www2.pwe-expoplanner.com\\\/mapa.php?token=\",\"rights\":\"admin\",\"updated\":\"piotr.krupniewski@warsawexpo.eu\",\"updated_at\":\"2025-07-28 08:09:17\",\"created_at\":\"2025-07-28 07:58:17\"},{\"id\":\"26\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-partner-organizacyjny\\\", \\\"desc_pl\\\": \\\"Partner Organizacyjny\\\", \\\"desc_en\\\": \\\"Organizational partner\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-07-29 08:17:38\",\"created_at\":\"2025-07-29 08:17:38\"},{\"id\":\"27\",\"slug\":\"hubspot_marketing_production\",\"meta_data\":\"pat-eu1-69a65631-cc32-4701-9130-73ce00e52e15\",\"rights\":\"admin\",\"updated\":\"marek.rumianek@warsawexpo.eu\",\"updated_at\":\"2025-08-12 07:43:33\",\"created_at\":\"2025-08-12 07:43:33\"},{\"id\":\"29\",\"slug\":\"header_order\",\"meta_data\":\"header-partner-organizacyjny,partner-konferencji,header-partner-targow,header-partner-merytoryczny\",\"rights\":\"224\",\"updated\":\"marek.rumianek@warsawexpo.eu\",\"updated_at\":\"2025-09-18 08:43:44\",\"created_at\":\"2025-09-18 07:50:15\"},{\"id\":\"30\",\"slug\":\"header_order\",\"meta_data\":\"partner-konferencji,header-partner-targow,header-partner-organizacyjny,header-partner-merytoryczny\",\"rights\":\"175\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-09-18 10:26:18\",\"created_at\":\"2025-09-18 08:48:20\"},{\"id\":\"31\",\"slug\":\"header_order\",\"meta_data\":\"header-partner-targow,header-patronat-honorowy,header-partner-merytoryczny,header-partner-organizacyjny,header-partner-targow-i-konferencji,header-partner-strategiczny,header-organizator-conferencji,header-partner-branzowy,header-wspolorganizator,header-patronat-polskiego-towarzystwa-technologow-zywnosci,header-glowni-partnerzy,header-patronat-warsaw-pack,header-partner-konferencji,header-prelegenci,header-prelegent,header-partner-radiowy,header-glowny-patron-medialny,header-partner-instytucjonalny\",\"rights\":\"186\",\"updated\":\"marek.rumianek@warsawexpo.eu\",\"updated_at\":\"2026-02-27 13:43:52\",\"created_at\":\"2025-09-18 10:17:46\"},{\"id\":\"33\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-partner-targow-i-konferencji\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w i Konferencji\\\", \\\"desc_en\\\": \\\"Trade Fair and Conference Partner\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-09-18 11:22:08\",\"created_at\":\"2025-09-18 11:22:08\"},{\"id\":\"34\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-patronat-honorowy\\\", \\\"desc_pl\\\": \\\"Patronat Honorowy\\\", \\\"desc_en\\\": \\\"Honorary Patronage\\\"}\",\"rights\":\"all\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-09-18 11:57:07\",\"created_at\":\"2025-09-18 11:57:07\"},{\"id\":\"35\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-partner-strategiczny\\\", \\\"desc_pl\\\": \\\"Partner Strategiczny\\\", \\\"desc_en\\\": \\\"Strategic Partner\\\"}\",\"rights\":\"all\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-09-18 12:00:44\",\"created_at\":\"2025-09-18 11:59:10\"},{\"id\":\"36\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-organizator-conferencji\\\", \\\"desc_pl\\\": \\\"Organizator Konferencji\\\", \\\"desc_en\\\": \\\"Conference Organizer\\\"}\",\"rights\":\"all\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-09-18 12:02:26\",\"created_at\":\"2025-09-18 12:02:26\"},{\"id\":\"37\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-partner-branzowy\\\", \\\"desc_pl\\\": \\\"Partner Bran\\u017cowy\\\", \\\"desc_en\\\": \\\"Industry Partner\\\"}\",\"rights\":\"all\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-09-18 12:06:13\",\"created_at\":\"2025-09-18 12:06:13\"},{\"id\":\"38\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-wspolorganizator\\\", \\\"desc_pl\\\": \\\"Wsp\\u00f3\\u0142organizator\\\", \\\"desc_en\\\": \\\"Co-organizer\\\"}\",\"rights\":\"all\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-09-18 12:08:11\",\"created_at\":\"2025-09-18 12:08:11\"},{\"id\":\"39\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-patronat-polskiego-towarzystwa-technologow-zywnosci\\\", \\\"desc_pl\\\": \\\"Patronat Polskiego Towarzystwa Technolog\\u00f3w \\u017bywno\\u015bci\\\", \\\"desc_en\\\": \\\"Patronage of the Polish Society of Food Technologists\\\"}\",\"rights\":\"all\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-09-18 12:19:11\",\"created_at\":\"2025-09-18 12:13:26\"},{\"id\":\"40\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-glowni-partnerzy\\\", \\\"desc_pl\\\": \\\"G\\u0142\\u00f3wni Partnerzy\\\", \\\"desc_en\\\": \\\"Main Partners\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-09-26 10:06:06\",\"created_at\":\"2025-09-26 10:05:10\"},{\"id\":\"41\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-patronat-warsaw-pack\\\", \\\"desc_pl\\\": \\\"Patronat Warsaw Pack\\\", \\\"desc_en\\\": \\\"Patronage of Warsaw Pack\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-10-03 14:11:15\",\"created_at\":\"2025-10-03 14:11:15\"},{\"id\":\"42\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-partner-konferencji\\\", \\\"desc_pl\\\": \\\"Partner Konferencji\\\", \\\"desc_en\\\": \\\"Conference Partner\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-10-06 09:20:04\",\"created_at\":\"2025-10-06 09:20:04\"},{\"id\":\"43\",\"slug\":\"header_order\",\"meta_data\":\"header-partner-targow,header-partner-merytoryczny,header-partner-organizacyjny,header-partner-targow-i-konferencji,header-patronat-honorowy,header-partner-strategiczny,header-organizator-conferencji,header-partner-branzowy,header-wspolorganizator,header-patronat-polskiego-towarzystwa-technologow-zywnosci,header-glowni-partnerzy,header-patronat-warsaw-pack,header-partner-konferencji\",\"rights\":\"203\",\"updated\":\"marek.rumianek@warsawexpo.eu\",\"updated_at\":\"2025-10-15 07:40:58\",\"created_at\":\"2025-10-15 07:40:58\"},{\"id\":\"44\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-prelegenci\\\", \\\"desc_pl\\\": \\\"Prelegenci\\\", \\\"desc_en\\\": \\\"Speakers\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-10-15 10:18:52\",\"created_at\":\"2025-10-15 10:18:52\"},{\"id\":\"45\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-prelegent\\\", \\\"desc_pl\\\": \\\"Prelegent\\\", \\\"desc_en\\\": \\\"Speaker\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-10-15 10:30:06\",\"created_at\":\"2025-10-15 10:30:06\"},{\"id\":\"46\",\"slug\":\"header_order\",\"meta_data\":\"header-partner-targow,header-partner-merytoryczny,header-partner-branzowy,header-patronat-honorowy,header-partner-organizacyjny,header-partner-targow-i-konferencji,header-partner-strategiczny,header-organizator-conferencji,header-wspolorganizator,header-patronat-polskiego-towarzystwa-technologow-zywnosci,header-glowni-partnerzy,header-patronat-warsaw-pack,header-partner-konferencji,header-prelegenci,header-prelegent\",\"rights\":\"243\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-10-17 08:51:29\",\"created_at\":\"2025-10-16 11:45:07\"},{\"id\":\"47\",\"slug\":\"header_order\",\"meta_data\":\"header-wspolorganizator,header-partner-targow-i-konferencji,header-partner-targow,header-partner-merytoryczny,header-partner-organizacyjny,header-patronat-honorowy,header-partner-strategiczny,header-organizator-conferencji,header-partner-branzowy,header-patronat-polskiego-towarzystwa-technologow-zywnosci,header-glowni-partnerzy,header-patronat-warsaw-pack,header-partner-konferencji,header-prelegenci,header-prelegent,header-partner-radiowy\",\"rights\":\"159\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-12-03 09:53:09\",\"created_at\":\"2025-10-16 11:46:54\"},{\"id\":\"48\",\"slug\":\"exh_catalog_address_2\",\"meta_data\":\"https:\\\/\\\/backend-production-e57c.up.railway.app\\\/public\\\/exhibitions\\\/\",\"rights\":\"admin\",\"updated\":\"jakub.chola@warsawexpo.eu\",\"updated_at\":\"2026-05-04 07:53:42\",\"created_at\":\"2025-10-16 12:31:04\"},{\"id\":\"49\",\"slug\":\"header_order\",\"meta_data\":\"header-partner-merytoryczny,header-partner-targow-i-konferencji,header-patronat-polskiego-towarzystwa-technologow-zywnosci,header-partner-targow,header-partner-organizacyjny,header-patronat-honorowy,header-partner-strategiczny,header-organizator-conferencji,header-partner-branzowy,header-wspolorganizator,header-glowni-partnerzy,header-patronat-warsaw-pack,header-partner-konferencji,header-prelegenci,header-prelegent\",\"rights\":\"177\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-10-16 13:41:58\",\"created_at\":\"2025-10-16 13:41:43\"},{\"id\":\"50\",\"slug\":\"exh_catalog_address_doc\",\"meta_data\":\"\\\/doc\\\/pwe-exhibitors-data.json\",\"rights\":\"admin\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-10-17 07:54:20\",\"created_at\":\"2025-10-17 07:54:20\"},{\"id\":\"51\",\"slug\":\"cron_secret_pass\",\"meta_data\":\"fM8mYEIEr4HC\",\"rights\":\"admin\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-10-17 08:14:01\",\"created_at\":\"2025-10-17 08:14:01\"},{\"id\":\"52\",\"slug\":\"header_order\",\"meta_data\":\"header-partner-targow-i-konferencji,header-patronat-warsaw-pack,header-partner-targow,header-partner-merytoryczny,header-partner-organizacyjny,header-patronat-honorowy,header-partner-strategiczny,header-organizator-conferencji,header-partner-branzowy,header-wspolorganizator,header-patronat-polskiego-towarzystwa-technologow-zywnosci,header-glowni-partnerzy,header-partner-konferencji,header-prelegenci,header-prelegent\",\"rights\":\"154\",\"updated\":\"jakub.chola@warsawexpo.eu\",\"updated_at\":\"2025-10-28 14:33:23\",\"created_at\":\"2025-10-28 14:33:23\"},{\"id\":\"53\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-partner-radiowy\\\", \\\"desc_pl\\\": \\\"Partner Radiowy\\\", \\\"desc_en\\\": \\\"Radio Partner\\\"}\",\"rights\":\"all\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2025-11-10 12:52:03\",\"created_at\":\"2025-11-10 12:52:03\"},{\"id\":\"54\",\"slug\":\"header_order\",\"meta_data\":\"header-partner-targow-i-konferencji,header-partner-targow,header-partner-merytoryczny,header-partner-organizacyjny,header-patronat-honorowy,header-partner-strategiczny,header-organizator-conferencji,header-partner-branzowy,header-wspolorganizator,header-patronat-polskiego-towarzystwa-technologow-zywnosci,header-glowni-partnerzy,header-patronat-warsaw-pack,header-partner-konferencji,header-prelegenci,header-prelegent,header-partner-radiowy\",\"rights\":\"3\",\"updated\":\"marek.rumianek@warsawexpo.eu\",\"updated_at\":\"2026-01-08 13:37:00\",\"created_at\":\"2026-01-08 13:37:00\"},{\"id\":\"55\",\"slug\":\"header_order\",\"meta_data\":\"header-partner-instytucjonalny,header-partner-strategiczny,header-patronat-honorowy,header-partner-merytoryczny,header-partner-targow,header-partner-branzowy,header-partner-organizacyjny,header-partner-targow-i-konferencji,header-organizator-conferencji,header-wspolorganizator,header-patronat-polskiego-towarzystwa-technologow-zywnosci,header-glowni-partnerzy,header-patronat-warsaw-pack,header-partner-konferencji,header-prelegenci,header-prelegent,header-partner-radiowy,header-glowny-patron-medialny\",\"rights\":\"296\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2026-01-26 15:14:45\",\"created_at\":\"2026-01-08 13:50:55\"},{\"id\":\"56\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"glowny-patron-medialny\\\", \\\"desc_pl\\\": \\\"G\\u0142\\u00f3wny Patron Medialny\\\", \\\"desc_en\\\": \\\"Main Media Patron\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2026-01-09 09:58:28\",\"created_at\":\"2026-01-09 09:58:28\"},{\"id\":\"57\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-glowny-patron-medialny\\\", \\\"desc_pl\\\": \\\"G\\u0142\\u00f3wny Patron Medialny\\\", \\\"desc_en\\\": \\\"Main Media Patron\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2026-01-09 10:01:30\",\"created_at\":\"2026-01-09 10:01:30\"},{\"id\":\"62\",\"slug\":\"patrons\",\"meta_data\":\"{\\\"slug\\\": \\\"header-partner-instytucjonalny\\\", \\\"desc_pl\\\": \\\"Partner Instytucjonalny\\\", \\\"desc_en\\\": \\\"Institutional Partner\\\"}\",\"rights\":\"all\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2026-01-26 15:09:24\",\"created_at\":\"2026-01-26 15:09:24\"},{\"id\":\"66\",\"slug\":\"category\",\"meta_data\":\"{\\\"en\\\":\\\"automation\\\",\\\"cs\\\":\\\"automatika\\\",\\\"de\\\":\\\"Automatisierung\\\",\\\"lt\\\":\\\"automatizavimas\\\",\\\"lv\\\":\\\"automatika\\\",\\\"ru\\\":\\\"\\u0430\\u0432\\u0442\\u043e\\u043c\\u0430\\u0442\\u0438\\u043a\\u0430\\\",\\\"sk\\\":\\\"automatiz\\u00e1cia\\\",\\\"uk\\\":\\\"\\u0430\\u0432\\u0442\\u043e\\u043c\\u0430\\u0442\\u0438\\u043a\\u0430\\\"}\",\"rights\":\"all\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2026-01-30 10:44:23\",\"created_at\":\"2026-01-30 10:44:23\"},{\"id\":\"68\",\"slug\":\"cron_catalog_secret_pass\",\"meta_data\":\"iR8gCdZlITxRvVBS\",\"rights\":\"all\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2026-02-10 08:51:18\",\"created_at\":\"2026-02-10 08:51:18\"},{\"id\":\"69\",\"slug\":\"header_order\",\"meta_data\":\"header-partner-merytoryczny,header-partner-targow,header-partner-organizacyjny,header-partner-targow-i-konferencji,header-patronat-honorowy,header-partner-strategiczny,header-organizator-conferencji,header-partner-branzowy,header-wspolorganizator,header-patronat-polskiego-towarzystwa-technologow-zywnosci,header-glowni-partnerzy,header-patronat-warsaw-pack,header-partner-konferencji,header-prelegenci,header-prelegent,header-partner-radiowy,header-glowny-patron-medialny,header-partner-instytucjonalny\",\"rights\":\"200\",\"updated\":\"anna.bartyzel@warsawexpo.eu\",\"updated_at\":\"2026-02-20 14:01:24\",\"created_at\":\"2026-02-20 14:01:24\"},{\"id\":\"70\",\"slug\":\"header_order\",\"meta_data\":\"header-patronat-honorowy,header-partner-targow,header-partner-merytoryczny,header-partner-branzowy,header-partner-organizacyjny,header-partner-targow-i-konferencji,header-partner-strategiczny,header-organizator-conferencji,header-wspolorganizator,header-patronat-polskiego-towarzystwa-technologow-zywnosci,header-glowni-partnerzy,header-patronat-warsaw-pack,header-partner-konferencji,header-prelegenci,header-prelegent,header-partner-radiowy,header-glowny-patron-medialny,header-partner-instytucjonalny\",\"rights\":\"194\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2026-02-27 09:36:53\",\"created_at\":\"2026-02-27 09:36:53\"},{\"id\":\"71\",\"slug\":\"header_order\",\"meta_data\":\"header-partner-strategiczny,header-partner-targow,header-partner-targow-i-konferencji,header-partner-merytoryczny,header-partner-organizacyjny,header-patronat-honorowy,header-organizator-conferencji,header-partner-branzowy,header-wspolorganizator,header-patronat-polskiego-towarzystwa-technologow-zywnosci,header-glowni-partnerzy,header-patronat-warsaw-pack,header-partner-konferencji,header-prelegenci,header-prelegent,header-partner-radiowy,header-glowny-patron-medialny,header-partner-instytucjonalny\",\"rights\":\"181\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2026-03-02 14:47:25\",\"created_at\":\"2026-03-02 14:47:25\"},{\"id\":\"72\",\"slug\":\"logos_meta_order\",\"meta_data\":\"{\\\"header-patronat-honorowy\\\":\\\"2\\\",\\\"header-partner-targow\\\":\\\"1\\\",\\\"header-partner-merytoryczny\\\":\\\"3\\\",\\\"header-partner-organizacyjny\\\":\\\"4\\\",\\\"header-partner-targow-i-konferencji\\\":\\\"5\\\",\\\"header-partner-strategiczny\\\":\\\"6\\\",\\\"header-organizator-conferencji\\\":\\\"7\\\",\\\"header-partner-branzowy\\\":\\\"8\\\",\\\"header-wspolorganizator\\\":\\\"9\\\",\\\"header-patronat-polskiego-towarzystwa-technologow-zywnosci\\\":\\\"10\\\",\\\"header-glowni-partnerzy\\\":\\\"11\\\",\\\"header-patronat-warsaw-pack\\\":\\\"12\\\",\\\"header-partner-konferencji\\\":\\\"13\\\",\\\"header-prelegenci\\\":\\\"14\\\",\\\"header-prelegent\\\":\\\"15\\\",\\\"header-partner-radiowy\\\":\\\"16\\\",\\\"header-glowny-patron-medialny\\\":\\\"17\\\",\\\"header-partner-instytucjonalny\\\":\\\"18\\\",\\\"partner-merytoryczny\\\":\\\"21\\\",\\\"patron-medialny\\\":\\\"22\\\",\\\"partner-targow\\\":\\\"23\\\",\\\"partner-strategiczny\\\":\\\"24\\\",\\\"partner-honorowy\\\":\\\"25\\\",\\\"kraj-partnerski\\\":\\\"26\\\",\\\"international-partner\\\":\\\"26\\\",\\\"europe-event\\\":\\\"27\\\",\\\"principal-partner\\\":\\\"28\\\",\\\"industry-media-partner\\\":\\\"29\\\",\\\"organizatorzy-konferencji\\\":\\\"30\\\",\\\"partner-branzowy\\\":\\\"31\\\",\\\"miedzynarodowy-patron-medialny\\\":\\\"31\\\",\\\"partner-konferencji-green-gas-poland\\\":\\\"32\\\",\\\"glowny-patron-medialny\\\":\\\"33\\\"}\",\"rights\":\"186\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2026-05-06 08:53:25\",\"created_at\":\"2026-03-03 09:01:58\"},{\"id\":\"73\",\"slug\":\"logos_meta_order\",\"meta_data\":\"{\\\"header-patronat-honorowy\\\":\\\"1\\\",\\\"header-partner-targow\\\":\\\"2\\\",\\\"header-partner-merytoryczny\\\":\\\"3\\\",\\\"header-partner-branzowy\\\":\\\"4\\\",\\\"header-partner-organizacyjny\\\":\\\"5\\\",\\\"header-partner-targow-i-konferencji\\\":\\\"6\\\",\\\"header-partner-strategiczny\\\":\\\"7\\\",\\\"header-organizator-conferencji\\\":\\\"8\\\",\\\"header-wspolorganizator\\\":\\\"9\\\",\\\"header-patronat-polskiego-towarzystwa-technologow-zywnosci\\\":\\\"10\\\",\\\"header-glowni-partnerzy\\\":\\\"11\\\",\\\"header-patronat-warsaw-pack\\\":\\\"12\\\",\\\"header-partner-konferencji\\\":\\\"13\\\",\\\"header-prelegenci\\\":\\\"14\\\",\\\"header-prelegent\\\":\\\"15\\\",\\\"header-partner-radiowy\\\":\\\"16\\\",\\\"header-glowny-patron-medialny\\\":\\\"17\\\",\\\"header-partner-instytucjonalny\\\":\\\"18\\\",\\\"partner-targow\\\":\\\"19\\\",\\\"patron-medialny\\\":\\\"20\\\",\\\"partner-merytoryczny\\\":\\\"21\\\",\\\"partner-strategiczny\\\":\\\"22\\\",\\\"partner-honorowy\\\":\\\"23\\\",\\\"kraj-partnerski\\\":\\\"24\\\",\\\"europe-event\\\":\\\"25\\\",\\\"international-partner\\\":\\\"26\\\",\\\"principal-partner\\\":\\\"27\\\",\\\"industry-media-partner\\\":\\\"28\\\",\\\"organizatorzy-konferencji\\\":\\\"29\\\",\\\"partner-branzowy\\\":\\\"30\\\",\\\"miedzynarodowy-patron-medialny\\\":\\\"31\\\",\\\"partner-konferencji-green-gas-poland\\\":\\\"32\\\",\\\"glowny-patron-medialny\\\":\\\"33\\\"}\",\"rights\":\"194\",\"updated\":\"marek.rumianek@warsawexpo.eu\",\"updated_at\":\"2026-03-03 09:58:10\",\"created_at\":\"2026-03-03 09:57:29\"},{\"id\":\"74\",\"slug\":\"europe-event\",\"meta_data\":\"\\\"3626,717,718,719,3063,3064,3065,7799,3066,3067,3625,3627,3628,3629,7800,715,716\\\"\",\"rights\":\"99199\",\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2026-03-04 12:38:49\",\"created_at\":\"2026-03-03 15:26:45\"},{\"id\":\"75\",\"slug\":\"logos_meta_order\",\"meta_data\":\"{\\\"europe-event\\\":\\\"3\\\",\\\"partner-targow\\\":\\\"2\\\",\\\"patron-medialny\\\":\\\"3\\\",\\\"partner-strategiczny\\\":\\\"4\\\",\\\"international-partner\\\":\\\"5\\\",\\\"partner-merytoryczny\\\":\\\"6\\\",\\\"partner-konferencji\\\":\\\"7\\\",\\\"miedzynarodowy-patron-medialny\\\":\\\"8\\\",\\\"header-partner-strategiczny\\\":\\\"9\\\",\\\"header-partner-targow-i-konferencji\\\":\\\"10\\\",\\\"header-patronat-honorowy\\\":\\\"11\\\",\\\"partner-honorowy\\\":\\\"12\\\",\\\"kraj-partnerski\\\":\\\"13\\\",\\\"principal-partner\\\":\\\"14\\\",\\\"industry-media-partner\\\":\\\"15\\\",\\\"organizatorzy-konferencji\\\":\\\"16\\\",\\\"partner-branzowy\\\":\\\"17\\\",\\\"partner-konferencji-green-gas-poland\\\":\\\"18\\\",\\\"header-partner-targow\\\":\\\"19\\\",\\\"header-partner-merytoryczny\\\":\\\"20\\\",\\\"header-partner-organizacyjny\\\":\\\"21\\\",\\\"header-organizator-conferencji\\\":\\\"22\\\",\\\"header-partner-branzowy\\\":\\\"23\\\",\\\"header-wspolorganizator\\\":\\\"24\\\",\\\"header-patronat-polskiego-towarzystwa-technologow-zywnosci\\\":\\\"25\\\",\\\"header-glowni-partnerzy\\\":\\\"26\\\",\\\"header-patronat-warsaw-pack\\\":\\\"27\\\",\\\"header-partner-konferencji\\\":\\\"28\\\",\\\"header-prelegenci\\\":\\\"29\\\",\\\"header-prelegent\\\":\\\"30\\\",\\\"header-partner-radiowy\\\":\\\"31\\\",\\\"glowny-patron-medialny\\\":\\\"32\\\",\\\"header-glowny-patron-medialny\\\":\\\"33\\\",\\\"header-partner-instytucjonalny\\\":\\\"34\\\"}\",\"rights\":\"99199\",\"updated\":\"marek.rumianek@warsawexpo.eu\",\"updated_at\":\"2026-03-04 09:40:18\",\"created_at\":\"2026-03-04 09:40:15\"},{\"id\":\"76\",\"slug\":\"patron-medialny\",\"meta_data\":\"\\\"729,730,734,3079,3080,3081,3082,3083,3088,3091,3092,3093,3096,3097,3098,3099,3104,3111,3112,3113,3637,3638,3639,3640,3641,3642,3643,3644,3645,3649,3646,3648,3650,4289,4376,4519,4535,4536,4638,5022,5637,6226,6506,7727\\\"\",\"rights\":\"99199\",\"updated\":\"marek.rumianek@warsawexpo.eu\",\"updated_at\":\"2026-03-04 10:09:31\",\"created_at\":\"2026-03-04 10:09:31\"},{\"id\":\"77\",\"slug\":\"partner-targow\",\"meta_data\":\"\\\"723,720,721,722,724,3073,3074,3075,3077,3631,3632,3633,3635,3636,4207,4332,4412,4446,5636\\\"\",\"rights\":\"99199\",\"updated\":\"marek.rumianek@warsawexpo.eu\",\"updated_at\":\"2026-03-30 14:20:23\",\"created_at\":\"2026-03-04 10:59:17\"},{\"id\":\"78\",\"slug\":\"europe-event\",\"meta_data\":\"\\\"2729,2730,2731,2732,2733,5853,5856,5857,5858,5859,6529,6532,6530,6531,6533\\\"\",\"rights\":\"99399\",\"updated\":\"marek.rumianek@warsawexpo.eu\",\"updated_at\":\"2026-03-04 12:37:57\",\"created_at\":\"2026-03-04 12:37:57\"},{\"id\":\"79\",\"slug\":\"logos_meta_order\",\"meta_data\":\"{\\\"header-partner-targow-i-konferencji\\\":\\\"2\\\",\\\"header-patronat-warsaw-pack\\\":\\\"3\\\",\\\"header-partner-targow\\\":\\\"3\\\",\\\"header-partner-merytoryczny\\\":\\\"4\\\",\\\"header-partner-organizacyjny\\\":\\\"5\\\",\\\"header-patronat-honorowy\\\":\\\"6\\\",\\\"header-partner-strategiczny\\\":\\\"1\\\",\\\"header-organizator-conferencji\\\":\\\"8\\\",\\\"header-partner-branzowy\\\":\\\"9\\\",\\\"header-wspolorganizator\\\":\\\"10\\\",\\\"header-patronat-polskiego-towarzystwa-technologow-zywnosci\\\":\\\"11\\\",\\\"header-glowni-partnerzy\\\":\\\"12\\\",\\\"header-partner-konferencji\\\":\\\"13\\\",\\\"header-prelegenci\\\":\\\"14\\\",\\\"header-prelegent\\\":\\\"15\\\",\\\"partner-targow\\\":\\\"16\\\",\\\"patron-medialny\\\":\\\"17\\\",\\\"partner-merytoryczny\\\":\\\"18\\\",\\\"partner-strategiczny\\\":\\\"19\\\",\\\"partner-honorowy\\\":\\\"20\\\",\\\"europe-event\\\":\\\"22\\\",\\\"international-partner\\\":\\\"23\\\",\\\"principal-partner\\\":\\\"24\\\",\\\"industry-media-partner\\\":\\\"25\\\",\\\"partner-branzowy\\\":\\\"27\\\",\\\"miedzynarodowy-patron-medialny\\\":\\\"28\\\",\\\"partner-konferencji-green-gas-poland\\\":\\\"29\\\",\\\"header-partner-radiowy\\\":\\\"30\\\",\\\"glowny-patron-medialny\\\":\\\"31\\\",\\\"header-glowny-patron-medialny\\\":\\\"32\\\",\\\"header-partner-instytucjonalny\\\":\\\"33\\\"}\",\"rights\":\"154\",\"updated\":\"m.wolinska@warsawexpo.eu\",\"updated_at\":\"2026-03-27 10:35:59\",\"created_at\":\"2026-03-04 12:57:07\"},{\"id\":\"80\",\"slug\":\"logos_meta_order\",\"meta_data\":\"{\\\"partner-targow\\\":\\\"1\\\",\\\"patron-medialny\\\":\\\"2\\\",\\\"partner-merytoryczny\\\":\\\"3\\\",\\\"partner-strategiczny\\\":\\\"4\\\",\\\"partner-honorowy\\\":\\\"5\\\",\\\"kraj-partnerski\\\":\\\"6\\\",\\\"europe-event\\\":\\\"7\\\",\\\"international-partner\\\":\\\"8\\\",\\\"principal-partner\\\":\\\"9\\\",\\\"industry-media-partner\\\":\\\"10\\\",\\\"organizatorzy-konferencji\\\":\\\"11\\\",\\\"miedzynarodowy-patron-medialny\\\":\\\"13\\\",\\\"partner-konferencji-green-gas-poland\\\":\\\"14\\\",\\\"header-partner-merytoryczny\\\":\\\"16\\\",\\\"partner-branzowy\\\":\\\"8\\\",\\\"header-partner-organizacyjny\\\":\\\"17\\\",\\\"header-partner-targow\\\":\\\"18\\\",\\\"header-partner-targow-i-konferencji\\\":\\\"18\\\",\\\"header-patronat-honorowy\\\":\\\"19\\\",\\\"header-partner-strategiczny\\\":\\\"20\\\",\\\"header-organizator-conferencji\\\":\\\"21\\\",\\\"header-partner-branzowy\\\":\\\"22\\\",\\\"header-wspolorganizator\\\":\\\"23\\\",\\\"header-patronat-polskiego-towarzystwa-technologow-zywnosci\\\":\\\"24\\\",\\\"header-glowni-partnerzy\\\":\\\"25\\\",\\\"header-patronat-warsaw-pack\\\":\\\"26\\\",\\\"header-partner-konferencji\\\":\\\"27\\\",\\\"header-prelegenci\\\":\\\"28\\\",\\\"header-prelegent\\\":\\\"29\\\",\\\"header-partner-radiowy\\\":\\\"30\\\",\\\"glowny-patron-medialny\\\":\\\"31\\\",\\\"header-glowny-patron-medialny\\\":\\\"32\\\",\\\"header-partner-instytucjonalny\\\":\\\"33\\\"}\",\"rights\":\"89\",\"updated\":\"marek.rumianek@warsawexpo.eu\",\"updated_at\":\"2026-03-06 13:43:29\",\"created_at\":\"2026-03-06 13:34:15\"},{\"id\":\"86\",\"slug\":\"logos_meta_order\",\"meta_data\":\"{\\\"partner-targow\\\":\\\"1\\\",\\\"header-partner-strategiczny\\\":\\\"1\\\",\\\"patron-medialny\\\":\\\"2\\\",\\\"header-organizator-conferencji\\\":\\\"2\\\",\\\"partner-merytoryczny\\\":\\\"3\\\",\\\"header-partner-targow\\\":\\\"3\\\",\\\"partner-strategiczny\\\":\\\"4\\\",\\\"partner-honorowy\\\":\\\"5\\\",\\\"kraj-partnerski\\\":\\\"6\\\",\\\"europe-event\\\":\\\"7\\\",\\\"international-partner\\\":\\\"8\\\",\\\"principal-partner\\\":\\\"9\\\",\\\"industry-media-partner\\\":\\\"10\\\",\\\"organizatorzy-konferencji\\\":\\\"11\\\",\\\"partner-branzowy\\\":\\\"12\\\",\\\"miedzynarodowy-patron-medialny\\\":\\\"13\\\",\\\"partner-konferencji-green-gas-poland\\\":\\\"14\\\",\\\"header-partner-merytoryczny\\\":\\\"16\\\",\\\"header-partner-organizacyjny\\\":\\\"17\\\",\\\"header-partner-targow-i-konferencji\\\":\\\"18\\\",\\\"header-patronat-honorowy\\\":\\\"19\\\",\\\"header-partner-branzowy\\\":\\\"22\\\",\\\"header-wspolorganizator\\\":\\\"23\\\",\\\"header-patronat-polskiego-towarzystwa-technologow-zywnosci\\\":\\\"24\\\",\\\"header-glowni-partnerzy\\\":\\\"25\\\",\\\"header-patronat-warsaw-pack\\\":\\\"26\\\",\\\"header-partner-konferencji\\\":\\\"27\\\",\\\"header-prelegenci\\\":\\\"28\\\",\\\"header-prelegent\\\":\\\"29\\\",\\\"header-partner-radiowy\\\":\\\"30\\\",\\\"glowny-patron-medialny\\\":\\\"31\\\",\\\"header-glowny-patron-medialny\\\":\\\"32\\\",\\\"header-partner-instytucjonalny\\\":\\\"33\\\"}\",\"rights\":\"11\",\"updated\":\"anton.melnychuk@warsawexpo.eu\",\"updated_at\":\"2026-04-07 11:54:22\",\"created_at\":\"2026-04-07 07:46:37\"},{\"id\":\"87\",\"slug\":\"logos_meta_order\",\"meta_data\":\"{\\\"partner-targow\\\":\\\"1\\\",\\\"patron-medialny\\\":\\\"2\\\",\\\"partner-merytoryczny\\\":\\\"3\\\",\\\"partner-strategiczny\\\":\\\"4\\\",\\\"partner-honorowy\\\":\\\"5\\\",\\\"europe-event\\\":\\\"7\\\",\\\"international-partner\\\":\\\"8\\\",\\\"principal-partner\\\":\\\"9\\\",\\\"industry-media-partner\\\":\\\"10\\\",\\\"partner-branzowy\\\":\\\"12\\\",\\\"miedzynarodowy-patron-medialny\\\":\\\"13\\\",\\\"partner-konferencji-green-gas-poland\\\":\\\"14\\\",\\\"header-partner-targow\\\":\\\"19\\\",\\\"header-partner-merytoryczny\\\":\\\"16\\\",\\\"header-partner-organizacyjny\\\":\\\"17\\\",\\\"header-partner-targow-i-konferencji\\\":\\\"18\\\",\\\"header-patronat-honorowy\\\":\\\"15\\\",\\\"header-partner-strategiczny\\\":\\\"20\\\",\\\"header-organizator-conferencji\\\":\\\"21\\\",\\\"header-partner-branzowy\\\":\\\"22\\\",\\\"header-wspolorganizator\\\":\\\"23\\\",\\\"header-patronat-polskiego-towarzystwa-technologow-zywnosci\\\":\\\"24\\\",\\\"header-glowni-partnerzy\\\":\\\"25\\\",\\\"header-patronat-warsaw-pack\\\":\\\"26\\\",\\\"header-partner-konferencji\\\":\\\"27\\\",\\\"header-prelegenci\\\":\\\"28\\\",\\\"header-prelegent\\\":\\\"29\\\",\\\"header-partner-radiowy\\\":\\\"30\\\",\\\"glowny-patron-medialny\\\":\\\"31\\\",\\\"header-glowny-patron-medialny\\\":\\\"32\\\",\\\"header-partner-instytucjonalny\\\":\\\"33\\\"}\",\"rights\":\"147\",\"updated\":\"magdalena.szkoda@warsawexpo.eu\",\"updated_at\":\"2026-04-16 11:21:33\",\"created_at\":\"2026-04-16 11:21:18\"},{\"id\":\"88\",\"slug\":\"logos_meta_order\",\"meta_data\":\"{\\\"partner-targow\\\":\\\"1\\\",\\\"patron-medialny\\\":\\\"2\\\",\\\"partner-merytoryczny\\\":\\\"3\\\",\\\"partner-strategiczny\\\":\\\"4\\\",\\\"partner-honorowy\\\":\\\"5\\\",\\\"europe-event\\\":\\\"7\\\",\\\"international-partner\\\":\\\"8\\\",\\\"principal-partner\\\":\\\"9\\\",\\\"industry-media-partner\\\":\\\"10\\\",\\\"partner-branzowy\\\":\\\"12\\\",\\\"miedzynarodowy-patron-medialny\\\":\\\"13\\\",\\\"partner-konferencji-green-gas-poland\\\":\\\"14\\\",\\\"header-partner-targow\\\":\\\"18\\\",\\\"header-partner-merytoryczny\\\":\\\"16\\\",\\\"header-partner-organizacyjny\\\":\\\"17\\\",\\\"header-partner-targow-i-konferencji\\\":\\\"15\\\",\\\"header-patronat-honorowy\\\":\\\"19\\\",\\\"header-partner-strategiczny\\\":\\\"20\\\",\\\"header-organizator-conferencji\\\":\\\"21\\\",\\\"header-partner-branzowy\\\":\\\"22\\\",\\\"header-wspolorganizator\\\":\\\"23\\\",\\\"header-patronat-polskiego-towarzystwa-technologow-zywnosci\\\":\\\"24\\\",\\\"header-glowni-partnerzy\\\":\\\"25\\\",\\\"header-patronat-warsaw-pack\\\":\\\"26\\\",\\\"header-partner-konferencji\\\":\\\"27\\\",\\\"header-prelegenci\\\":\\\"28\\\",\\\"header-prelegent\\\":\\\"29\\\",\\\"header-partner-radiowy\\\":\\\"30\\\",\\\"glowny-patron-medialny\\\":\\\"31\\\",\\\"header-glowny-patron-medialny\\\":\\\"32\\\",\\\"header-partner-instytucjonalny\\\":\\\"33\\\"}\",\"rights\":\"138\",\"updated\":\"m.wolinska@warsawexpo.eu\",\"updated_at\":\"2026-05-06 08:02:10\",\"created_at\":\"2026-05-06 08:02:05\"}];\r\n                const updated_images_url = [{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/patron-medialny\\\/SZEF_KUCHNI_PATRON_MEDIALNY.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/patron-medialny\\\/wineme.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/patron-medialny\\\/wino_pasja.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/patron-medialny\\\/bevlegal.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/patron-medialny\\\/food-service-logo.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/patron-medialny\\\/image.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/patron-medialny\\\/hotelarz.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/patron-medialny\\\/erestauracja.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/patron-medialny\\\/przeglad gastro.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/patron-medialny\\\/restaurant management (1).webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/patron-medialny\\\/restaurant management.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/patron-medialny\\\/wiadomo\\u015bci spozywcze.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/patron-medialny\\\/kdcp.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/patron-medialny\\\/foodanddesign.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/winewarsawexpo-com\\\/partners\\\/partner-merytoryczny\\\/Izba Polskich Win.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Content Partner\",\"logotypes_name\":\"Content Partner\"}];\r\n\r\n                \/\/ console.log(get_database_logotypes_data);\r\n\r\n                \/\/ if (updated_images_url != null) {\r\n                \/\/     updated_images_url.forEach(logo => {\r\n                \/\/         if (logo.site !== \"\" && logo.site != null) {\r\n                \/\/             console.log(\"url:\" + logo.img + \" \" + \"link:\" + logo.site);\r\n                \/\/         }\r\n                \/\/     });\r\n                \/\/ }\r\n\r\n                \/\/ Funkcja do sprawdzania statusu obrazu\r\n                function checkImage(url, callback) {\r\n                    const img = new Image();\r\n                    img.onload = () => callback(true);\r\n                    img.onerror = () => callback(false);\r\n                    img.src = url;\r\n                }\r\n\r\n                document.querySelectorAll(\".pwe-logo-item img\").forEach(img => {\r\n                    const url = img.getAttribute(\"src\");\r\n\r\n                    \/\/ Check if the image exists\r\n                    checkImage(url, exists => {\r\n                        if (!exists) {\r\n                            \/\/ Delete the entire image container\r\n                            const container = img.closest(\".pwe-logo-item-container\");\r\n                            if (container) {\r\n                                container.remove();\r\n                            }\r\n                        }\r\n                    });\r\n                });\r\n\r\n            });\r\n        <\/script><\/div>[\/vc_column][\/vc_row][vc_row][vc_column width=&#8221;1\/1&#8243;]<div class=\"pwelement pwelement_27637\">\r\n            <style>\r\n                #pweConfSideEvents :is(.conf-side-row, .conf-side-footer){\r\n                    margin-top: 36px;\r\n                    display: flex;\r\n                    justify-content: space-between;\r\n                    align-items: center;\r\n                }\r\n                #pweConfSideEvents .side-event-image{\r\n                    max-width: 35%;\r\n                }\r\n                #pweConfSideEvents .side-event-text{\r\n                    max-width: 60%;\r\n                }\r\n                #pweConfSideEvents .side-event-footer-btn{\r\n                    max-width: 20%;\r\n                    margin: auto;\r\n                }\r\n                #pweConfSideEvents .side-event-footer-text{\r\n                    max-width: 75%;\r\n                }\r\n                #pweConfSideEvents :is(.side-event-text h5, .side-event-heading-text){\r\n                    margin-top: 0;\r\n                    text-transform: uppercase;\r\n                    padding: 0 12px 10px 0;\r\n                    box-shadow: 9px 9px 0px -6px #590118;\r\n                }\r\n                @media (max-width:569px){\r\n                    #pweConfSideEvents :is(.conf-side-row, .conf-side-footer){\r\n                        flex-direction: column;\r\n                    }\r\n                    #pweConfSideEvents :is(.side-event-image, .side-event-text, .side-event-footer-btn, .side-event-footer-text){\r\n                        margin-top: 9px;\r\n                        max-width: 100%;\r\n                    }\r\n                    #pweConfSideEvents :is(h5, h4){\r\n                        margin: auto;\r\n                    }\r\n                }\r\n            <\/style>\r\n        \r\n            <div id=\"pweConfSideEvents\">\r\n                <h4 class=\"side-event-heading-text\">     See what else we have prepared<\/h4>\r\n                <div class=\"conf-side-row\">\r\n                    <div class=\"side-event-image\">\r\n                        <img decoding=\"async\" src=\"\/wp-content\/plugins\/pwe-media\/media\/kafelek-medale2.webp\">\r\n                    <\/div>\r\n                    <div class=\"side-event-text\">\r\n                        <h5>    Celebrating Excellence: Medal Awards Ceremony<\/h5>\r\n                        <p>    This event honors the best of the best, highlighting their contributions to the industry\u2019s development and showcasing the most advanced solutions in the following categories:<\/p>\r\n                        <p>    <strong>Trade Fair Premiere:<\/strong> Recognition for exhibitors who introduced innovative products or services at the fair, presenting them to the public for the first time.<\/p>\r\n                        <p>    <strong>Innovation:<\/strong> An award for companies that have presented groundbreaking technologies or solutions with the potential to revolutionize the industry.<\/p>\r\n                        <p>    <strong>Trade Fair Display:<\/strong> A prize awarded for exceptional booth design and aesthetics that stand out for their creativity and attract visitors\u2019 attention.<\/p>\r\n                        <p>    <strong>Trade Fair Product:<\/strong> An award for exhibitors whose product stands out for its quality, functionality, and significance for the industry\u2019s development, earning recognition from both visitors and experts.<\/p>\r\n                    <\/div>\r\n                <\/div>\r\n                <div class=\"conf-side-row\"><div class=\"side-event-text\">\r\n                        <h5>    The trade fair studio<\/h5>\r\n                        <p>    We invite you to the <strong>Trade Fair Studio<\/strong>, where during exclusive interviews with industry experts and outstanding exhibitors, you will learn about the latest trends and innovative solutions. In this inspiring environment, market leaders will share their experiences and visions for the future, providing valuable insights and knowledge. The <strong>Trade Fair Studio<\/strong> is also connected with the <strong>Medal Award Ceremony<\/strong>, where distinguished exhibitors are honored, adding prestige to the event and highlighting the importance of innovation and excellence in the industry..<\/p>\r\n                        <p><\/p>\r\n                    <\/div><div class=\"side-event-image\">\r\n                            <img decoding=\"async\" src=\"\/wp-content\/plugins\/pwe-media\/media\/kafelek-studio-en.webp\">\r\n                        <\/div><\/div>\r\n                <div class=\"conf-side-row\">\r\n                    <div class=\"side-event-image\">\r\n                        <img decoding=\"async\" src=\"\/wp-content\/plugins\/pwe-media\/media\/kafelek-networking-en.webp\">\r\n                    <\/div>\r\n                    <div class=\"side-event-text\">\r\n                        <h5>    Inspiring conversations and new opportunities \u2013 the networking zone awaits!<\/h5>\r\n                        <p>    <strong>The B2B Networking Zone is an extension of the conference<\/strong>, offering participants a unique opportunity to engage in direct discussions with speakers and other industry experts. In this zone, attendees can exchange insights, ask questions, and establish valuable business connections in a more informal atmosphere.<\/p>\r\n                        <p>    Join us to deepen your knowledge, continue the inspiring discussions from the conference, and form valuable relationships that can benefit both you and your company!<\/p>\r\n                    <\/div>\r\n                <\/div>\r\n                    \r\n            <\/div>\r\n        <\/div>[\/vc_column][\/vc_row][vc_row][vc_column width=&#8221;1\/1&#8243;]<div class=\"pwelement pwelement_83361\">\r\n            <style>\r\n                .row-parent:has(.pwelement_83361 .pwe-container-conference-section) {\r\n                    max-width: 100% !important;\r\n                    padding: 0 !important;  \r\n                }\r\n                .pwelement_83361 .pwe-container-conference-section {\r\n                    position: relative;\r\n                    background-position: center;\r\n                }\r\n                .pwelement_83361 .pwe-container-conference-section:before {\r\n                    content: \"\";\r\n                    position: absolute;\r\n                    top: 0;\r\n                    left: 0;\r\n                    right: 0;\r\n                    bottom: 0;\r\n                    background-color: #590118;\r\n                    opacity: 0.8;\r\n                    z-index: 0;\r\n                }\r\n                .pwelement_83361 .pwe-conference-section-columns {\r\n                    position: relative;\r\n                    max-width: 1200px;\r\n                    margin: 0 auto;\r\n                    display: flex;\r\n                    gap: 18px;\r\n                    z-index: 1;\r\n                }\r\n                .pwelement_83361 .pwe-conference-section-column {\r\n                    display: flex;\r\n                    flex-direction: column;\r\n                    justify-content: center;\r\n                    gap: 18px;\r\n                    width: 50%;\r\n                }\r\n                .pwelement_83361 .pwe-conference-section-logo {\r\n                    max-width: 400px;\r\n                }\r\n                .pwelement_83361 .pwe-conference-section-logo img {\r\n                    width: 100%;\r\n                }\r\n                .pwelement_83361 .pwe-btn-container {\r\n                    padding-top: 0 !important;\r\n                }\r\n                .pwelement_83361 .pwe-conference-section-btn .pwe-link {\r\n                    transform: none !important;\r\n                    color: white !important;\r\n                    background-color: #5a7d7c !important;\r\n                    border: 1px solid #5a7d7c !important;\r\n                }\r\n                .pwelement_83361 .pwe-conference-section-btn .pwe-link:hover {\r\n                    color: white !important;\r\n                    background-color: #466968 !important;\r\n                    border: 1px solid #466968 !important;\r\n                }\r\n                @media (max-width:960px){\r\n                    .pwelement_83361 .pwe-conference-section-columns {\r\n                        flex-direction: column;\r\n                        padding: 36px;\r\n                        gap: 36px;\r\n                    }\r\n                    .pwelement_83361 .pwe-conference-section-column {\r\n                        width: 100%;\r\n                        gap: 18px;\r\n                    }\r\n                    .pwelement_83361 .pwe-conference-logo-column,\r\n                    .pwelement_83361 .pwe-conference-section-logo {\r\n                        margin: 0 auto;\r\n                    }\r\n                }  \r\n            <\/style>\r\n                <style>\r\n                    .pwelement_83361 .pwe-conference-section-columns {\r\n                        padding: 36px;\r\n                    }\r\n                    .pwelement_83361 .pwe-conference-logo-column {\r\n                        align-items: center;\r\n                    }\r\n                    .pwelement_83361 .pwe-gallery-thumbs {\r\n                        display: flex;\r\n                        flex-direction: column;\r\n                        width: 100%;\r\n                    }\r\n                    .pwelement_83361 .pwe-gallery-desc-wrapper .pwe-btn-container,\r\n                    .pwelement_83361 .pwe-gallery-thumbs-wrapper .pwe-btn-container {\r\n                        display: flex;\r\n                        justify-content: left;\r\n                        text-align: center;\r\n                    }\r\n                    .pwelement_83361 .pwe-gallery-thumbs-top,\r\n                    .pwelement_83361 .pwe-gallery-thumbs-bottom {\r\n                        display: flex;\r\n                        flex-wrap: wrap;\r\n                        width: 100%;\r\n                    }\r\n                    .pwelement_83361 .pwe-gallery-thumbs-top img,\r\n                    .pwelement_83361 .pwe-gallery-thumbs-bottom img {\r\n                        width: 50%;\r\n                        padding: 5px;\r\n                        border-radius: 16px;\r\n                    }\r\n                    .pwelement_83361 .slides img {\r\n                        border-radius: 16px;\r\n                    }\r\n                <\/style>\r\n\r\n                <div id=\"pweConfSection\" class=\"pwe-container-conference-section\" style=\"background-image: url(\/wp-content\/plugins\/pwe-media\/media\/conference-background.webp);\">\r\n                    <div class=\"pwe-conference-section-columns\">\r\n                        <div class=\"pwe-conference-section-column pwe-conference-gallery-column\">\r\n                            <div class=\"pwe-gallery-thumbs\">\r\n                                <div class=\"pwe-gallery-thumbs-top\">\r\n                                    <img decoding=\"async\" class=\"mini-img\" src=\"\/wp-content\/plugins\/pwe-media\/media\/events-mini\/event_1.webp\" alt=\"mini gallery picture\">\r\n                                    <img decoding=\"async\" class=\"mini-img\" src=\"\/wp-content\/plugins\/pwe-media\/media\/events-mini\/event_2.webp\" alt=\"mini gallery picture\">\r\n                                <\/div>\r\n                                <div class=\"pwe-gallery-thumbs-bottom\">\r\n                                    <img decoding=\"async\" class=\"mini-img\" src=\"\/wp-content\/plugins\/pwe-media\/media\/events-mini\/event_3.webp\" alt=\"mini gallery picture\">\r\n                                    <img decoding=\"async\" class=\"mini-img\" src=\"\/wp-content\/plugins\/pwe-media\/media\/events-mini\/event_4.webp\" alt=\"mini gallery picture\">\r\n                                <\/div>\r\n                            <\/div>  \r\n                            <div class=\"pwe-conference-section-btn\">\r\n                                <div class=\"pwe-btn-container\">    <a class=\"pwe-link btn pwe-btn\" href=\"\/en\/gallery\/\" alt=\"link to gallery\">Go to gallery<\/a><\/div> \r\n                            <\/div>   \r\n                                 \r\n                        <\/div> \r\n                        <div class=\"pwe-conference-section-column pwe-conference-logo-column\">\r\n                            <div class=\"pwe-conference-section-logo\">\r\n                                <img decoding=\"async\" src=\"\/doc\/kongres.webp\" alt=\"conference logo\">\r\n                            <\/div>\r\n                            <div class=\"pwe-conference-section-btn\">\r\n                                <div class=\"pwe-btn-container\">\r\n                                    <a class=\"pwe-link btn pwe-btn\" href=\"\/en\/registration\/\">Register and take part<\/a><\/a>  \r\n                                <\/div>\r\n                            <\/div>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>[\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>[vc_row][vc_column width=&#8221;1\/1&#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;2&#8243; bottom_padding=&#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; uncode_shortcode_id=&#8221;147349&#8243;][vc_column width=&#8221;1\/1&#8243;][\/vc_column][\/vc_row][vc_row unlock_row=&#8221;&#8221; 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; [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-253","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Conference Of Modern Solutions In The Wine Industry - Wine Warsaw Expo 2027<\/title>\n<meta name=\"description\" content=\"Check out the events accompanying Wine Warsaw Expo 2027 \u2013 conferences, lectures, meetings.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/winewarsawexpo.com\/en\/conferences\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Conference Of Modern Solutions In The Wine Industry - Wine Warsaw Expo 2027\" \/>\n<meta property=\"og:description\" content=\"Check out the events accompanying Wine Warsaw Expo 2027 \u2013 conferences, lectures, meetings.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/winewarsawexpo.com\/en\/conferences\/\" \/>\n<meta property=\"og:site_name\" content=\"Wine Warsaw Expo\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-08T12:47:31+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/winewarsawexpo.com\/en\/conferences\/\",\"url\":\"https:\/\/winewarsawexpo.com\/en\/conferences\/\",\"name\":\"Conference Of Modern Solutions In The Wine Industry - Wine Warsaw Expo 2027\",\"isPartOf\":{\"@id\":\"https:\/\/winewarsawexpo.com\/#website\"},\"datePublished\":\"2024-01-29T13:17:58+00:00\",\"dateModified\":\"2025-08-08T12:47:31+00:00\",\"description\":\"Check out the events accompanying Wine Warsaw Expo 2027 \u2013 conferences, lectures, meetings.\",\"breadcrumb\":{\"@id\":\"https:\/\/winewarsawexpo.com\/en\/conferences\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/winewarsawexpo.com\/en\/conferences\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/winewarsawexpo.com\/en\/conferences\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Strona g\u0142\u00f3wna\",\"item\":\"https:\/\/winewarsawexpo.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Conference Of Modern Solutions In The Wine Industry\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/winewarsawexpo.com\/#website\",\"url\":\"https:\/\/winewarsawexpo.com\/\",\"name\":\"Wine Warsaw Expo\",\"description\":\"Wine Products Trade Fair\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/winewarsawexpo.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Conference Of Modern Solutions In The Wine Industry - Wine Warsaw Expo 2027","description":"Check out the events accompanying Wine Warsaw Expo 2027 \u2013 conferences, lectures, meetings.","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:\/\/winewarsawexpo.com\/en\/conferences\/","og_locale":"en_US","og_type":"article","og_title":"Conference Of Modern Solutions In The Wine Industry - Wine Warsaw Expo 2027","og_description":"Check out the events accompanying Wine Warsaw Expo 2027 \u2013 conferences, lectures, meetings.","og_url":"https:\/\/winewarsawexpo.com\/en\/conferences\/","og_site_name":"Wine Warsaw Expo","article_modified_time":"2025-08-08T12:47:31+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/winewarsawexpo.com\/en\/conferences\/","url":"https:\/\/winewarsawexpo.com\/en\/conferences\/","name":"Conference Of Modern Solutions In The Wine Industry - Wine Warsaw Expo 2027","isPartOf":{"@id":"https:\/\/winewarsawexpo.com\/#website"},"datePublished":"2024-01-29T13:17:58+00:00","dateModified":"2025-08-08T12:47:31+00:00","description":"Check out the events accompanying Wine Warsaw Expo 2027 \u2013 conferences, lectures, meetings.","breadcrumb":{"@id":"https:\/\/winewarsawexpo.com\/en\/conferences\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/winewarsawexpo.com\/en\/conferences\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/winewarsawexpo.com\/en\/conferences\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Strona g\u0142\u00f3wna","item":"https:\/\/winewarsawexpo.com\/en\/"},{"@type":"ListItem","position":2,"name":"Conference Of Modern Solutions In The Wine Industry"}]},{"@type":"WebSite","@id":"https:\/\/winewarsawexpo.com\/#website","url":"https:\/\/winewarsawexpo.com\/","name":"Wine Warsaw Expo","description":"Wine Products Trade Fair","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/winewarsawexpo.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/winewarsawexpo.com\/en\/wp-json\/wp\/v2\/pages\/253","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/winewarsawexpo.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/winewarsawexpo.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/winewarsawexpo.com\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/winewarsawexpo.com\/en\/wp-json\/wp\/v2\/comments?post=253"}],"version-history":[{"count":12,"href":"https:\/\/winewarsawexpo.com\/en\/wp-json\/wp\/v2\/pages\/253\/revisions"}],"predecessor-version":[{"id":1256,"href":"https:\/\/winewarsawexpo.com\/en\/wp-json\/wp\/v2\/pages\/253\/revisions\/1256"}],"wp:attachment":[{"href":"https:\/\/winewarsawexpo.com\/en\/wp-json\/wp\/v2\/media?parent=253"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}