
            <script>
            (function(){
                const timer = [{"countdown_start":"","countdown_end":"2026\/10\/21 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 = 30939;

                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>
            

<script>console.log("org-name_en")</script><script>console.log("360")</script><script>console.log("org-name_pl")</script><script>console.log("360")</script>{"id":1261,"date":"2025-10-27T11:32:38","date_gmt":"2025-10-27T10:32:38","guid":{"rendered":"https:\/\/hotelequipmentexpo.com\/?page_id=1261"},"modified":"2025-10-27T11:32:38","modified_gmt":"2025-10-27T10:32:38","slug":"industry-conference-on-hotel-equipment-and-hospitality-solutions-2025","status":"publish","type":"page","link":"https:\/\/hotelequipmentexpo.com\/en\/industry-conference-on-hotel-equipment-and-hospitality-solutions-2025\/","title":{"rendered":"Industry Conference on Hotel Equipment and Hospitality Solutions 2025"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_row][vc_column width=&#8221;1\/1&#8243;]<div class=\"pwelement pwelement_21490\">\r\n        <style>\r\n            .row-parent:has(.pwelement_21490 .pwe-header) {\r\n                max-width: 100%;\r\n                padding: 0 !important;\r\n            }\r\n            .wpb_column:has(.pwelement_21490 .pwe-header) {\r\n                max-width: 100%;\r\n            }\r\n            .pwelement_21490 .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_21490 .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_21490 .pwe-header-background {\r\n                background-size: cover;\r\n                background-repeat: no-repeat;\r\n                background-position: center;\r\n            }\r\n            .pwelement_21490 .pwe-header-text {\r\n                padding: 18px 0;\r\n                z-index: 1;\r\n            }\r\n            .pwelement_21490 .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_21490 .pwe-header .pwe-logotypes-title {\r\n                justify-content: center;\r\n            }\r\n            .pwelement_21490 .pwe-header .pwe-logotypes-title h4 {\r\n                box-shadow: 9px 9px 0px -6px white;\r\n            }\r\n            .pwelement_21490 .pwe-header-text h1 {\r\n                font-size: 30px;\r\n            }\r\n            .pwelement_21490 .pwe-header-text h2 {\r\n                font-size: 36px;\r\n            }\r\n            .pwelement_21490 .pwe-header .slides div p,\r\n            .pwelement_21490 .pwe-header .pwe-logotypes-gallery-wrapper div p{\r\n                color: white;\r\n            }\r\n            .pwelement_21490 .pwe-header .dots-container {\r\n                display: none !important;\r\n            }\r\n            .pwelement_21490 .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_21490 .pwe-header-text h1 {\r\n                    font-size: calc(20px + (30 - 20) * ( (100vw - 300px) \/ (1200 - 300) ));\r\n                }\r\n                .pwelement_21490 .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_21490 .pwe-header) {\r\n                    padding: 0 !important;\r\n                }\r\n                .pwelement_21490 .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_21490 .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_21490 .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_21490 .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_21490 .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_21490 .pwe-header-simple-logo .pwe-btn-container {\r\n        width: 240px;\r\n        height: 50px;\r\n        padding: 0;\r\n    }\r\n    .pwelement_21490 .pwe-header .pwe-btn {\r\n        background-color: #9d7c3b !important;\r\n        border: #9d7c3b !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_21490 .pwe-header-simple-logo .pwe-btn:hover {\r\n        color: white;\r\n        background-color: #896827!important;\r\n        border: 2px solid #896827!important;\r\n    }\r\n    .pwelement_21490 .pwe-header-text {\r\n        display: flex;\r\n        flex-direction: column-reverse;\r\n    }\r\n    .pwelement_21490 .pwe-header-text h2 {\r\n        font-size: 40px;\r\n        margin: 0;\r\n    }\r\n    @media (max-width: 1200px) {\r\n        .pwelement_21490 .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_21490 .pwe-header-wrapper {\r\n            min-height: 350px !important;\r\n            height: 350px;\r\n        }\r\n        .pwelement_21490 .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_21490 .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:\/\/hotelequipmentexpo.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-Hotel Equipment 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>Industry Conference on Hotel Equipment and Hospitality Solutions 2025<\/h1>\r\n                    <h2>october 21-24, 2026<\/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_60506\"><div style=\"visibility: hidden; width: 0; height: 0;\" id=\"main-content\">...<\/div><style>\r\n                    .row-parent:has(.pwelement_60506) {\r\n                        background: #1d2921;\r\n                        max-width: 100%;\r\n                        padding: 0 !important;\r\n                    }\r\n                    .row-parent:has(.pwelement_60506) {\r\n                        background: #1d2921;\r\n                        max-width: 100%;\r\n                        padding: 0 !important;\r\n                    }\r\n                    .pwelement_60506 #main-timer p {\r\n                        color: white!important;\r\n                        margin: 9px auto;\r\n                        font-size: 18px !important;\r\n                    }\r\n                    .pwelement_60506 .pwe-btn {\r\n                        color: white!important;\r\n                        background-color: #9d7c3b!important;\r\n                        border: 1px solid #9d7c3b!important;\r\n                        margin: 9px 18px;\r\n                        transform: scale(1) !important;\r\n                    }\r\n                    .pwelement_60506 .pwe-btn:hover {\r\n                        color: white!important;\r\n                        background-color: #896827!important;\r\n                        border: 1px solid #896827!important;\r\n                    }\r\n                    .pwelement_60506 .pwe-timer-text {\r\n                        font-weight: 700;\r\n                        text-transform: uppercase;\r\n                        margin: 9px auto;\r\n                    }\r\n                    .pwelement_60506 .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_60506 .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_60506 #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_60506 .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_60506 .pwe-countdown-timer {\r\n                            min-width: 100%;\r\n                        }\r\n                        .pwelement_60506 #main-timer p {\r\n                            margin: 0 auto;\r\n                        }\r\n                    }\r\n                    @media (max-width:959px){\r\n                        .wpb_column:has(.pwelement_60506) {\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-30939\" class=\"timer-header-text pwe-timer-text\">To the conference remains:<\/p><p id=\"pwe-countdown-timer-30939\" class=\"pwe-countdown-timer pwe-timer-text\">\r\n                        148 days 3 hours 51 minutes 5  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;201998&#8243; el_class=&#8221;main-heading-text&#8221;]Participate in the industry events as part of the Industry Conference on Hotel Equipment and Hospitality Solutions:[\/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\/hotel-scenaglowna-2025\/conf_img_en.webp\" alt=\"hotel-scenaglowna-2025\" id=\"nav_hotel-scenaglowna-2025\" class=\"conference_cap__conf-slug-img\"><img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/hotelequipment-medal-2025\/conf_img_en.webp\" alt=\"hotelequipment-medal-2025\" id=\"nav_hotelequipment-medal-2025\" class=\"conference_cap__conf-slug-img\"><\/div><div class=\"conference_cap__more-coming-soon\">More events coming soon<\/div><div class=\"conference_cap__conf-slugs-container\"><div id=\"conf_hotelequipment-medal-2025\" 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>23 october <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 A <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_hotel-scenaglowna-2025\" 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\/hotel-scenaglowna-2025\/conf_img_en.webp\" alt=\"Hotel Innovations Conference\" class=\"conference_cap__conf-slug-image\">\r\n                                <div class=\"conference_cap__after-header-html\"><\/div>\r\n            <style>\r\n                #conf_hotel-scenaglowna-2025 .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                #conf_hotel-scenaglowna-2025 .slick-slide {\r\n                    height: auto;\r\n                }\r\n                #conf_hotel-scenaglowna-2025 .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                #conf_hotel-scenaglowna-2025 .pwe-arrow-prev {\r\n                    left: 14px;\r\n                }\r\n                #conf_hotel-scenaglowna-2025 .pwe-arrow-next {\r\n                    right: 14px;\r\n                }\r\n                #conf_hotel-scenaglowna-2025 .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                #conf_hotel-scenaglowna-2025 .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                #conf_hotel-scenaglowna-2025 .slick-dots li button {\r\n                    opacity: 0;\r\n                }\r\n                #conf_hotel-scenaglowna-2025 .slick-dots li.slick-active {\r\n                    transform-origin: center;\r\n                    background: #9d7c3b;\r\n                }\r\n            <\/style>\r\n            <script>\r\n                jQuery(function ($) {\r\n                    const pweElement = $(\"#conf_hotel-scenaglowna-2025\");\r\n                    const slickSlider = $(\"#conf_hotel-scenaglowna-2025 .pwe-slides\");\r\n                    const sliderArrows = $(\"#conf_hotel-scenaglowna-2025 .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: $(\"#conf_hotel-scenaglowna-2025 .pwe-arrow-next\"),\r\n                            prevArrow: $(\"#conf_hotel-scenaglowna-2025 .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 < 1100 ? 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                                        <h2 class=\"conference_cap__conf-logotypes-title\">Conference Patrons<\/h2>\r\n                                        <div class=\"conference_patroni_logos pwe-slides\"><div class=\"conference_cap__patrons-container-logo\"><img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/hotel-scenaglowna-2025\/patrons\/82069_480.webp\" data-no-lazy=\"1\" alt=\"Patron Logo\" class=\"conference_patroni_logo\"><\/div><div class=\"conference_cap__patrons-container-logo\"><img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/hotel-scenaglowna-2025\/patrons\/logo%20IMS%20Sensory%20Media%5D.webp\" data-no-lazy=\"1\" alt=\"Patron Logo\" class=\"conference_patroni_logo\"><\/div><div class=\"conference_cap__patrons-container-logo\"><img decoding=\"async\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/conf\/hotel-scenaglowna-2025\/patrons\/Nowy%20projekt%20(53).webp\" data-no-lazy=\"1\" alt=\"Patron Logo\" class=\"conference_patroni_logo\"><\/div><\/div>\r\n                                <div class=\"conference_cap__after-patrons-html\"><\/div>\r\n                                <h2 class=\"conference_cap__conf-slug-location\">Exhibition Studio <br> Hall A<\/h2>\r\n                                <div class=\"conference_cap__after-location-html\"><\/div>\r\n                                <h2 class=\"conference_cap__conf-slug-title\">Hotel Innovations Conference<\/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-contents\">\r\n                                        <div id=\"content_hotel-scenaglowna-2025_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=\"hotel-scenaglowna-2025_day-1_pre-1\" 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=\"hotel-scenaglowna-2025_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\"><\/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=\"hotel-scenaglowna-2025_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=\"hotel-scenaglowna-2025_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\/hotel-scenaglowna-2025\/AK%20(1).webp?v=1761140175589\" 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\">12:45 <\/h4><h5 class=\"conference_cap__lecture-name\">Andrzej Kowalczyk<\/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=\"hotel-scenaglowna-2025_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 id=\"hotel-scenaglowna-2025_day-1_pre-6\" 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\/hotel-scenaglowna-2025\/RW%20(1).webp?v=1761140327116\" 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\">14:10 <\/h4><h5 class=\"conference_cap__lecture-name\">Robert W\u0119glarz<\/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=\"hotel-scenaglowna-2025_day-1_pre-7\" 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><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>\r\n                                        <div id=\"content_hotel-scenaglowna-2025_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=\"hotel-scenaglowna-2025_day-2_pre-1\" 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=\"hotel-scenaglowna-2025_day-2_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\">11:15 <\/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=\"hotel-scenaglowna-2025_day-2_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=\"hotel-scenaglowna-2025_day-2_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\"><\/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=\"hotel-scenaglowna-2025_day-2_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 id=\"hotel-scenaglowna-2025_day-2_pre-6\" 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=\"hotel-scenaglowna-2025_day-2_pre-7\" 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_40180 pwe_logotypes\">\r\n            <style>\r\n            <\/style>\r\n            <style>\r\n                .pwelement_40180 .pwe-container-logotypes-gallery {\r\n                    z-index: 1;\r\n                }\r\n                .pwelement_40180.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_40180 .pwe-header-logotypes .pwe-logo-item-container,\r\n                .pwelement_40180 .pwe-logo-item-container {\r\n                    margin: 5px;\r\n                }\r\n                .pwelement_40180 .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_40180 .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_40180 .slick-slide .pwe-logo-item {\r\n                    max-width: 100%;\r\n                }\r\n                .pwelement_40180 .pwe-logo-item img {\r\n                    object-fit: contain;\r\n                    aspect-ratio: 3 \/ 2;\r\n                }\r\n                .pwelement_40180 .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_40180 .pwe-full-width)  {\r\n                    max-width: 100% !important;\r\n                }\r\n                .pwelement_40180 .pwe-white-logotypes img,\r\n                .pwelement_40180 .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_40180 .pwe-white-logotypes img:hover,\r\n                .pwelement_40180 .pwe-header .pwe-logotypes-gallery-wrapper img:hover {\r\n                    filter: none;\r\n                }\r\n                .pwelement_40180 .pwe-logo-original img {\r\n                    filter: none !important;\r\n                }\r\n                .pwelement_40180 .pwe-color-logotypes .pwe-logo-item img {\r\n                    filter: none !important;\r\n                }\r\n                .pwelement_40180 .pwe-header .pwe-logotypes-title {\r\n                    justify-content: center;\r\n                }\r\n\r\n                .pwelement_40180 .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-12001\" 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=\"Hotelarz_logotyp\" alt=\"Media PatronHotelarz_logotyp\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/hotelequipmentexpo-com\/partners\/patron-medialny\/Hotelarz_logotyp.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=\"majer media\" alt=\"Media Patronmajer media\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/hotelequipmentexpo-com\/partners\/patron-medialny\/majer media.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=\"Restauracja_logotyp\" alt=\"Media PatronRestauracja_logotyp\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/hotelequipmentexpo-com\/partners\/patron-medialny\/Restauracja_logotyp.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=\"wprost\" alt=\"Media Patronwprost\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/hotelequipmentexpo-com\/partners\/patron-medialny\/wprost.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=\"Business Life_logo\" alt=\"Media PatronBusiness Life_logo\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/hotelequipmentexpo-com\/partners\/patron-medialny\/Business Life_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=\"TRAVEL\" alt=\"Media PatronTRAVEL\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/hotelequipmentexpo-com\/partners\/patron-medialny\/TRAVEL.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=\"horeca_taste\" alt=\"Media Patronhoreca_taste\" data-no-lazy=\"1\" src=\"https:\/\/cap.warsawexpo.eu\/public\/uploads\/domains\/hotelequipmentexpo-com\/partners\/patron-medialny\/horeca_taste.webp\"\/>\r\n                                                <p>media patron<\/p>\r\n                                            <\/div>\r\n                                        <\/div>\r\n                    <\/div>\r\n                <\/div>\r\n            <style>\r\n                #pweLogotypes-12001 .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-12001 .slick-slide {\r\n                    height: auto;\r\n                }\r\n                #pweLogotypes-12001 .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-12001 .pwe-arrow-prev {\r\n                    left: 14px;\r\n                }\r\n                #pweLogotypes-12001 .pwe-arrow-next {\r\n                    right: 14px;\r\n                }\r\n                #pweLogotypes-12001 .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-12001 .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-12001 .slick-dots li button {\r\n                    opacity: 0;\r\n                }\r\n                #pweLogotypes-12001 .slick-dots li.slick-active {\r\n                    transform-origin: center;\r\n                    background: #9d7c3b;\r\n                }\r\n            <\/style>\r\n                <style>\r\n                    #pweLogotypes-12001 .pwe-arrow-prev {\r\n                        left: -26px;\r\n                    }\r\n                    #pweLogotypes-12001 .pwe-arrow-next {\r\n                        right: -26px;\r\n                    }\r\n                <\/style>\r\n            <script>\r\n                jQuery(function ($) {\r\n                    const pweElement = $(\"#pweLogotypes-12001\");\r\n                    const slickSlider = $(\"#pweLogotypes-12001 .pwe-slides\");\r\n                    const sliderArrows = $(\"#pweLogotypes-12001 .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-12001 .pwe-arrow-next\"),\r\n                            prevArrow: $(\"#pweLogotypes-12001 .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\":\"61\",\"fair_name_pl\":\"Poland Boat Show\",\"fair_name_en\":\"Poland Boat Show\",\"fair_desc_pl\":\"Mi\\u0119dzynarodowe Targi Jachtowe, Osprz\\u0119tu Jachtowego i Sport\\u00f3w Wodnych\",\"fair_desc_en\":\"International Yacht, Yacht Equipment, and Water Sports Trade Fair\",\"fair_short_desc_pl\":\"Targi Jachtowe i Sport\\u00f3w Wodnych\",\"fair_short_desc_en\":\"Yachting and Water Sports Trade Fair\",\"fair_full_desc_pl\":\"<strong>Poland Boat Show<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, gromadz\\u0105ce producent\\u00f3w i dystrybutor\\u00f3w jacht\\u00f3w, \\u0142odzi motorowych, house-boat\\u00f3w, ponton\\u00f3w i skuter\\u00f3w wodnych. Znajdziesz tu osprz\\u0119t jachtowy, elektronik\\u0119 nawigacyjn\\u0105, odzie\\u017c \\u017ceglarsk\\u0105, sprz\\u0119t asekuracyjny i nurkowy, a tak\\u017ce us\\u0142ugi leasingowe, czartery oraz ubezpieczenia.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Poznaj najnowsze technologie i innowacje w \\u015bwiecie jacht\\u00f3w i \\u0142odzi.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach prowadzonych przez ekspert\\u00f3w z bran\\u017cy \\u017ceglarskiej i sport\\u00f3w wodnych.\\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>Poland Boat Show<\\\/strong> is a key industry event bringing together manufacturers and distributors of yachts, motorboats, houseboats, pontoons, and jet skis. Discover yacht equipment, navigation electronics, sailing apparel, safety and diving gear, as well as leasing services, charters, and insurance solutions for the marine sector.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover the latest technologies and innovations in the world of yachts and boats.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Join industry experts for insightful conferences on sailing and water sports.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2026\\\/10\\\/08\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2026\\\/10\\\/11\",\"fair_date_end_hour\":null,\"fair_edition\":\"10\",\"fair_visitors\":\"23051\",\"fair_exhibitors\":\"201\",\"fair_countries\":\"13\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2025\\\",\\\"fair_visitors_current\\\":\\\"28987\\\",\\\"fair_foreign_current\\\":\\\"2029\\\",\\\"fair_exhibitors_current\\\":\\\"252\\\",\\\"fair_countries_current\\\":\\\"38\\\",\\\"fair_area_current\\\":\\\"40000\\\",\\\"fair_year_previous\\\":\\\"2024\\\",\\\"fair_visitors_previous\\\":\\\"23051\\\",\\\"fair_foreign_previous\\\":\\\"1207\\\",\\\"fair_exhibitors_previous\\\":\\\"201\\\",\\\"fair_countries_previous\\\":\\\"13\\\",\\\"fair_area_previous\\\":\\\"40000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/PolandBoatShow\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/poland_boat_show\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/polandboatshow\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/playlist?list=PL0uv62TZgbz-g2Sz5t4j80uy6xofnoswm\",\"fair_color_accent\":\"#b40500\",\"fair_color_main2\":\"#0b1838\",\"fair_hall\":\"F, E1\",\"fair_area\":\"40000\",\"fair_kw\":\"2059\",\"fair_badge\":\"boat\",\"fair_domain\":\"boatshow.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\\\":\\\"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\\\":\\\"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},\\\"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\\\":\\\"2400\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"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\\\":\\\"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},\\\"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\\\":\\\"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},\\\"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\\\":\\\"21000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"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\\\":\\\"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},\\\"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\\\":\\\"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\\\":\\\"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},\\\"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\\\":\\\"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},\\\"artyku\\u0142-tworzony-przez-klienta\\\":{\\\"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},\\\"artyku\\u0142-tworzony-przez-nas\\\":{\\\"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},\\\"skaner-wystawcy\\\":{\\\"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},\\\"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\":\"Motoryzacja\",\"category_en\":\"Automotive\",\"konf_name\":\"Congress MANUFACTURING Yacht\",\"konf_title_pl\":\"Mi\\u0119dzynarodowa Konferencja Jachtowa, Osprz\\u0119tu Jachtowego i Sport\\u00f3w Wodnych\",\"konf_title_en\":\"International Conference on Yachting, Yacht Equipment and Water Sports\",\"fair_kw_new\":null,\"fair_kw_old_arch\":\"2024-924;2025-1447;2023-646;\",\"fair_kw_new_arch\":null,\"fair_entrance\":null},{\"id\":\"86\",\"fair_name_pl\":\"Automotive Parts Expo\",\"fair_name_en\":\"Automotive Parts Expo\",\"fair_desc_pl\":\"Targi Techniki Motoryzacyjnej\",\"fair_desc_en\":\"Automotive Technology Trade Fair\",\"fair_short_desc_pl\":\"Targi Techniki Motoryzacyjnej\",\"fair_short_desc_en\":\"Automotive Engineering Trade Fair\",\"fair_full_desc_pl\":\"<strong>Automotive Parts Expo<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce cz\\u0119\\u015bci zamienne, akumulatory, instalacje gazowe, klimatyzacje oraz o\\u015bwietlenie. Znajdziesz tu tak\\u017ce narz\\u0119dzia naprawcze, wyposa\\u017cenie warsztat\\u00f3w, sprz\\u0119t diagnostyczny, \\u015brodki piel\\u0119gnacyjne, oleje i akcesoria wspieraj\\u0105ce rozw\\u00f3j bran\\u017cy motoryzacyjnej.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Poznaj innowacyjne rozwi\\u0105zania i cz\\u0119\\u015bci zamienne dla motoryzacji.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach prowadzonych przez ekspert\\u00f3w z bran\\u017cy motoryzacyjnej.\\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>Automotive Parts Expo<\\\/strong> is a key industry event showcasing spare parts, batteries, gas installations, air conditioning systems, and lighting. Discover repair tools, workshop equipment, diagnostic devices, care products, oils, and accessories that contribute to the growth and development of the automotive industry.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover innovative solutions and spare parts for the automotive sector.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Join industry experts for insightful conferences on the automotive industry.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2026\\\/10\\\/09\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2026\\\/10\\\/11\",\"fair_date_end_hour\":null,\"fair_edition\":\"4\",\"fair_visitors\":\"9109\",\"fair_exhibitors\":\"112\",\"fair_countries\":\"10\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2025\\\",\\\"fair_visitors_current\\\":\\\"34184\\\",\\\"fair_foreign_current\\\":\\\"1267\\\",\\\"fair_exhibitors_current\\\":\\\"415\\\",\\\"fair_countries_current\\\":\\\"37\\\",\\\"fair_area_current\\\":\\\"70000\\\",\\\"fair_year_previous\\\":\\\"2024\\\",\\\"fair_visitors_previous\\\":\\\"9109\\\",\\\"fair_foreign_previous\\\":\\\"409\\\",\\\"fair_exhibitors_previous\\\":\\\"112\\\",\\\"fair_countries_previous\\\":\\\"10\\\",\\\"fair_area_previous\\\":\\\"20000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/pl-pl.facebook.com\\\/automotivepartsexpo\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/automotivepartsexpo\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/automotive-parts-expo\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/playlist?list=PL0uv62TZgbz-5FFi9_EyXRcs7g15Vgq41\",\"fair_color_accent\":\"#373737\",\"fair_color_main2\":\"#ef6600\",\"fair_hall\":\"C\",\"fair_area\":\"20000\",\"fair_kw\":\"2098\",\"fair_badge\":\"automotiveexpo\",\"fair_domain\":\"automotive-expo.eu\",\"fair_shop\":null,\"fair_group\":\"gr2\",\"category_pl\":\"Motoryzacja\",\"category_en\":\"Automotive\",\"konf_name\":\"Warsaw Automotive Congress\",\"konf_title_pl\":\"Kongres techniki motoryzacyjnej\",\"konf_title_en\":\"Automotive Technology Congress\",\"fair_kw_new\":null,\"fair_kw_old_arch\":\"2025-1494;2023-805;\",\"fair_kw_new_arch\":null,\"fair_entrance\":null},{\"id\":\"92\",\"fair_name_pl\":\"BOAT TECHNICA\",\"fair_name_en\":\"BOAT TECHNICA\",\"fair_desc_pl\":\"Mi\\u0119dzynarodowe Targi Budowy, Wyposa\\u017cenia Jacht\\u00f3w oraz Osprz\\u0119tu Jachtowego\",\"fair_desc_en\":\"International Trade Fair of Yacht Construction, Equipment and Yacht Accessories\",\"fair_short_desc_pl\":\"Targi Budowy i Wyposa\\u017cenia Jacht\\u00f3w\",\"fair_short_desc_en\":\"Yacht Construction and Equipment Trade Fair\",\"fair_full_desc_pl\":\"<strong>BOAT TECHNICA<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce technologie budowy \\u0142odzi, nowoczesne systemy nap\\u0119dowe, sterowe i stabilizuj\\u0105ce, a tak\\u017ce akcesoria i wyposa\\u017cenie \\u0142odzi. Znajdziesz tu r\\u00f3wnie\\u017c rozwi\\u0105zania transportowe, sprz\\u0119t dokuj\\u0105cy, us\\u0142ugi doradcze oraz finansowanie wspieraj\\u0105ce rozw\\u00f3j bran\\u017cy \\u017ceglarskiej.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Poznaj innowacyjne technologie i rozwi\\u0105zania dla budowy i wyposa\\u017cenia \\u0142odzi.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w z bran\\u017cy technologii morskich i budowy \\u0142odzi.\\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>BOAT TECHNICA<\\\/strong> is a key industry event presenting boat construction technologies, modern propulsion, steering, and stabilization systems, as well as boat accessories and equipment. Discover transport solutions, docking equipment, advisory services, and financing options that support the development of the sailing industry.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover innovative technologies and solutions for boat construction and equipment.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Join industry experts for insightful conferences on marine technology and boatbuilding.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2026\\\/10\\\/08\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2026\\\/10\\\/11\",\"fair_date_end_hour\":null,\"fair_edition\":\"3\",\"fair_visitors\":\"5098\",\"fair_exhibitors\":\"89\",\"fair_countries\":\"14\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2025\\\",\\\"fair_visitors_current\\\":\\\"6672\\\",\\\"fair_foreign_current\\\":\\\"490\\\",\\\"fair_exhibitors_current\\\":\\\"98\\\",\\\"fair_countries_current\\\":\\\"14\\\",\\\"fair_area_current\\\":\\\"40000\\\",\\\"fair_year_previous\\\":\\\"2024\\\",\\\"fair_visitors_previous\\\":\\\"5098\\\",\\\"fair_foreign_previous\\\":\\\"371\\\",\\\"fair_exhibitors_previous\\\":\\\"89\\\",\\\"fair_countries_previous\\\":\\\"14\\\",\\\"fair_area_previous\\\":\\\"15000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/boattechnica\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/boattechnica\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/boat-technica\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/playlist?list=PL0uv62TZgbz8nrc73IWmV__PaMquv9Se9\",\"fair_color_accent\":\"#0b4ea5\",\"fair_color_main2\":\"#1ba6e0\",\"fair_hall\":\"E2, E4\",\"fair_area\":\"15000\",\"fair_kw\":\"2006\",\"fair_badge\":\"boattechnica\",\"fair_domain\":\"boattechnica.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\\\":\\\"16000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"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\\\":\\\"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},\\\"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\\\":\\\"2400\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"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\\\":\\\"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},\\\"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\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"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\\\":\\\"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\\\":\\\"21000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"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\\\":\\\"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\\\":\\\"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},\\\"artyku\\u0142-tworzony-przez-klienta\\\":{\\\"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},\\\"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\\\":\\\"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},\\\"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\":\"Motoryzacja\",\"category_en\":\"Automotive\",\"konf_name\":\"Congress Manufacturing Yacht\",\"konf_title_pl\":\"Mi\\u0119dzynarodowa Konferencja Bran\\u017cy Jachtowej\",\"konf_title_en\":\"International Yacht Industry Conference\",\"fair_kw_new\":null,\"fair_kw_old_arch\":\"2025-1436;2024-974;\",\"fair_kw_new_arch\":null,\"fair_entrance\":null},{\"id\":\"101\",\"fair_name_pl\":\"Construction Machinery Exhibition\",\"fair_name_en\":\"Construction Machinery Exhibition\",\"fair_desc_pl\":\"Najwi\\u0119ksze Targi Maszyn Budowlanych\",\"fair_desc_en\":\"The Largest Construction Machinery Trade Fair\",\"fair_short_desc_pl\":\"Targi Maszyn Budowlanych\",\"fair_short_desc_en\":\"Construction Machinery Trade Fair\",\"fair_full_desc_pl\":\"<strong>Construction Machinery Exhibition<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce najnowsze technologie budowlane, projekty architektoniczne oraz rozwi\\u0105zania wspieraj\\u0105ce efektywno\\u015b\\u0107 proces\\u00f3w. Znajdziesz tu innowacje w budowie dr\\u00f3g, most\\u00f3w i tuneli, a tak\\u017ce us\\u0142ugi wspieraj\\u0105ce rozw\\u00f3j nowoczesnego budownictwa.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Odkryj nowoczesne technologie i zr\\u00f3wnowa\\u017cone rozwi\\u0105zania w budownictwie.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w z bran\\u017cy budowlanej i technologii konstrukcyjnych.\\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 Machinery Exhibition<\\\/strong> is a key industry event showcasing the latest construction technologies, architectural projects, and solutions supporting process efficiency. Discover innovations in road, bridge, and tunnel construction, as well as services driving the development of modern construction projects.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover modern technologies and sustainable solutions in construction.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Join experts for insightful conferences on the construction industry and structural technologies.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2026\\\/11\\\/03\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2026\\\/11\\\/05\",\"fair_date_end_hour\":null,\"fair_edition\":\"6\",\"fair_visitors\":\"7098\",\"fair_exhibitors\":\"114\",\"fair_countries\":\"9\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2025\\\",\\\"fair_visitors_current\\\":\\\"9241\\\",\\\"fair_foreign_current\\\":\\\"762\\\",\\\"fair_exhibitors_current\\\":\\\"154\\\",\\\"fair_countries_current\\\":\\\"22\\\",\\\"fair_area_current\\\":\\\"20000\\\",\\\"fair_year_previous\\\":\\\"2024\\\",\\\"fair_visitors_previous\\\":\\\"7098\\\",\\\"fair_foreign_previous\\\":\\\"567\\\",\\\"fair_exhibitors_previous\\\":\\\"114\\\",\\\"fair_countries_previous\\\":\\\"9\\\",\\\"fair_area_previous\\\":\\\"15000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/constructionpwe\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/construction_machinery_expo\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/construction-machinery-exhibition-poland\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/playlist?list=PL0uv62TZgbz-Zf9l4ZesYsirl7N7tWHtX\",\"fair_color_accent\":\"#fcb831\",\"fair_color_main2\":\"#8d1717\",\"fair_hall\":\"D2\",\"fair_area\":\"15000\",\"fair_kw\":\"2071\",\"fair_badge\":\"constrtools\",\"fair_domain\":\"warsawconstructionexpo.com\",\"fair_shop\":null,\"fair_group\":\"gr2\",\"category_pl\":\"Budownictwo\",\"category_en\":\"Construction\",\"konf_name\":\"Warsaw Machinery Congress\",\"konf_title_pl\":\"Kongres Bran\\u017cy Maszyn Budowlanych\",\"konf_title_en\":\"Construction Machinery Industry Congress\",\"fair_kw_new\":null,\"fair_kw_old_arch\":\"2025-1438;2024-937;2023-665;2021-115;2022-620;\",\"fair_kw_new_arch\":null,\"fair_entrance\":null},{\"id\":\"116\",\"fair_name_pl\":\"FIWE Make Fiwe Great Again\",\"fair_name_en\":\"FIWE Make Fiwe Great Again\",\"fair_desc_pl\":\"Najwi\\u0119ksze Targi Bran\\u017cy Fitness w Polsce i Europie \\u015arodkowo-Wschodniej.\",\"fair_desc_en\":\"The Largest Fair Event for the Fitness Industry in Central-eastern Europe\",\"fair_short_desc_pl\":\"Targi Fitness\",\"fair_short_desc_en\":\"Fitness Trade Fair\",\"fair_full_desc_pl\":\"<strong>FIWE Make Fiwe Great Again<\\\/strong> to kluczowe wydarzenie dla bran\\u017cy fitness i wellness. Odkryj najnowsze trendy w wyposa\\u017ceniu si\\u0142owni, odzie\\u017cy sportowej i suplementach diety. Poznaj technologie dla klub\\u00f3w fitness, rozwi\\u0105zania teleinformatyczne, us\\u0142ugi medyczne, sprz\\u0119t rehabilitacyjny oraz szkolenia dla trener\\u00f3w personalnych.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Odkryj innowacyjne rozwi\\u0105zania dla si\\u0142owni, klub\\u00f3w fitness i studi\\u00f3w treningowych.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w z bran\\u017cy fitness, wellness i technologii zdrowia.\\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>FIWE Make Fiwe Great Again<\\\/strong> is a key event for the fitness and wellness industry. Discover the latest trends in gym equipment, sportswear, and dietary supplements. Explore technologies for fitness clubs, IT solutions, medical services, rehabilitation equipment, and specialized training programs for personal trainers.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover innovative solutions for gyms, fitness clubs, and training studios.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Join experts for insightful conferences on fitness, wellness, and health technologies.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2026\\\/11\\\/07\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2026\\\/11\\\/08\",\"fair_date_end_hour\":null,\"fair_edition\":\"13\",\"fair_visitors\":\"12287\",\"fair_exhibitors\":\"141\",\"fair_countries\":\"9\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2024\\\",\\\"fair_visitors_current\\\":\\\"12287\\\",\\\"fair_foreign_current\\\":\\\"1284\\\",\\\"fair_exhibitors_current\\\":\\\"141\\\",\\\"fair_countries_current\\\":\\\"9\\\",\\\"fair_area_current\\\":\\\"30000\\\",\\\"fair_year_previous\\\":\\\"2023\\\",\\\"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\\\/FIWE.tradeshow\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/fiwe_fitness_trade_show\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/fiwe-fitness-trade-show\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/playlist?list=PL0uv62TZgbz820EJhnwbU1UJhlvPm79T3\",\"fair_color_accent\":\"#d83cde\",\"fair_color_main2\":\"#003992\",\"fair_hall\":\"A1,A2\",\"fair_area\":\"15000\",\"fair_kw\":\"1380\",\"fair_badge\":\"fiwe\",\"fair_domain\":\"fiwe.pl\",\"fair_shop\":null,\"fair_group\":\"gr2\",\"category_pl\":\"Inne\",\"category_en\":\"Other\",\"konf_name\":null,\"konf_title_pl\":null,\"konf_title_en\":null,\"fair_kw_new\":null,\"fair_kw_old_arch\":\"2025-1380;2024-905;2023-617;2022-583;\",\"fair_kw_new_arch\":null,\"fair_entrance\":null},{\"id\":\"127\",\"fair_name_pl\":\"Warsaw Home Bathroom\",\"fair_name_en\":\"Warsaw Home Bathroom\",\"fair_desc_pl\":\"Mi\\u0119dzynarodowe Targi Wyposa\\u017cenia \\u0141azienkowego\",\"fair_desc_en\":\"International Trade Fair for Bathroom Design\",\"fair_short_desc_pl\":\"Targi Wyposa\\u017cenia \\u0141azienkowego\",\"fair_short_desc_en\":\"Bathroom Equipment Trade Fair\",\"fair_full_desc_pl\":\"<strong>Warsaw Home Bathroom<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce design i projektowanie \\u0142azienek, armatur\\u0119, meble oraz ceramik\\u0119 sanitarn\\u0105. Znajdziesz tu systemy natryskowe, o\\u015bwietlenie, ogrzewanie \\u0142azienkowe, akcesoria, a tak\\u017ce nowoczesne technologie wodne i rozwi\\u0105zania SPA, kt\\u00f3re \\u0142\\u0105cz\\u0105 funkcjonalno\\u015b\\u0107 z luksusem.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Poznaj najnowsze trendy w designie i wyposa\\u017ceniu \\u0142azienek.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w z bran\\u017cy designu \\u0142azienek i technologii wodnych.\\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 Home Bathroom<\\\/strong> is a key industry event showcasing bathroom design, fixtures, furniture, and sanitary ceramics. Discover shower systems, lighting, bathroom heating, accessories, and advanced water technologies, as well as SPA solutions that combine functionality with luxury to create stylish and modern bathroom spaces.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover the latest trends in bathroom design and furnishings.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Join experts for insightful conferences on bathroom design and water technologies.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2026\\\/10\\\/21\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2026\\\/10\\\/24\",\"fair_date_end_hour\":null,\"fair_edition\":\"10\",\"fair_visitors\":\"62076\",\"fair_exhibitors\":\"700\",\"fair_countries\":\"54\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2025\\\",\\\"fair_visitors_current\\\":\\\"67322\\\",\\\"fair_foreign_current\\\":\\\"7115\\\",\\\"fair_exhibitors_current\\\":\\\"763\\\",\\\"fair_countries_current\\\":\\\"43\\\",\\\"fair_area_current\\\":\\\"125000\\\",\\\"fair_year_previous\\\":\\\"2024\\\",\\\"fair_visitors_previous\\\":\\\"62076\\\",\\\"fair_foreign_previous\\\":\\\"6829\\\",\\\"fair_exhibitors_previous\\\":\\\"700\\\",\\\"fair_countries_previous\\\":\\\"38\\\",\\\"fair_area_previous\\\":\\\"125000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/WarsawHomeBathroom\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/home_bathroom_expo\\\/\",\"fair_linkedin\":null,\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/playlist?list=PL0uv62TZgbz8eGpMNogc-1LUYya2z_IYP\",\"fair_color_accent\":\"#3a9eb0\",\"fair_color_main2\":\"#303634\",\"fair_hall\":\"F3, F4\",\"fair_area\":\"125000\",\"fair_kw\":\"2052\",\"fair_badge\":\"bathroom\",\"fair_domain\":\"warsawhomebathroom.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\\\":\\\"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},\\\"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\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"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\\\":\\\"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\\\":\\\"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\\\":\\\"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\\\":\\\"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},\\\"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\\\":\\\"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\\\":\\\"22000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"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\\\":\\\"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-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\\\":\\\"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\\\":\\\"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},\\\"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\\\":\\\"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\\\":\\\"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},\\\"pozycjonowanie-wystawcy\\\":{\\\"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},\\\"artyku\\u0142-tworzony-przez-klienta\\\":{\\\"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},\\\"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\\\":\\\"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},\\\"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\":\"Design Trends Congress\",\"konf_title_pl\":\"Konferencja\",\"konf_title_en\":\"Conference\",\"fair_kw_new\":null,\"fair_kw_old_arch\":\"2024-880;2023-631;2025-1458;\",\"fair_kw_new_arch\":null,\"fair_entrance\":null},{\"id\":\"128\",\"fair_name_pl\":\"Warsaw Home & Contract\",\"fair_name_en\":\"Warsaw Home & Contract\",\"fair_desc_pl\":\"Mi\\u0119dzynarodowe Targi Kontraktowe Bran\\u017cy Wn\\u0119trzarskiej\",\"fair_desc_en\":\"International Contract Fair for Interior Design Industry\",\"fair_short_desc_pl\":\"Biznesowe Targi Wn\\u0119trz\",\"fair_short_desc_en\":\"Interior Design Trade Fair\",\"fair_full_desc_pl\":\"<strong>Warsaw Home & Contract<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce design, meble, armatur\\u0119 \\u0142azienkow\\u0105 i kuchenn\\u0105, ceramik\\u0119 sanitarn\\u0105 oraz materia\\u0142y wyko\\u0144czeniowe. Znajdziesz tu pod\\u0142ogi, ok\\u0142adziny \\u015bcienne, o\\u015bwietlenie, okna, drzwi, schody i bramy, kt\\u00f3re \\u0142\\u0105cz\\u0105 funkcjonalno\\u015b\\u0107, styl, innowacyjno\\u015b\\u0107 i najwy\\u017csz\\u0105 jako\\u015b\\u0107.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Poznaj nowoczesny design i rozwi\\u0105zania dla wyposa\\u017cenia wn\\u0119trz.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w z bran\\u017cy designu i materia\\u0142\\u00f3w wyko\\u0144czeniowych.\\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 Home & Contract<\\\/strong> is a key industry event presenting design, furniture, bathroom and kitchen fixtures, sanitary ceramics, and finishing materials. Discover flooring, wall coverings, lighting, windows, doors, stairs, and gates that combine functionality, style, innovation, and the highest quality craftsmanship.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover modern design and solutions for interior furnishings.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Join experts for insightful conferences on design and finishing materials.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2026\\\/10\\\/21\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2026\\\/10\\\/24\",\"fair_date_end_hour\":null,\"fair_edition\":\"10\",\"fair_visitors\":\"62076\",\"fair_exhibitors\":\"700\",\"fair_countries\":\"54\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2025\\\",\\\"fair_visitors_current\\\":\\\"67322\\\",\\\"fair_foreign_current\\\":\\\"7115\\\",\\\"fair_exhibitors_current\\\":\\\"763\\\",\\\"fair_countries_current\\\":\\\"43\\\",\\\"fair_area_current\\\":\\\"125000\\\",\\\"fair_year_previous\\\":\\\"2024\\\",\\\"fair_visitors_previous\\\":\\\"62076\\\",\\\"fair_foreign_previous\\\":\\\"6829\\\",\\\"fair_exhibitors_previous\\\":\\\"700\\\",\\\"fair_countries_previous\\\":\\\"38\\\",\\\"fair_area_previous\\\":\\\"125000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/warsawhomeexpo\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/warsawhome_official\\\/\",\"fair_linkedin\":\"https:\\\/\\\/pl.linkedin.com\\\/company\\\/warsaw-home\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/playlist?list=PL0uv62TZgbz9lzE8MiELjChgjCDV5lBS8\",\"fair_color_accent\":\"#092b50\",\"fair_color_main2\":\"#fbaf40\",\"fair_hall\":\"A3,A4\",\"fair_area\":\"125000\",\"fair_kw\":\"2052\",\"fair_badge\":\"home\",\"fair_domain\":\"warsawhome.eu\",\"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\\\":\\\"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},\\\"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\\\":\\\"10\\\"}}\",\"fair_group\":\"gr2\",\"category_pl\":\"Dom\",\"category_en\":\"Home\",\"konf_name\":\"Design Trends Congress\",\"konf_title_pl\":\"Mi\\u0119dzynarodowy Kongres Bran\\u017cy Wn\\u0119trzarskiej\",\"konf_title_en\":\"International Congress For The Interior Industry\",\"fair_kw_new\":null,\"fair_kw_old_arch\":\"2022-502;2023-631;2024-880;2025-1458;\",\"fair_kw_new_arch\":null,\"fair_entrance\":null},{\"id\":\"130\",\"fair_name_pl\":\"Warsaw Home Furniture\",\"fair_name_en\":\"Warsaw Home Furniture\",\"fair_desc_pl\":\"Mi\\u0119dzynarodowe Bran\\u017cowe Targi Meblarskie\",\"fair_desc_en\":\"International Furniture Industry Trade Fair\",\"fair_short_desc_pl\":\"Targi Meblarskie\",\"fair_short_desc_en\":\"Furniture Trade Fair\",\"fair_full_desc_pl\":\"<strong>Warsaw Home Furniture<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce meble do kuchni, salonu, sypialni, \\u0142azienki, biura oraz przestrzeni zewn\\u0119trznych. Znajdziesz tu meble designerskie, luksusowe, hotelowe i dzieci\\u0119ce, a tak\\u017ce akcesoria i dodatki, kt\\u00f3re \\u0142\\u0105cz\\u0105 funkcjonalno\\u015b\\u0107, innowacyjno\\u015b\\u0107 i wyj\\u0105tkowy styl w aran\\u017cacji wn\\u0119trz.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Poznaj najnowsze trendy w meblach dla wn\\u0119trz domowych i komercyjnych.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w z bran\\u017cy meblarskiej i designu wn\\u0119trz.\\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 Home Furniture<\\\/strong> is a key industry event presenting furniture for kitchens, living rooms, bedrooms, bathrooms, offices, and outdoor spaces. Discover designer, luxury, hotel, and children's furniture, as well as accessories and decorations that combine functionality, innovation, and unique style in interior design.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover the latest trends in furniture for residential and commercial interiors.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Join experts for insightful conferences on the furniture industry and interior design.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2026\\\/10\\\/21\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2026\\\/10\\\/24\",\"fair_date_end_hour\":null,\"fair_edition\":\"10\",\"fair_visitors\":\"62076\",\"fair_exhibitors\":\"700\",\"fair_countries\":\"54\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2025\\\",\\\"fair_visitors_current\\\":\\\"67322\\\",\\\"fair_foreign_current\\\":\\\"7115\\\",\\\"fair_exhibitors_current\\\":\\\"763\\\",\\\"fair_countries_current\\\":\\\"43\\\",\\\"fair_area_current\\\":\\\"125000\\\",\\\"fair_year_previous\\\":\\\"2024\\\",\\\"fair_visitors_previous\\\":\\\"62076\\\",\\\"fair_foreign_previous\\\":\\\"6829\\\",\\\"fair_exhibitors_previous\\\":\\\"700\\\",\\\"fair_countries_previous\\\":\\\"38\\\",\\\"fair_area_previous\\\":\\\"125000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/WarsawHomeFurniture\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/warsaw_home_furniture\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/warsaw-home\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/playlist?list=PL0uv62TZgbz95BOiLILtp1WO7cZPRX4h0\",\"fair_color_accent\":\"#1b2e56\",\"fair_color_main2\":\"#e66399\",\"fair_hall\":\"E\",\"fair_area\":\"125000\",\"fair_kw\":\"2052\",\"fair_badge\":\"homefurn\",\"fair_domain\":\"warsawhomefurniture.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\\\":\\\"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},\\\"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\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"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\\\":\\\"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\\\":\\\"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\\\":\\\"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\\\":\\\"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},\\\"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\\\":\\\"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\\\":\\\"22000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"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\\\":\\\"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-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\\\":\\\"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\\\":\\\"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},\\\"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\\\":\\\"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\\\":\\\"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},\\\"pozycjonowanie-wystawcy\\\":{\\\"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},\\\"artyku\\u0142-tworzony-przez-klienta\\\":{\\\"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},\\\"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\\\":\\\"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},\\\"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\":\"Design Trends Congress\",\"konf_title_pl\":\"Konferecja\",\"konf_title_en\":\"Conference\",\"fair_kw_new\":null,\"fair_kw_old_arch\":\"2024-880;2023-631;2025-2052;\",\"fair_kw_new_arch\":null,\"fair_entrance\":null},{\"id\":\"133\",\"fair_name_pl\":\"Warsaw Home Kitchen\",\"fair_name_en\":\"Warsaw Home Kitchen\",\"fair_desc_pl\":\"Mi\\u0119dzynarodowe Targi Wyposa\\u017cenia Kuchennego\",\"fair_desc_en\":\"International Trade Fair of Kitchen Equipment\",\"fair_short_desc_pl\":\"Targi Wyposa\\u017cenia Kuchennego\",\"fair_short_desc_en\":\"Kitchen Equipment Trade Fair\",\"fair_full_desc_pl\":\"<strong>Warsaw Home Kitchen<\\\/strong> to kluczowe wydarzenie bran\\u017cowe prezentuj\\u0105ce design kuchni, mebli, wyposa\\u017cenia, ceramiki i o\\u015bwietlenia. Odkryj inteligentne rozwi\\u0105zania kuchenne, systemy sterowania urz\\u0105dzeniami, sprz\\u0119t AGD, zastaw\\u0119 sto\\u0142ow\\u0105 i akcesoria, kt\\u00f3re \\u0142\\u0105cz\\u0105 nowoczesny design z funkcjonalno\\u015bci\\u0105 oraz zaawansowan\\u0105 technologi\\u0105 dla wsp\\u00f3\\u0142czesnych kuchni.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Odkryj innowacyjne rozwi\\u0105zania w projektowaniu i wyposa\\u017ceniu kuchni.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w z bran\\u017cy designu kuchni i technologii smart-kitchen.\\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 Home Kitchen<\\\/strong> is a key industry event showcasing kitchen design, furniture, fittings, ceramics, and lighting. Discover smart kitchen solutions, appliance control systems, household appliances, tableware, and accessories that combine modern design with functionality and advanced technology for contemporary kitchens.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover innovative solutions in kitchen design and equipment.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Join experts for insightful conferences on kitchen design and smart kitchen technologies.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2026\\\/10\\\/21\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2026\\\/10\\\/24\",\"fair_date_end_hour\":null,\"fair_edition\":\"10\",\"fair_visitors\":\"62076\",\"fair_exhibitors\":\"700\",\"fair_countries\":\"54\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2025\\\",\\\"fair_visitors_current\\\":\\\"67322\\\",\\\"fair_foreign_current\\\":\\\"7115\\\",\\\"fair_exhibitors_current\\\":\\\"763\\\",\\\"fair_countries_current\\\":\\\"43\\\",\\\"fair_area_current\\\":\\\"125000\\\",\\\"fair_year_previous\\\":\\\"2024\\\",\\\"fair_visitors_previous\\\":\\\"62076\\\",\\\"fair_foreign_previous\\\":\\\"6829\\\",\\\"fair_exhibitors_previous\\\":\\\"700\\\",\\\"fair_countries_previous\\\":\\\"38\\\",\\\"fair_area_previous\\\":\\\"125000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/WarsawHomeKitchen\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/home_kitchen_expo\\\/\",\"fair_linkedin\":null,\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/playlist?list=PL0uv62TZgbz-CvSjqf8cPxVlcwS067Z1G\",\"fair_color_accent\":\"#5b2e85\",\"fair_color_main2\":\"#e9af01\",\"fair_hall\":\"D\",\"fair_area\":\"125000\",\"fair_kw\":\"2052\",\"fair_badge\":\"kitchen\",\"fair_domain\":\"warsawhomekitchen.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\\\":\\\"\\\",\\\"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-na-wieczor\\\":{\\\"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\\\":\\\"1000\\\",\\\"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\\\":\\\"10\\\"}}\",\"fair_group\":\"gr2\",\"category_pl\":\"Dom\",\"category_en\":\"Home\",\"konf_name\":\"Design Trends Congress\",\"konf_title_pl\":\"Mi\\u0119dzynarodowe Konferencja Wyposa\\u017cenia Kuchennego\",\"konf_title_en\":\"International Conference of Kitchen Equipment\",\"fair_kw_new\":null,\"fair_kw_old_arch\":\"2024-880;2025-1458;2023-631;\",\"fair_kw_new_arch\":null,\"fair_entrance\":null},{\"id\":\"134\",\"fair_name_pl\":\"Warsaw Home Light\",\"fair_name_en\":\"Warsaw Home Light\",\"fair_desc_pl\":\"Mi\\u0119dzynarodowe Targi O\\u015bwietlenia\",\"fair_desc_en\":\"International Lighting Trade Fair\",\"fair_short_desc_pl\":\"Targi O\\u015bwietlenia\",\"fair_short_desc_en\":\"Lighting Trade Fair\",\"fair_full_desc_pl\":\"<strong>Warsaw Home Light<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce o\\u015bwietlenie wewn\\u0119trzne, zewn\\u0119trzne, dekoracyjne, artystyczne oraz komercyjne. Znajdziesz tu systemy automatyzacji, energooszcz\\u0119dne rozwi\\u0105zania, akcesoria i osprz\\u0119t, kt\\u00f3re \\u0142\\u0105cz\\u0105 nowoczesny design, technologi\\u0119 smart-home oraz funkcjonalno\\u015b\\u0107 w ka\\u017cdej przestrzeni.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Odkryj innowacyjne rozwi\\u0105zania w projektowaniu i sterowaniu o\\u015bwietleniem.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w z bran\\u017cy o\\u015bwietlenia i technologii smart-home.\\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 Home Light<\\\/strong> is a key industry event showcasing interior, exterior, decorative, artistic, and commercial lighting. Discover automation systems, energy-efficient solutions, accessories, and fittings that combine modern design, smart-home technology, and functionality to enhance lighting in every space.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover innovative solutions in lighting design and control.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Join experts for insightful conferences on lighting and smart home technologies.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2026\\\/10\\\/21\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2026\\\/10\\\/24\",\"fair_date_end_hour\":null,\"fair_edition\":\"10\",\"fair_visitors\":\"62076\",\"fair_exhibitors\":\"700\",\"fair_countries\":\"54\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2025\\\",\\\"fair_visitors_current\\\":\\\"67322\\\",\\\"fair_foreign_current\\\":\\\"7115\\\",\\\"fair_exhibitors_current\\\":\\\"763\\\",\\\"fair_countries_current\\\":\\\"43\\\",\\\"fair_area_current\\\":\\\"125000\\\",\\\"fair_year_previous\\\":\\\"2024\\\",\\\"fair_visitors_previous\\\":\\\"62076\\\",\\\"fair_foreign_previous\\\":\\\"6829\\\",\\\"fair_exhibitors_previous\\\":\\\"700\\\",\\\"fair_countries_previous\\\":\\\"38\\\",\\\"fair_area_previous\\\":\\\"125000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/WarsawHomeLight\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/home_light_expo\\\/\",\"fair_linkedin\":null,\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/playlist?list=PL0uv62TZgbz8HGxKqBa1mSrH2MXJj32Cp\",\"fair_color_accent\":\"#f7a60f\",\"fair_color_main2\":\"#0172ff\",\"fair_hall\":\"C1, C2\",\"fair_area\":\"125000\",\"fair_kw\":\"2052\",\"fair_badge\":\"light\",\"fair_domain\":\"warsawhomelight.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\\\":\\\"\\\",\\\"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-na-wieczor\\\":{\\\"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\\\":\\\"1000\\\",\\\"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\\\":\\\"10\\\"}}\",\"fair_group\":\"gr2\",\"category_pl\":\"Dom\",\"category_en\":\"Home\",\"konf_name\":\"Design Trends Congress\",\"konf_title_pl\":\"Konferencja\",\"konf_title_en\":\"Conference\",\"fair_kw_new\":null,\"fair_kw_old_arch\":\"2023-631;2025-1458;2024-880;\",\"fair_kw_new_arch\":null,\"fair_entrance\":null},{\"id\":\"135\",\"fair_name_pl\":\"Warsaw Home Textile\",\"fair_name_en\":\"Warsaw Home Textile\",\"fair_desc_pl\":\"Mi\\u0119dzynarodowe Targi Tkanin i Wzornictwa\",\"fair_desc_en\":\"International Trade Fair of Fabrics and Design\",\"fair_short_desc_pl\":\"Targi Tkanin i Wzornictwa\",\"fair_short_desc_en\":\"Fabrics and Design Trade Fair\",\"fair_full_desc_pl\":\"<strong>Warsaw Home Textile<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce tkaniny obiciowe, dekoracyjne, zas\\u0142ony, firany, dywany i wyk\\u0142adziny. Znajdziesz tu r\\u00f3wnie\\u017c tkaniny \\u015bcienne, akcesoria i dodatki, kt\\u00f3re \\u0142\\u0105cz\\u0105 estetyk\\u0119, funkcjonalno\\u015b\\u0107 i najwy\\u017csz\\u0105 jako\\u015b\\u0107, tworz\\u0105c inspiracje do wyj\\u0105tkowych i nowoczesnych aran\\u017cacji wn\\u0119trz.\\r\\n\\r\\n<br><br><strong>Tw&oacute;rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Poznaj innowacyjne rozwi\\u0105zania w \\u015bwiecie tekstyli\\u00f3w i dekoracji wn\\u0119trz.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach z ekspertami bran\\u017cy tekstyli\\u00f3w i designu wn\\u0119trz.\\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>Warsaw Home Textile<\\\/strong> is a key industry event showcasing upholstery fabrics, decorative textiles, curtains, drapes, carpets, and floor coverings. Discover wall fabrics, accessories, and decorative elements that combine aesthetics, functionality, and top quality to inspire unique and modern interior arrangements.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover innovative solutions in the world of textiles and interior decoration.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Join experts for insightful conferences on textiles and interior design.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2026\\\/10\\\/21\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2026\\\/10\\\/24\",\"fair_date_end_hour\":null,\"fair_edition\":\"10\",\"fair_visitors\":\"62076\",\"fair_exhibitors\":\"700\",\"fair_countries\":\"54\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2025\\\",\\\"fair_visitors_current\\\":\\\"67322\\\",\\\"fair_foreign_current\\\":\\\"7115\\\",\\\"fair_exhibitors_current\\\":\\\"763\\\",\\\"fair_countries_current\\\":\\\"43\\\",\\\"fair_area_current\\\":\\\"125000\\\",\\\"fair_year_previous\\\":\\\"2024\\\",\\\"fair_visitors_previous\\\":\\\"62076\\\",\\\"fair_foreign_previous\\\":\\\"6829\\\",\\\"fair_exhibitors_previous\\\":\\\"700\\\",\\\"fair_countries_previous\\\":\\\"38\\\",\\\"fair_area_previous\\\":\\\"125000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/WarsawHomeTextile\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/home.textile.expo\\\/\",\"fair_linkedin\":null,\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/playlist?list=PL0uv62TZgbz-xuMSdsaooa3-A8Trz7h_-\",\"fair_color_accent\":\"#0c8945\",\"fair_color_main2\":\"#7262a3\",\"fair_hall\":\"C3, C4\",\"fair_area\":\"125000\",\"fair_kw\":\"2052\",\"fair_badge\":\"hometextile\",\"fair_domain\":\"warsawhometextile.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\\\":\\\"\\\",\\\"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-na-wieczor\\\":{\\\"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\\\":\\\"1000\\\",\\\"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\\\":\\\"10\\\"}}\",\"fair_group\":\"gr2\",\"category_pl\":\"Dom, Tekstylia\",\"category_en\":\"Home, Textile\",\"konf_name\":\"Design Trends Congress\",\"konf_title_pl\":\"Konferencja\",\"konf_title_en\":\"Conference\",\"fair_kw_new\":null,\"fair_kw_old_arch\":\"2025-1458;2023-631;2024-880;\",\"fair_kw_new_arch\":null,\"fair_entrance\":null},{\"id\":\"138\",\"fair_name_pl\":\"Warsaw Industry Week\",\"fair_name_en\":\"Warsaw Industry Week\",\"fair_desc_pl\":\"Najwi\\u0119ksze Targi Przemys\\u0142owe w Polsce\",\"fair_desc_en\":\"The Largest Industrial Trade Fair in Poland\",\"fair_short_desc_pl\":\"Targi Przemys\\u0142owe\",\"fair_short_desc_en\":\"Industrial Trade Fair\",\"fair_full_desc_pl\":\"<strong>Warsaw Industry Week<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, gromadz\\u0105ce technologie przemys\\u0142owe i innowacje. Znajdziesz tu strefy obr\\u00f3bki metali, drewna, lakiernictwa, hydrauliki i pneumatyki, spawalnictwa, druku 3D, robotyki oraz oprogramowania wspieraj\\u0105cego automatyzacj\\u0119 i rozw\\u00f3j nowoczesnych proces\\u00f3w przemys\\u0142owych.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Poznaj najnowsze technologie i rozwi\\u0105zania dla przemys\\u0142u i automatyzacji.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w z bran\\u017cy przemys\\u0142owej i technologii automatyzacji.\\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 Industry Week<\\\/strong> is a key industry event bringing together industrial technologies and innovations. Discover zones for metal and wood processing, painting, hydraulics and pneumatics, welding, 3D printing, robotics, and software solutions that support automation and the advancement of modern industrial processes.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover the latest technologies and solutions for industry and automation.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Join experts for insightful conferences on the industrial sector and automation technologies.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2026\\\/11\\\/03\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2026\\\/11\\\/05\",\"fair_date_end_hour\":null,\"fair_edition\":\"10\",\"fair_visitors\":\"22271\",\"fair_exhibitors\":\"483\",\"fair_countries\":\"17\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2025\\\",\\\"fair_visitors_current\\\":\\\"25404\\\",\\\"fair_foreign_current\\\":\\\"2831\\\",\\\"fair_exhibitors_current\\\":\\\"524\\\",\\\"fair_countries_current\\\":\\\"42\\\",\\\"fair_area_current\\\":\\\"58000\\\",\\\"fair_year_previous\\\":\\\"2024\\\",\\\"fair_visitors_previous\\\":\\\"23271\\\",\\\"fair_foreign_previous\\\":\\\"809\\\",\\\"fair_exhibitors_previous\\\":\\\"483\\\",\\\"fair_countries_previous\\\":\\\"17\\\",\\\"fair_area_previous\\\":\\\"58000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/warsawindustryweek\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/warsaw_industry_week_expo\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/warsaw-industry-week\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/playlist?list=PL0uv62TZgbz8Rk7qI_EAY0VxAHfxsFa5L\",\"fair_color_accent\":\"#aa191a\",\"fair_color_main2\":\"#08a7aa\",\"fair_hall\":\"E, F\",\"fair_area\":\"58000\",\"fair_kw\":\"2084\",\"fair_badge\":\"wiw\",\"fair_domain\":\"industryweek.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\\\":\\\"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\\\":\\\"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},\\\"udostepnienie-publikacji\\\":{\\\"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},\\\"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\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"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\\\":\\\"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},\\\"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\\\":\\\"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\\\":\\\"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},\\\"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\\\":\\\"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\\\":\\\"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},\\\"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\\\":\\\"1100\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"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\\\":\\\"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},\\\"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\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"artyku\\u0142-tworzony-przez-klienta\\\":{\\\"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},\\\"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\\\":\\\"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},\\\"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\":\"Przemys\\u0142\",\"category_en\":\"Industry\",\"konf_name\":\"International Industry Conference\",\"konf_title_pl\":\"Mi\\u0119dzynarodowa Konferencja Bran\\u017cy Przemys\\u0142owej\",\"konf_title_en\":\"International Industrial Conference\",\"fair_kw_new\":\"17\",\"fair_kw_old_arch\":\"2026-84;2024-877;2023-648;2022-428;\",\"fair_kw_new_arch\":\"2025-17;\",\"fair_entrance\":null},{\"id\":\"150\",\"fair_name_pl\":\"Warsaw Motor Show\",\"fair_name_en\":\"Warsaw Motor Show\",\"fair_desc_pl\":\"Najwi\\u0119ksza Wystawa Samochodowa w Polsce\",\"fair_desc_en\":\"The Largest Car Exhibition in Poland\",\"fair_short_desc_pl\":\"Targi Motoryzacyjne\",\"fair_short_desc_en\":\"Automotive Trade Fair\",\"fair_full_desc_pl\":\"<strong>Warsaw Motor Show<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce samochody osobowe, e-mobilno\\u015b\\u0107, tuning, car-audio i wyposa\\u017cenie samochodowe. Znajdziesz tu symulatory, innowacje w motorsporcie, off-roadzie, akcesoria, kluby motoryzacyjne, wynajem samochod\\u00f3w oraz szkolenia kierowc\\u00f3w inspiruj\\u0105ce pasjonat\\u00f3w motoryzacji.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Odkryj innowacje w motoryzacji, e-mobilno\\u015bci i tuningu samochodowym.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> Poznaj najnowsze trendy w detailingowym, motorsporcie i akcesoriach motoryzacyjnych.\\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 Motor Show<\\\/strong> is a key industry event showcasing passenger cars, e-mobility, tuning, car audio, and automotive accessories. Discover simulators, innovations in motorsports, off-road equipment, accessories, automotive clubs, car rentals, and driver training programs that inspire and engage automotive enthusiasts.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover innovations in automotive, e-mobility, and car tuning.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Explore the latest trends in detailing, motorsports, and automotive accessories.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2026\\\/10\\\/09\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2026\\\/10\\\/11\",\"fair_date_end_hour\":null,\"fair_edition\":\"9\",\"fair_visitors\":\"82437\",\"fair_exhibitors\":\"184\",\"fair_countries\":\"17\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2025\\\",\\\"fair_visitors_current\\\":\\\"34184\\\",\\\"fair_foreign_current\\\":\\\"1267\\\",\\\"fair_exhibitors_current\\\":\\\"415\\\",\\\"fair_countries_current\\\":\\\"17\\\",\\\"fair_area_current\\\":\\\"70000\\\",\\\"fair_year_previous\\\":\\\"\\\",\\\"fair_visitors_previous\\\":\\\"\\\",\\\"fair_foreign_previous\\\":\\\"\\\",\\\"fair_exhibitors_previous\\\":\\\"\\\",\\\"fair_countries_previous\\\":\\\"\\\",\\\"fair_area_previous\\\":\\\"\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/warsawmotorshow\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/warsaw_motor_show_expo\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/warsawmotorshow\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/playlist?list=PL0uv62TZgbz_ZCxuz-W2P28tH5kUXss0T\",\"fair_color_accent\":\"#a8000c\",\"fair_color_main2\":\"#ffae00\",\"fair_hall\":\"D\",\"fair_area\":\"15000\",\"fair_kw\":\"2100\",\"fair_badge\":\"motorshow\",\"fair_domain\":\"warsawmotorshow.com\",\"fair_shop\":null,\"fair_group\":\"gr2\",\"category_pl\":\"Motoryzacja\",\"category_en\":\"Automotive\",\"konf_name\":null,\"konf_title_pl\":null,\"konf_title_en\":null,\"fair_kw_new\":null,\"fair_kw_old_arch\":\"2026-2100;2025-1526;2024-865;2023-687;\",\"fair_kw_new_arch\":null,\"fair_entrance\":null},{\"id\":\"166\",\"fair_name_pl\":\"Warsaw Tools & Hardware Show\",\"fair_name_en\":\"Warsaw Tools&Hardware Show\",\"fair_desc_pl\":\"Mi\\u0119dzynarodowe Targi Narz\\u0119dziowe i Prac Wyko\\u0144czeniowych\",\"fair_desc_en\":\"International Trade Fair for Tools and Finishing Works\",\"fair_short_desc_pl\":\"Targi Narz\\u0119dziowe i Prac Wyko\\u0144czeniowych\",\"fair_short_desc_en\":\"Tools and Finishing Work Trade Fair\",\"fair_full_desc_pl\":\"<strong>Warsaw Tools & Hardware Show<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, skupiaj\\u0105ce si\\u0119 na narz\\u0119dziach r\\u0119cznych, elektronarz\\u0119dziach, technice diamentowej i narz\\u0119dziach pneumatycznych. Znajdziesz tu r\\u00f3wnie\\u017c pi\\u0142y tarczowe, gwo\\u017adziarki, artyku\\u0142y \\u015bcierne i sprz\\u0119t pomiarowy, kt\\u00f3re wspieraj\\u0105 rozw\\u00f3j nowoczesnej bran\\u017cy narz\\u0119dziowej.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Poznaj najnowsze narz\\u0119dzia, technologie i akcesoria dla profesjonalist\\u00f3w.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w z bran\\u017cy narz\\u0119dziowej i technologii przemys\\u0142owych.\\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 Tools & Hardware Show<\\\/strong> Warsaw Tools & Hardware Show is a key industry event focused on hand tools, power tools, diamond technology, and pneumatic equipment. You will also find circular saws, nail guns, abrasives, and measuring instruments that support the advancement of the modern tool industry.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover the latest tools, technologies, and accessories for professionals.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Join experts for insightful conferences on the tools industry and industrial technologies.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2026\\\/11\\\/03\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2026\\\/11\\\/05\",\"fair_date_end_hour\":null,\"fair_edition\":\"6\",\"fair_visitors\":\"7098\",\"fair_exhibitors\":\"114\",\"fair_countries\":\"9\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2025\\\",\\\"fair_visitors_current\\\":\\\"9241\\\",\\\"fair_foreign_current\\\":\\\"762\\\",\\\"fair_exhibitors_current\\\":\\\"154\\\",\\\"fair_countries_current\\\":\\\"32\\\",\\\"fair_area_current\\\":\\\"20000\\\",\\\"fair_year_previous\\\":\\\"2024\\\",\\\"fair_visitors_previous\\\":\\\"7098\\\",\\\"fair_foreign_previous\\\":\\\"497\\\",\\\"fair_exhibitors_previous\\\":\\\"114\\\",\\\"fair_countries_previous\\\":\\\"9\\\",\\\"fair_area_previous\\\":\\\"15000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/Warsaw-Tools-Hardware-Show-1251651968330508\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/toolshardwareshow\\\/?hl=pl\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/tools-hardware-show\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/playlist?list=PL0uv62TZgbz-4fiwbWnx7rklSXh6G-ljh\",\"fair_color_accent\":\"#771d1d\",\"fair_color_main2\":\"#ec613a\",\"fair_hall\":\"D1\",\"fair_area\":\"15000\",\"fair_kw\":\"2071\",\"fair_badge\":\"constrtools\",\"fair_domain\":\"warsawtoolsshow.com\",\"fair_shop\":null,\"fair_group\":\"gr2\",\"category_pl\":\"Przemys\\u0142\",\"category_en\":\"Industry\",\"konf_name\":\"Tools & Finishing Technologies Conference\",\"konf_title_pl\":\"Konferencja Bran\\u017cy Narz\\u0119dzi I Prac Wyko\\u0144czeniowych\",\"konf_title_en\":\"Tools And Finishing Technologies Conference\",\"fair_kw_new\":null,\"fair_kw_old_arch\":\"2022-620;2023-665;2021-115;2025-1438;2024-937;\",\"fair_kw_new_arch\":null,\"fair_entrance\":null},{\"id\":\"168\",\"fair_name_pl\":\"TT Warsaw\",\"fair_name_en\":\"TT Warsaw\",\"fair_desc_pl\":\"Mi\\u0119dzynarodowe Targi Turystyczne\",\"fair_desc_en\":\"International Travel and Tourism Trade Fair\",\"fair_short_desc_pl\":\"Targi Turystyczne\",\"fair_short_desc_en\":\"Tourism Trade Fair\",\"fair_full_desc_pl\":\"<strong>TT Warsaw<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce biura podr\\u00f3\\u017cy, hotele, linie lotnicze i destynacje turystyczne. Znajdziesz tu atrakcje turystyczne, transport, technologie dla bran\\u017cy, ubezpieczenia, obiekty termalne oraz o\\u015brodki rehabilitacyjne, kt\\u00f3re wspieraj\\u0105 rozw\\u00f3j nowoczesnej i zr\\u00f3\\u017cnicowanej turystyki.\\r\\n\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Poznaj innowacyjne rozwi\\u0105zania i inspiracje w \\u015bwiecie turystyki.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w z bran\\u017cy turystycznej.\\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>TT Warsaw<\\\/strong> is a key industry event showcasing travel agencies, hotels, airlines, and tourist destinations. Here, you will find tourist attractions, transportation, industry technologies, insurance, thermal facilities, and rehabilitation centers that contribute to the development of modern and diverse tourism.\\r\\n\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover innovative solutions and inspirations in the world of tourism.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Join experts for insightful conferences on the tourism industry.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2026\\\/10\\\/08\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2026\\\/10\\\/11\",\"fair_date_end_hour\":null,\"fair_edition\":\"32\",\"fair_visitors\":\"21849\",\"fair_exhibitors\":\"208\",\"fair_countries\":\"56\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2024\\\",\\\"fair_visitors_current\\\":\\\"21849\\\",\\\"fair_foreign_current\\\":\\\"2203\\\",\\\"fair_exhibitors_current\\\":\\\"208\\\",\\\"fair_countries_current\\\":\\\"56\\\",\\\"fair_area_current\\\":\\\"15000\\\",\\\"fair_year_previous\\\":\\\"2023\\\",\\\"fair_visitors_previous\\\":\\\"21145\\\",\\\"fair_foreign_previous\\\":\\\"2132\\\",\\\"fair_exhibitors_previous\\\":\\\"198\\\",\\\"fair_countries_previous\\\":\\\"53\\\",\\\"fair_area_previous\\\":\\\"15000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/TTWarsawExpo\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/tt_warsaw\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/tt-warsaw\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/playlist?list=PL0uv62TZgbz_2PSh4sK1MqMylVIBigJcj\",\"fair_color_accent\":\"#233b6b\",\"fair_color_main2\":\"#ffb400\",\"fair_hall\":null,\"fair_area\":\"15000\",\"fair_kw\":\"2033\",\"fair_badge\":\"ttwarsaw\",\"fair_domain\":\"ttwarsaw.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\\\":\\\"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\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"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\\\":\\\"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},\\\"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\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"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\\\":\\\"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\\\":\\\"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\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"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\\\":\\\"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\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"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\\\":\\\"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},\\\"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\":\"Inne\",\"category_en\":\"Other\",\"konf_name\":\"Festival of Travellers\",\"konf_title_pl\":\"Festiwal podr\\u00f3\\u017cnik\\u00f3w\",\"konf_title_en\":\"Festival of Travellers\",\"fair_kw_new\":null,\"fair_kw_old_arch\":\"2022-576;2023-660;2024-909;2025-1553;2026-2033;\",\"fair_kw_new_arch\":null,\"fair_entrance\":null},{\"id\":\"169\",\"fair_name_pl\":\"Warsaw Home Build\",\"fair_name_en\":\"Warsaw Home Build\",\"fair_desc_pl\":\"Mi\\u0119dzynarodowe Targi Architektury i Materia\\u0142\\u00f3w Wyko\\u0144czeniowych\",\"fair_desc_en\":\"International Trade Fair for Building and Finishing Materials\",\"fair_short_desc_pl\":\"Targi Architektury i Materia\\u0142\\u00f3w Wyko\\u0144czeniowych\",\"fair_short_desc_en\":\"Architecture and Finishing Materials Trade Fair\",\"fair_full_desc_pl\":\"<strong>Warsaw Home Build<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce pod\\u0142ogi, \\u015bciany, sufity, drzwi, okna, schody, dachy, kominki i wyko\\u0144czenia zewn\\u0119trzne. Znajdziesz tu materia\\u0142y budowlane, chemi\\u0119 wyko\\u0144czeniow\\u0105, systemy wentylacji, sauny, baseny oraz innowacyjne rozwi\\u0105zania wspieraj\\u0105ce funkcjonalno\\u015b\\u0107 i estetyk\\u0119 budynk\\u00f3w.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Poznaj nowoczesne materia\\u0142y i rozwi\\u0105zania dla budownictwa i wyko\\u0144cze\\u0144.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w z bran\\u017cy budowlanej i materia\\u0142\\u00f3w wyko\\u0144czeniowych.\\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 Home Build<\\\/strong> is a key industry event showcasing floors, walls, ceilings, doors, windows, stairs, roofs, fireplaces, and exterior finishes. Discover building materials, finishing chemicals, ventilation systems, saunas, pools, and innovative solutions that enhance both the functionality and aesthetics of modern buildings.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover modern materials and solutions for construction and finishing.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Join experts for insightful conferences on the construction industry and finishing materials.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2026\\\/10\\\/21\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2026\\\/10\\\/24\",\"fair_date_end_hour\":null,\"fair_edition\":\"12\",\"fair_visitors\":\"62076\",\"fair_exhibitors\":\"700\",\"fair_countries\":\"54\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2025\\\",\\\"fair_visitors_current\\\":\\\"67322\\\",\\\"fair_foreign_current\\\":\\\"7115\\\",\\\"fair_exhibitors_current\\\":\\\"763\\\",\\\"fair_countries_current\\\":\\\"43\\\",\\\"fair_area_current\\\":\\\"125000\\\",\\\"fair_year_previous\\\":\\\"2024\\\",\\\"fair_visitors_previous\\\":\\\"62076\\\",\\\"fair_foreign_previous\\\":\\\"6829\\\",\\\"fair_exhibitors_previous\\\":\\\"700\\\",\\\"fair_countries_previous\\\":\\\"38\\\",\\\"fair_area_previous\\\":\\\"125000\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/warsawhomebuild\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/warsawbuild\\\/\",\"fair_linkedin\":null,\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/playlist?list=PL0uv62TZgbz-cqlrUmic_hi890KmaFkVh\",\"fair_color_accent\":\"#012e71\",\"fair_color_main2\":\"#f28e02\",\"fair_hall\":\"F1, F2\",\"fair_area\":\"125000\",\"fair_kw\":\"2052\",\"fair_badge\":\"build\",\"fair_domain\":\"warsawbuild.eu\",\"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\\\":\\\"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},\\\"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\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"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\\\":\\\"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\\\":\\\"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\\\":\\\"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\\\":\\\"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},\\\"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\\\":\\\"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\\\":\\\"22000\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"header-pl file-upload\\\":\\\"\\\",\\\"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\\\":\\\"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-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\\\":\\\"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\\\":\\\"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},\\\"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\\\":\\\"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\\\":\\\"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},\\\"pozycjonowanie-wystawcy\\\":{\\\"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},\\\"artyku\\u0142-tworzony-przez-klienta\\\":{\\\"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},\\\"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\\\":\\\"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},\\\"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, Dom\",\"category_en\":\"Construction, Home\",\"konf_name\":\"Design Trends Congress\",\"konf_title_pl\":\"Konferencja\",\"konf_title_en\":\"Conference\",\"fair_kw_new\":null,\"fair_kw_old_arch\":\"2025-1458;2024-880;2023-637;2022-502;\",\"fair_kw_new_arch\":null,\"fair_entrance\":null},{\"id\":\"211\",\"fair_name_pl\":\"Agro FARMA Expo\",\"fair_name_en\":\"Agro FARMA Expo\",\"fair_desc_pl\":\"Targi Technologii i Urz\\u0105dze\\u0144 dla Hodowli Zwierz\\u0105t Gospodarskich\",\"fair_desc_en\":\"Trade Fair of Technologies and Equipment for Livestock Breeding\",\"fair_short_desc_pl\":\"Targi Technologii dla Hodowli Zwierz\\u0105t Gospodarskich\",\"fair_short_desc_en\":\"Livestock Farming Technology Trade Fair\",\"fair_full_desc_pl\":\"<strong>Agro FARMA Expo<\\\/strong> to wydarzenie bran\\u017cowe, prezentuj\\u0105ce technologie hodowli zwierz\\u0105t, automatyzacj\\u0119, zarz\\u0105dzania stadem i przetw\\u00f3rstwa. Znajdziesz tu rozwi\\u0105zania wspieraj\\u0105ce efektywno\\u015b\\u0107 i zr\\u00f3wnowa\\u017cony rozw\\u00f3j, w tym pasze, leki weterynaryjne, technologie bioenergetyczne oraz ekologiczne.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Poznaj nowoczesne technologie i rozwi\\u0105zania dla hodowli zwierz\\u0105t.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach prowadzonych przez ekspert\\u00f3w z bran\\u017cy hodowlanej.\\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>Agro FARMA Expo<\\\/strong> is an industry event showcasing animal husbandry technologies, automation, herd management, and processing solutions. Here, you will find innovations that enhance efficiency and sustainability, including feed, veterinary medicines, bioenergy technologies, and eco-friendly solutions.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover modern technologies and solutions for animal husbandry.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Join industry experts for insightful conferences on livestock farming.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2026\\\/10\\\/06\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2026\\\/10\\\/08\",\"fair_date_end_hour\":null,\"fair_edition\":\"2\",\"fair_visitors\":\"5000\",\"fair_exhibitors\":\"70\",\"fair_countries\":\"12\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2025\\\",\\\"fair_visitors_current\\\":\\\"1693\\\",\\\"fair_foreign_current\\\":\\\"59\\\",\\\"fair_exhibitors_current\\\":\\\"51\\\",\\\"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\\\/agrofarmaexpo\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/agrofarma_expo\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/agro-farma-expo\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/@ptakwarsawexpo2557\\\/featured\",\"fair_color_accent\":\"#2b5f2f\",\"fair_color_main2\":\"#02ac83\",\"fair_hall\":\"A1, A2\",\"fair_area\":\"15000\",\"fair_kw\":\"2024\",\"fair_badge\":\"agrofarma\",\"fair_domain\":\"agrofarmaexpo.com\",\"fair_shop\":\"{\\\"products\\\":{\\\"smycze\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"prod_price_en\\\":\\\"\\\",\\\"prod_price_desc_en\\\":\\\"\\\",\\\"prod_image_text_pl\\\":\\\"\\\",\\\"prod_image_text_en\\\":\\\"\\\",\\\"sold_out\\\":false},\\\"bilet-na-wieczor\\\":{\\\"prod_price_pl\\\":\\\"\\\",\\\"prod_price_desc_pl\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\\\":\\\"\\\",\\\"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\":\"Inne\",\"category_en\":\"Other\",\"konf_name\":\"FarmTech Congress\",\"konf_title_pl\":\"Bran\\u017cowa Konferencja Technologii i Urz\\u0105dze\\u0144 dla Hodowli Zwierz\\u0105t Gospodarskich\",\"konf_title_en\":\"Industry Conference on Technology and Equipment for Livestock Breeding\",\"fair_kw_new\":null,\"fair_kw_old_arch\":\"2025-1523;\",\"fair_kw_new_arch\":null,\"fair_entrance\":null},{\"id\":\"212\",\"fair_name_pl\":\"VETERINARY Expo Poland\",\"fair_name_en\":\"Veterinary Expo Poland\",\"fair_desc_pl\":\"Targi Produkt\\u00f3w i Innowacji dla Medycyny Weterynaryjnej\",\"fair_desc_en\":\"Trade Fair of Products and Innovations for Veterinary Medicine\",\"fair_short_desc_pl\":\"Targi Produkt\\u00f3w dla Medycyny Weterynaryjnej\",\"fair_short_desc_en\":\"Veterinary Medicine Products Trade Fair\",\"fair_full_desc_pl\":\"<strong>VETERINARY Expo Poland<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce innowacje w weterynarii, diagnostyk\\u0119, farmacj\\u0119 oraz systemy zarz\\u0105dzania klinikami. Zaprezentowane zostan\\u0105 narz\\u0119dzia chirurgiczne, telemedycyna, rehabilitacja, higiena oraz dietetyka zwierz\\u0105t. \\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Znajdziesz tu najnowsze rozwi\\u0105zania w leczeniu, profilaktyce i zarz\\u0105dzaniu plac\\u00f3wkami weterynaryjnymi.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w z sektora weterynaryjnego.\\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>VETERINARY Expo Poland<\\\/strong> is a key industry event showcasing innovations in veterinary medicine, diagnostics, pharmaceuticals, and clinic management systems. Surgical instruments, telemedicine, rehabilitation, hygiene, and animal nutrition will be presented. \\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover the latest solutions in treatment, prevention, and veterinary facility management.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Participate in conferences with experts from the veterinary sector.\\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\":\"2026\\\/10\\\/06\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2026\\\/10\\\/08\",\"fair_date_end_hour\":null,\"fair_edition\":\"2\",\"fair_visitors\":\"5000\",\"fair_exhibitors\":\"70\",\"fair_countries\":\"12\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2025\\\",\\\"fair_visitors_current\\\":\\\"2739\\\",\\\"fair_foreign_current\\\":\\\"97\\\",\\\"fair_exhibitors_current\\\":\\\"65\\\",\\\"fair_countries_current\\\":\\\"19\\\",\\\"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\\\/veterinaryexpopoland\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/veterinary_expo\\\/pl\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/veterinary-expo-poland\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/@ptakwarsawexpo2557\\\/featured\",\"fair_color_accent\":\"#125288\",\"fair_color_main2\":\"#33cbc0\",\"fair_hall\":\"B2\",\"fair_area\":\"15000\",\"fair_kw\":\"2025\",\"fair_badge\":\"veterinary\",\"fair_domain\":\"veterinaryexpopoland.com\",\"fair_shop\":null,\"fair_group\":\"gr2\",\"category_pl\":\"Inne\",\"category_en\":\"Other\",\"konf_name\":\"VetMed Solutions Summit\",\"konf_title_pl\":\"Bran\\u017cowa Konferencja Produkt\\u00f3w i Innowacja dla Medycyny Weterynaryjnej\",\"konf_title_en\":\"Industry Conference on Products and Innovation for Veterinary Medicine\",\"fair_kw_new\":null,\"fair_kw_old_arch\":\"2025-1520;\",\"fair_kw_new_arch\":null,\"fair_entrance\":null},{\"id\":\"213\",\"fair_name_pl\":\"SOLIDS Expo Poland\",\"fair_name_en\":\"SOLIDS Expo Poland\",\"fair_desc_pl\":\"Targi Technologii Materia\\u0142\\u00f3w Sypkich\",\"fair_desc_en\":\"Trade Fair for Bulk Material Technology\",\"fair_short_desc_pl\":\"Targi Technologii Materia\\u0142\\u00f3w Sypkich\",\"fair_short_desc_en\":\"Bulk Materials Technology Trade Fair\",\"fair_full_desc_pl\":\"<strong>SOLIDS Expo Poland<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce rozwi\\u0105zania dla transportu, przechowywania i przetwarzania materia\\u0142\\u00f3w sypkich. Znajdziesz tu systemy dozowania, separacji, automatyzacji, analityki i pakowania, a tak\\u017ce innowacyjne technologie zabezpiecze\\u0144 i optymalizacji proces\\u00f3w przemys\\u0142owych.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Poznaj nowoczesne technologie dla transportu i przetwarzania materia\\u0142\\u00f3w sypkich.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w z bran\\u017cy materia\\u0142\\u00f3w sypkich i technologii przemys\\u0142owych.\\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>SOLIDS Expo Poland<\\\/strong> is a key industry event showcasing solutions for the transport, storage, and processing of bulk materials. Discover dosing, separation, automation, analytics, and packaging systems, as well as innovative technologies that enhance security and optimize processes in industrial operations.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover modern technologies for the transport and processing of bulk materials.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Join experts for insightful conferences on bulk materials and industrial technologies.\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2026\\\/11\\\/03\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2026\\\/11\\\/05\",\"fair_date_end_hour\":null,\"fair_edition\":\"2\",\"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\\\/SolidsExpoPoland\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/solids_expo\\\/\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/solids-expo-poland\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/@ptakwarsawexpo2557\\\/featured\",\"fair_color_accent\":\"#372451\",\"fair_color_main2\":\"#9b151c\",\"fair_hall\":\"C3,C4\",\"fair_area\":\"15000\",\"fair_kw\":\"2067\",\"fair_badge\":\"solidsexpo\",\"fair_domain\":\"solidsexpopoland.com\",\"fair_shop\":null,\"fair_group\":\"gr2\",\"category_pl\":\"Przemys\\u0142\",\"category_en\":\"Industry\",\"konf_name\":\"Solids Conference Day\",\"konf_title_pl\":\"Kongres technologii materia\\u0142\\u00f3w sypkich\",\"konf_title_en\":\"Congress of bulk materials technology\",\"fair_kw_new\":\"20\",\"fair_kw_old_arch\":\"2025-1543;\",\"fair_kw_new_arch\":null,\"fair_entrance\":null},{\"id\":\"247\",\"fair_name_pl\":\"Hotel Equipment Expo\",\"fair_name_en\":\"Hotel Equipment Expo\",\"fair_desc_pl\":\"Bran\\u017cowe Targi Wyposa\\u017cenia Hoteli I Rozwi\\u0105za\\u0144 Dla Hotelarstwa\",\"fair_desc_en\":\"Industry Trade Fair For Hotel Equipment And Hospitality Solutions\",\"fair_short_desc_pl\":\"Targi Wyposa\\u017cenia Hoteli\",\"fair_short_desc_en\":\"Hotel Equipment Trade Fair\",\"fair_full_desc_pl\":\"<strong>Hotel Equipment Expo<\\\/strong> to kluczowe wydarzenie bran\\u017cowe, prezentuj\\u0105ce wyposa\\u017cenie wn\\u0119trz hotelowych, technologie gastronomiczne, systemy zarz\\u0105dzania i automatyzacj\\u0119 obiekt\\u00f3w. Znajdziesz tu tak\\u017ce rozwi\\u0105zania wellness & spa, ekologi\\u0119 w hotelarstwie, finansowanie inwestycji oraz innowacje w eventach i zarz\\u0105dzaniu personelem.\\r\\n<br>\\r\\n<br>\\r\\n<strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Odkryj innowacyjne rozwi\\u0105zania w wyposa\\u017ceniu, technologii i zarz\\u0105dzaniu hotelami.\\r\\n<br>\\r\\n<br>\\r\\n<strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach ekspert\\u00f3w i poznaj trendy w nowoczesnym hotelarstwie.\\r\\n<br>\\r\\n<br>\\r\\n<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>Hotel Equipment Expo<\\\/strong> is a key industry event showcasing hotel interior furnishings, gastronomic technologies, management systems, and facility automation. You will also find wellness & spa solutions, sustainability in hospitality, investment financing, as well as innovations in events and staff management.\\r\\n<br>\\r\\n<br>\\r\\n<strong>Shape the future of the industry:<\\\/strong> Discover innovative solutions in equipment, technology, and hotel management.\\r\\n<br>\\r\\n<br>\\r\\n<strong>Gain knowledge:<\\\/strong> Attend expert conferences and explore trends in modern hospitality.\\r\\n<br>\\r\\n<br>\\r\\n<strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and gain a competitive market edge.\",\"fair_date_start\":\"2026\\\/10\\\/21\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2026\\\/10\\\/24\",\"fair_date_end_hour\":null,\"fair_edition\":\"2\",\"fair_visitors\":\"5000\",\"fair_exhibitors\":\"90\",\"fair_countries\":\"12\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2025\\\",\\\"fair_visitors_current\\\":\\\"4783\\\",\\\"fair_foreign_current\\\":\\\"471\\\",\\\"fair_exhibitors_current\\\":\\\"79\\\",\\\"fair_countries_current\\\":\\\"25\\\",\\\"fair_area_current\\\":\\\"15000\\\",\\\"fair_year_previous\\\":\\\"\\\",\\\"fair_visitors_previous\\\":\\\"\\\",\\\"fair_foreign_previous\\\":\\\"\\\",\\\"fair_exhibitors_previous\\\":\\\"\\\",\\\"fair_countries_previous\\\":\\\"\\\",\\\"fair_area_previous\\\":\\\"\\\"}\",\"fair_facebook\":\"https:\\\/\\\/www.facebook.com\\\/HotelEquipmentExpo\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/hotelequipmentexpo\\\/pl\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/hotel-equipment-expo\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/@ptakwarsawexpo2557\\\/featured\",\"fair_color_accent\":\"#1d2921\",\"fair_color_main2\":\"#9d7c3b\",\"fair_hall\":\"F1,F2\",\"fair_area\":\"15000\",\"fair_kw\":\"2040\",\"fair_badge\":\"hotelequip\",\"fair_domain\":\"hotelequipmentexpo.com\",\"fair_shop\":null,\"fair_group\":\"gr3\",\"category_pl\":\"Inne\",\"category_en\":\"Other\",\"konf_name\":\"Hotel Innovations Conference\",\"konf_title_pl\":\"Bran\\u017cowa Konferencja Wyposa\\u017cenia Hoteli i Rozwi\\u0105za\\u0144 dla Hotelarstwa\",\"konf_title_en\":\"Industry Conference on Hotel Equipment and Hospitality Solutions\",\"fair_kw_new\":null,\"fair_kw_old_arch\":\"2025-1717;\",\"fair_kw_new_arch\":null,\"fair_entrance\":null},{\"id\":\"255\",\"fair_name_pl\":\"PLASTECNICA Expo\",\"fair_name_en\":\"PLASTECNICA Expo\",\"fair_desc_pl\":\"Mi\\u0119dzynarodowe Targi Polimer\\u00f3w i Technologii dla Przetw\\u00f3rstwa Tworzyw Sztucznych\",\"fair_desc_en\":\"International Trade Fair for Polymers and Plastics Processing Technologies\",\"fair_short_desc_pl\":\"Targi Polimer\\u00f3w i Technologii Przetw\\u00f3rstwa\",\"fair_short_desc_en\":\"Trade Fair for Polymers and Processing Technologies\",\"fair_full_desc_pl\":\"<strong>PLASTECNICA Expo<\\\/strong> to bran\\u017cowe wydarzenie dedykowane najnowszym technologiom i rozwi\\u0105zaniom w przetw\\u00f3rstwie tworzyw sztucznych i polimer\\u00f3w. W\\u015br\\u00f3d prezentowanych technologii znajd\\u0105 si\\u0119 zaawansowane maszyny, systemy produkcyjne oraz technologie wspieraj\\u0105ce recykling i zr\\u00f3wnowa\\u017cony rozw\\u00f3j w gospodarce obiegu zamkni\\u0119tego.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 przetw\\u00f3rstwa tworzyw:<\\\/strong> Poznaj prze\\u0142omowe rozwi\\u0105zania dla bran\\u017cy polimer\\u00f3w, produkcji i recyklingu.\\r\\n\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w specjalistycznych konferencjach i panelach dyskusyjnych 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>PLASTECNICA Expo<\\\/strong> is a trade event dedicated to the latest technologies and solutions in plastics and polymer processing. The showcased technologies will include advanced machinery, production systems, and solutions supporting recycling and sustainable development within the circular economy.\\r\\n\\r\\n<br><br><strong>Shape the future of plastics processing:<\\\/strong> Discover breakthrough solutions for the polymer, manufacturing, and recycling industries.\\r\\n\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Take part in specialized conferences and discussion panels featuring industry experts.\\r\\n\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and strengthen your competitive advantage.\",\"fair_date_start\":\"2026\\\/11\\\/03\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2026\\\/11\\\/05\",\"fair_date_end_hour\":null,\"fair_edition\":\"1\",\"fair_visitors\":\"5000\",\"fair_exhibitors\":\"90\",\"fair_countries\":\"12\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"\\\",\\\"fair_visitors_current\\\":\\\"5000\\\",\\\"fair_foreign_current\\\":\\\"400\\\",\\\"fair_exhibitors_current\\\":\\\"90\\\",\\\"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\\\/PLASTECNICAExpo\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/plastecnica_expo\\\/pl\",\"fair_linkedin\":null,\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/@ptakwarsawexpo2557\\\/featured\",\"fair_color_accent\":\"#155b6b\",\"fair_color_main2\":\"#a3ba0f\",\"fair_hall\":\"A1\",\"fair_area\":\"15000\",\"fair_kw\":\"1617\",\"fair_badge\":\"plastecnica\",\"fair_domain\":\"plastecnicaexpo.com\",\"fair_shop\":null,\"fair_group\":\"gr1\",\"category_pl\":\"Przemys\\u0142\",\"category_en\":\"Industry\",\"konf_name\":\"SMART POLYMERS CONGRESS\",\"konf_title_pl\":\"Kongres Polimer\\u00f3w i Technologii Przetw\\u00f3rstwa Tworzyw Sztucznych\",\"konf_title_en\":\"Polymer and Plastics Processing Technology Congress\",\"fair_kw_new\":null,\"fair_kw_old_arch\":null,\"fair_kw_new_arch\":null,\"fair_entrance\":null},{\"id\":\"268\",\"fair_name_pl\":\"Horse Pro Forum\",\"fair_name_en\":\"Horse Pro Forum\",\"fair_desc_pl\":\"Targi i Konferencja Utrzymania Dobrostanu Koni oraz Wyposa\\u017cenia Stajni\",\"fair_desc_en\":\"Trade Fair and Conference on Horse Welfare Management and Stable Equipment\",\"fair_short_desc_pl\":\"Targi Dobrostanu Koni\",\"fair_short_desc_en\":\"Horse Welfare Trade Fair\",\"fair_full_desc_pl\":\"<strong>HORSE PRO FORUM<\\\/strong> to wiod\\u0105ce wydarzenie bran\\u017cowe po\\u015bwi\\u0119cone nowoczesnym rozwi\\u0105zaniom w utrzymaniu dobrostanu koni oraz zarz\\u0105dzaniu stajniami. Targi stanowi\\u0105 kompleksow\\u0105 platform\\u0119 prezentuj\\u0105c\\u0105 innowacje w opiece, \\u017cywieniu, weterynarii, higienie, wyposa\\u017ceniu stajni, systemach bezpiecze\\u0144stwa oraz zr\\u00f3wnowa\\u017conym rozwoju infrastruktury je\\u017adzieckiej.\\r\\n\\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy:<\\\/strong> Poznaj najnowsze technologie i rozwi\\u0105zania dla zdrowia, komfortu oraz efektywnego zarz\\u0105dzania ko\\u0144mi i stajniami.\\r\\n\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencjach i warsztatach prowadzonych przez ekspert\\u00f3w bran\\u017cy je\\u017adzieckiej.\\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>HORSE PRO FORUM<\\\/strong> is a leading industry event dedicated to modern solutions in horse welfare and stable management. The fair serves as a comprehensive platform showcasing innovations in care, nutrition, veterinary services, hygiene, stable equipment, safety systems, and sustainable development of equestrian infrastructure.\\r\\n\\r\\n<br><br><strong>Shape the future of the industry:<\\\/strong> Discover the latest technologies and solutions for horse health, comfort, and efficient stable management.\\r\\n\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Participate in conferences and workshops led by experts from the equestrian sector.\\r\\n\\r\\n<br><br><strong>Build connections:<\\\/strong> Meet industry leaders, establish valuable contacts, and enhance your competitive advantage in the market.\",\"fair_date_start\":\"2026\\\/10\\\/06\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2026\\\/10\\\/08\",\"fair_date_end_hour\":null,\"fair_edition\":\"2\",\"fair_visitors\":\"5000\",\"fair_exhibitors\":\"90\",\"fair_countries\":\"12\",\"estimations\":\"{\\\"fair_year_current\\\":\\\"2025\\\",\\\"fair_visitors_current\\\":\\\"2739\\\",\\\"fair_foreign_current\\\":\\\"97\\\",\\\"fair_exhibitors_current\\\":\\\"65\\\",\\\"fair_countries_current\\\":\\\"`19\\\",\\\"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\\\/horseproforum\\\/\",\"fair_instagram\":\"https:\\\/\\\/www.instagram.com\\\/horseproforum\\\/pl\",\"fair_linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/company\\\/horse-pro-forum\\\/\",\"fair_youtube\":\"https:\\\/\\\/www.youtube.com\\\/@ptakwarsawexpo2557\\\/featured\",\"fair_color_accent\":\"#5f5d53\",\"fair_color_main2\":\"#104442\",\"fair_hall\":\"B1\",\"fair_area\":\"15000\",\"fair_kw\":\"2025\",\"fair_badge\":\"horseproforum\",\"fair_domain\":\"horseproforum.com\",\"fair_shop\":null,\"fair_group\":\"gr2\",\"category_pl\":\"Inne\",\"category_en\":\"Other\",\"konf_name\":\"Horse Welfare Conference\",\"konf_title_pl\":\"Mi\\u0119dzynarodowa Konferencja Utrzymania Dobrostanu Koni\",\"konf_title_en\":\"International Conference on Horse Welfare Management\",\"fair_kw_new\":null,\"fair_kw_old_arch\":\"2025-1520;\",\"fair_kw_new_arch\":null,\"fair_entrance\":null},{\"id\":\"314\",\"fair_name_pl\":\"Autonomous Systems & Robotics Expo\",\"fair_name_en\":\"Autonomous Systems & Robotics Expo\",\"fair_desc_pl\":\"Mi\\u0119dzynarodowe targi technologii bezza\\u0142ogowych, robotyki mobilnej i pojazd\\u00f3w autonomicznych\",\"fair_desc_en\":\"International Trade Fair for Unmanned Technologies, Mobile Robotics and Autonomous Vehicles\",\"fair_short_desc_pl\":\"Targi Technologii Bezza\\u0142ogowych i Robotyki Mobilnej\",\"fair_short_desc_en\":\"Unmanned Technologies and Mobile Robotics\",\"fair_full_desc_pl\":\"<strong>Autonomous Systems & Robotics Expo<\\\/strong> to mi\\u0119dzynarodowe wydarzenie B2B po\\u015bwi\\u0119cone technologiom bezza\\u0142ogowym, robotyce mobilnej i pojazdom autonomicznym. Na targach znajdziesz roboty mobilne, AMR, AGV, coboty i roboty przemys\\u0142owe, pojazdy autonomiczne oraz bezza\\u0142ogowe platformy l\\u0105dowe, powietrzne i wodne, drony, UAV, UGV, USV, rozwi\\u0105zania dual-use, sensory, LiDAR, systemy wizyjne, kamery, edge computing i komponenty mechatroniczne. \\r\\n<br><br><strong>Tw\\u00f3rz przysz\\u0142o\\u015b\\u0107 bran\\u017cy: <\\\/strong> Poznaj innowacje w obszarze system\\u00f3w autonomicznych, robotyki mobilnej i pojazd\\u00f3w bezza\\u0142ogowych.\\r\\n<br><br><strong>Zdob\\u0105d\\u017a wiedz\\u0119:<\\\/strong> We\\u017a udzia\\u0142 w konferencji prowadzonej przez ekspert\\u00f3w z sektora robotyki i automatyki.\\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>Autonomous Systems & Robotics Expo<\\\/strong> is an international B2B event dedicated to unmanned technologies, mobile robotics and autonomous vehicles. At the fair you will find mobile robots, AMR, AGV, cobots and industrial robots, autonomous vehicles and unmanned land, air and water platforms, drones, UAV, UGV, USV, dual-use solutions, sensors, LiDAR, vision systems, cameras, edge computing and mechatronic components.\\r\\n<br><br><strong>Create the future of the industry: <\\\/strong> Discover innovations in the area of autonomous systems, mobile robotics and unmanned vehicles.\\r\\n<br><br><strong>Gain knowledge:<\\\/strong> Take part in a conference led by experts from the robotics and automation sector.\\r\\n<br><br><strong>Build relationships:<\\\/strong> Meet industry leaders, establish valuable contacts and increase your competitive advantage on the market.\",\"fair_date_start\":\"2026\\\/11\\\/03\",\"fair_date_start_hour\":null,\"fair_date_end\":\"2026\\\/11\\\/05\",\"fair_date_end_hour\":null,\"fair_edition\":\"1\",\"fair_visitors\":null,\"fair_exhibitors\":null,\"fair_countries\":null,\"estimations\":\"{\\\"fair_year_current\\\":\\\"\\\",\\\"fair_visitors_current\\\":\\\"5000\\\",\\\"fair_foreign_current\\\":\\\"550\\\",\\\"fair_exhibitors_current\\\":\\\"90\\\",\\\"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\":null,\"fair_instagram\":null,\"fair_linkedin\":null,\"fair_youtube\":null,\"fair_color_accent\":\"#7F95D1\",\"fair_color_main2\":\"#2c4e5c\",\"fair_hall\":\"B1\",\"fair_area\":null,\"fair_kw\":null,\"fair_badge\":\"autonomous\",\"fair_domain\":\"autonomoussystemsroboticsexpo.com\",\"fair_shop\":null,\"fair_group\":\"gr1\",\"category_pl\":\"Przemys\\u0142\",\"category_en\":\"Industry\",\"konf_name\":\"Intelligent Systems & Machine Summit\",\"konf_title_pl\":\"Konferencja technologii bezza\\u0142ogowych, robotyki mobilnej i pojazd\\u00f3w autonomicznych\",\"konf_title_en\":\"Conference for Unmanned Technologies, Mobile Robotics and Autonomous Vehicles\",\"fair_kw_new\":null,\"fair_kw_old_arch\":null,\"fair_kw_new_arch\":null,\"fair_entrance\":null}];\r\n                const get_database_logotypes_data = [{\"id\":\"2001\",\"fair_id\":\"247\",\"logos_url\":\"\\\/uploads\\\/domains\\\/hotelequipmentexpo-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-08-25 12:40:39\",\"created_at\":\"2025-05-22 11:54:02\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-targow\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w\\\", \\\"desc_en\\\": \\\"Fair Partner\\\"}\"},{\"id\":\"2002\",\"fair_id\":\"247\",\"logos_url\":\"\\\/uploads\\\/domains\\\/hotelequipmentexpo-com\\\/partners\\\/partner-targow\\\/\\u0141UKASIEWICZ_SIEC_BADAWCZA.webp\",\"logos_type\":\"partner-targow\",\"logos_order\":\"2\",\"logos_alt\":\"\\u0141UKASIEWICZ_SIEC_BADAWCZA\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-08-25 12:40:39\",\"created_at\":\"2025-05-22 11:54:02\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-targow\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w\\\", \\\"desc_en\\\": \\\"Fair Partner\\\"}\"},{\"id\":\"2003\",\"fair_id\":\"247\",\"logos_url\":\"\\\/uploads\\\/domains\\\/hotelequipmentexpo-com\\\/partners\\\/partner-targow\\\/Polish_chamber.webp\",\"logos_type\":\"partner-targow\",\"logos_order\":\"3\",\"logos_alt\":\"Polish_chamber\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-08-25 12:40:39\",\"created_at\":\"2025-05-22 11:54:02\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-targow\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w\\\", \\\"desc_en\\\": \\\"Fair Partner\\\"}\"},{\"id\":\"2005\",\"fair_id\":\"247\",\"logos_url\":\"\\\/uploads\\\/domains\\\/hotelequipmentexpo-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\":\"2025-08-25 12:40:39\",\"created_at\":\"2025-05-22 11:54:02\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-targow\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w\\\", \\\"desc_en\\\": \\\"Fair Partner\\\"}\"},{\"id\":\"4953\",\"fair_id\":\"247\",\"logos_url\":\"\\\/uploads\\\/domains\\\/hotelequipmentexpo-com\\\/partners\\\/partner-targow\\\/Nowy projekt (15).webp\",\"logos_type\":\"partner-targow\",\"logos_order\":\"5\",\"logos_alt\":\"HorecaLine_logo\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"klaudia.kust@warsawexpo.eu\",\"updated_at\":\"2025-08-25 12:40:50\",\"created_at\":\"2025-08-25 12:40:42\",\"meta_data\":\"{\\\"slug\\\": \\\"partner-targow\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w\\\", \\\"desc_en\\\": \\\"Fair Partner\\\"}\"},{\"id\":\"2006\",\"fair_id\":\"247\",\"logos_url\":\"\\\/uploads\\\/domains\\\/hotelequipmentexpo-com\\\/partners\\\/patron-medialny\\\/Hotelarz_logotyp.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"1\",\"logos_alt\":\"Hotelarz_logotyp\",\"logos_link\":\"https:\\\/\\\/www.e-hotelarz.pl\\\/\",\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-08-04 09:25:55\",\"created_at\":\"2025-05-22 11:54:09\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"2009\",\"fair_id\":\"247\",\"logos_url\":\"\\\/uploads\\\/domains\\\/hotelequipmentexpo-com\\\/partners\\\/patron-medialny\\\/majer media.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"2\",\"logos_alt\":\"Majer Media\",\"logos_link\":\"https:\\\/\\\/majermedia.com\\\/\",\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2026-05-21 09:39:19\",\"created_at\":\"2025-05-22 11:54:09\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"2014\",\"fair_id\":\"247\",\"logos_url\":\"\\\/uploads\\\/domains\\\/hotelequipmentexpo-com\\\/partners\\\/patron-medialny\\\/Restauracja_logotyp.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"3\",\"logos_alt\":\"Restauracja_logotyp\",\"logos_link\":\"https:\\\/\\\/e-restauracja.com\\\/\",\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2026-05-21 09:39:19\",\"created_at\":\"2025-05-22 11:54:09\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"2015\",\"fair_id\":\"247\",\"logos_url\":\"\\\/uploads\\\/domains\\\/hotelequipmentexpo-com\\\/partners\\\/patron-medialny\\\/wprost.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"5\",\"logos_alt\":\"Wprost\",\"logos_link\":\"https:\\\/\\\/www.wprost.pl\\\/\",\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2026-05-21 09:39:19\",\"created_at\":\"2025-05-22 11:54:10\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"4733\",\"fair_id\":\"247\",\"logos_url\":\"\\\/uploads\\\/domains\\\/hotelequipmentexpo-com\\\/partners\\\/patron-medialny\\\/Business Life_logo.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"4\",\"logos_alt\":\"Business Life_logo\",\"logos_link\":\"https:\\\/\\\/majermedia.com\\\/business-life-polska\\\/\",\"logos_exh_name\":null,\"data\":null,\"updated\":\"agata.olej@warsawexpo.eu\",\"updated_at\":\"2026-05-21 09:39:19\",\"created_at\":\"2025-08-04 09:36:08\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"9160\",\"fair_id\":\"247\",\"logos_url\":\"\\\/uploads\\\/domains\\\/hotelequipmentexpo-com\\\/partners\\\/patron-medialny\\\/TRAVEL.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"6\",\"logos_alt\":null,\"logos_link\":null,\"logos_exh_name\":null,\"data\":\"{\\\"logos_alt\\\":\\\"TRAVEL\\\",\\\"logos_alt_en\\\":\\\"TRAVEL\\\",\\\"logos_alt_de\\\":\\\"TRAVEL\\\",\\\"logos_pl_PL\\\":\\\"true\\\",\\\"logos_en_US\\\":\\\"true\\\",\\\"logos_de_DE\\\":\\\"true\\\"}\",\"updated\":\"kinga.rutkowska@warsawexpo.eu\",\"updated_at\":\"2026-05-21 09:39:19\",\"created_at\":\"2026-05-20 07:30:45\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"9163\",\"fair_id\":\"247\",\"logos_url\":\"\\\/uploads\\\/domains\\\/hotelequipmentexpo-com\\\/partners\\\/patron-medialny\\\/horeca_taste.webp\",\"logos_type\":\"patron-medialny\",\"logos_order\":\"7\",\"logos_alt\":null,\"logos_link\":null,\"logos_exh_name\":null,\"data\":\"{\\\"logos_alt\\\":\\\"Horeca_taste\\\",\\\"logos_alt_en\\\":\\\"Horeca_taste\\\",\\\"logos_alt_de\\\":\\\"Horeca_taste\\\",\\\"logos_pl_PL\\\":\\\"true\\\",\\\"logos_en_US\\\":\\\"true\\\",\\\"logos_de_DE\\\":\\\"true\\\"}\",\"updated\":\"kinga.rutkowska@warsawexpo.eu\",\"updated_at\":\"2026-05-21 09:39:19\",\"created_at\":\"2026-05-20 07:51:38\",\"meta_data\":\"{\\\"slug\\\": \\\"patron-medialny\\\", \\\"desc_pl\\\": \\\"Patron Medialny\\\", \\\"desc_en\\\": \\\"Media Patron\\\"}\"},{\"id\":\"1995\",\"fair_id\":\"247\",\"logos_url\":\"\\\/uploads\\\/domains\\\/hotelequipmentexpo-com\\\/partners\\\/europe-event\\\/HOST MILANO (Mediolan, W\\u0142ochy) - HOST MILANO (Milan, Italy).webp\",\"logos_type\":\"europe-event\",\"logos_order\":\"1\",\"logos_alt\":\"HOST MILANO (Mediolan, W\\u0142ochy) - HOST MILANO (Milan, Italy)\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-22 11:53:53\",\"created_at\":\"2025-05-22 11:53:53\",\"meta_data\":\"{\\\"slug\\\": \\\"europe-event\\\", \\\"desc_pl\\\": \\\"Wydarzenie Europa\\\", \\\"desc_en\\\": \\\"Europe Event\\\"}\"},{\"id\":\"1996\",\"fair_id\":\"247\",\"logos_url\":\"\\\/uploads\\\/domains\\\/hotelequipmentexpo-com\\\/partners\\\/europe-event\\\/Hotel Equipment Expo (Warszawa, Polska) - Hotel Equipment Expo (Warsaw, Poland).webp\",\"logos_type\":\"europe-event\",\"logos_order\":\"2\",\"logos_alt\":\"Hotel Equipment Expo (Warszawa, Polska) - Hotel Equipment Expo (Warsaw, Poland)\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-22 11:53:53\",\"created_at\":\"2025-05-22 11:53:53\",\"meta_data\":\"{\\\"slug\\\": \\\"europe-event\\\", \\\"desc_pl\\\": \\\"Wydarzenie Europa\\\", \\\"desc_en\\\": \\\"Europe Event\\\"}\"},{\"id\":\"1997\",\"fair_id\":\"247\",\"logos_url\":\"\\\/uploads\\\/domains\\\/hotelequipmentexpo-com\\\/partners\\\/europe-event\\\/INTER NORGA (Berlin, Niemcy) - INTER NORGA (Berlin, Germany).webp\",\"logos_type\":\"europe-event\",\"logos_order\":\"3\",\"logos_alt\":\"INTER NORGA (Berlin, Niemcy) - INTER NORGA (Berlin, Germany)\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-22 11:53:53\",\"created_at\":\"2025-05-22 11:53:53\",\"meta_data\":\"{\\\"slug\\\": \\\"europe-event\\\", \\\"desc_pl\\\": \\\"Wydarzenie Europa\\\", \\\"desc_en\\\": \\\"Europe Event\\\"}\"},{\"id\":\"1998\",\"fair_id\":\"247\",\"logos_url\":\"\\\/uploads\\\/domains\\\/hotelequipmentexpo-com\\\/partners\\\/europe-event\\\/ANUGA FOOFTEC (Kolonia, Niemcy) - ANUGA FOOFTEC (Cologne, Germany).webp\",\"logos_type\":\"europe-event\",\"logos_order\":\"4\",\"logos_alt\":\"ANUGA FOOFTEC (Kolonia, Niemcy) - ANUGA FOOFTEC (Cologne, Germany)\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-22 11:53:54\",\"created_at\":\"2025-05-22 11:53:54\",\"meta_data\":\"{\\\"slug\\\": \\\"europe-event\\\", \\\"desc_pl\\\": \\\"Wydarzenie Europa\\\", \\\"desc_en\\\": \\\"Europe Event\\\"}\"},{\"id\":\"1999\",\"fair_id\":\"247\",\"logos_url\":\"\\\/uploads\\\/domains\\\/hotelequipmentexpo-com\\\/partners\\\/europe-event\\\/EquipHotel Paris (Pary\\u017c, Francja) - EquipHotel Paris (Paris, France).webp\",\"logos_type\":\"europe-event\",\"logos_order\":\"5\",\"logos_alt\":\"EquipHotel Paris (Pary\\u017c, Francja) - EquipHotel Paris (Paris, France)\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-05-22 11:53:54\",\"created_at\":\"2025-05-22 11:53:54\",\"meta_data\":\"{\\\"slug\\\": \\\"europe-event\\\", \\\"desc_pl\\\": \\\"Wydarzenie Europa\\\", \\\"desc_en\\\": \\\"Europe Event\\\"}\"},{\"id\":\"5240\",\"fair_id\":\"247\",\"logos_url\":\"\\\/uploads\\\/domains\\\/hotelequipmentexpo-com\\\/partners\\\/header-partner-targow\\\/1_HorecaLine.webp\",\"logos_type\":\"header-partner-targow\",\"logos_order\":\"1\",\"logos_alt\":\"1_HorecaLine\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"jakub.chola@warsawexpo.eu\",\"updated_at\":\"2025-09-18 11:51:02\",\"created_at\":\"2025-09-18 11:51:02\",\"meta_data\":\"{\\\"slug\\\": \\\"header-partner-targow\\\", \\\"desc_pl\\\": \\\"Partner Targ\\u00f3w\\\", \\\"desc_en\\\": \\\"Fair Partner\\\"}\"},{\"id\":\"5603\",\"fair_id\":\"247\",\"logos_url\":\"\\\/uploads\\\/domains\\\/hotelequipmentexpo-com\\\/partners\\\/header-partner-merytoryczny\\\/Nowy projekt (53).webp\",\"logos_type\":\"header-partner-merytoryczny\",\"logos_order\":\"1\",\"logos_alt\":\"Nowy Projekt (53)\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-09-23 14:12:41\",\"created_at\":\"2025-09-23 14:12:41\",\"meta_data\":\"{\\\"slug\\\": \\\"header-partner-merytoryczny\\\", \\\"desc_pl\\\": \\\"Partner Merytoryczny\\\", \\\"desc_en\\\": \\\"Content Partner\\\"}\"},{\"id\":\"5794\",\"fair_id\":\"247\",\"logos_url\":\"\\\/uploads\\\/domains\\\/hotelequipmentexpo-com\\\/partners\\\/header-partner-merytoryczny\\\/logo IMS Sensory Media].webp\",\"logos_type\":\"header-partner-merytoryczny\",\"logos_order\":\"2\",\"logos_alt\":\"Logo IMS Sensory Media]\",\"logos_link\":null,\"logos_exh_name\":null,\"data\":null,\"updated\":\"natalia.kulik@warsawexpo.eu\",\"updated_at\":\"2025-10-13 07:52:00\",\"created_at\":\"2025-10-13 07:52:00\",\"meta_data\":\"{\\\"slug\\\": \\\"header-partner-merytoryczny\\\", \\\"desc_pl\\\": \\\"Partner Merytoryczny\\\", \\\"desc_en\\\": \\\"Content Partner\\\"}\"}];\r\n                const get_database_meta_data = [{\"id\":\"1\",\"slug\":\"euro_rate\",\"meta_data\":\"4.2352\",\"rights\":\"none\",\"updated\":\"NBP Api\",\"updated_at\":\"2026-05-25 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\\\/hotelequipmentexpo-com\\\/partners\\\/patron-medialny\\\/Hotelarz_logotyp.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/hotelequipmentexpo-com\\\/partners\\\/patron-medialny\\\/majer media.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/hotelequipmentexpo-com\\\/partners\\\/patron-medialny\\\/Restauracja_logotyp.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/hotelequipmentexpo-com\\\/partners\\\/patron-medialny\\\/wprost.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/hotelequipmentexpo-com\\\/partners\\\/patron-medialny\\\/Business Life_logo.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/hotelequipmentexpo-com\\\/partners\\\/patron-medialny\\\/TRAVEL.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"},{\"img\":\"https:\\\/\\\/cap.warsawexpo.eu\\\/public\\\/uploads\\\/domains\\\/hotelequipmentexpo-com\\\/partners\\\/patron-medialny\\\/horeca_taste.webp\",\"site\":\"\",\"class\":\"\",\"style\":\"\",\"target_blank\":\"\",\"folder_name\":\"Media Patron\",\"logotypes_name\":\"Media Patron\"}];\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 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; desktop_visibility=&#8221;yes&#8221; medium_visibility=&#8221;yes&#8221; mobile_visibility=&#8221;yes&#8221; uncode_shortcode_id=&#8221;165162&#8243; el_class=&#8221;opinions-slider&#8221; el_id=&#8221;rekomendacje&#8221;][vc_column column_width_percent=&#8221;100&#8243; gutter_size=&#8221;3&#8243; overlay_alpha=&#8221;50&#8243; shift_x=&#8221;0&#8243; shift_y=&#8221;0&#8243; shift_y_down=&#8221;0&#8243; z_index=&#8221;0&#8243; medium_width=&#8221;0&#8243; mobile_width=&#8221;0&#8243; width=&#8221;1\/1&#8243; uncode_shortcode_id=&#8221;305695&#8243;][vc_custom_heading heading_semantic=&#8221;h4&#8243; text_size=&#8221;h4&#8243; uncode_shortcode_id=&#8221;864064&#8243; el_class=&#8221;main-heading-text&#8221;]Speakers&#8217; comments[\/vc_custom_heading]<style><\/style><div id=\"info-speaker-61363\" class=\"info-speaker\">\r\n        <style>\r\n            #info-speaker-61363 {\r\n                text-align: center;\r\n                display: flex;\r\n                justify-content: center;\r\n                flex-wrap: wrap;\r\n                gap: 18px;\r\n            }\r\n            #info-speaker-61363 .pwe-speaker {\r\n                width: 150px !important;\r\n                min-width: 150px;\r\n                display: flex;\r\n                flex-direction: column;\r\n                text-align: center;\r\n                justify-content: space-between;\r\n                gap: 14px;\r\n            }\r\n            #info-speaker-61363 .pwe-speaker-name {\r\n                color: black;\r\n            }\r\n            #info-speaker-61363 .pwe-speaker-img {\r\n                width: 100%;\r\n                border-radius: 0;\r\n                margin: 0 auto;\r\n                aspect-ratio: 1\/1;\r\n                object-fit: cover;\r\n            }\r\n            #info-speaker-61363 .pwe-speaker-excerpt {\r\n                display: flex;\r\n                flex-direction: column;\r\n                gap: 14px;\r\n            }\r\n            #info-speaker-61363 .pwe-speaker-btn {\r\n                margin: 10px auto !important;\r\n                color: white;\r\n                background-color: #1d2921;\r\n                border: 1px solid #1d2921;\r\n                padding: 6px 16px;\r\n                font-weight: 600;\r\n                width: 80px;\r\n                border-radius: 10px;\r\n                transition: .3s ease;\r\n            }\r\n            #info-speaker-61363 .pwe-speaker-btn:hover {\r\n                color: white;\r\n                background-color: #09150d!important;\r\n                border: 1px solid #09150d!important;\r\n            }\r\n            #pweSpeakerModal-97235 {\r\n                position: fixed;\r\n                z-index: 9999;\r\n                left: 0;\r\n                top: 0;\r\n                width: 100%;\r\n                height: 100%;\r\n                overflow: hidden;\r\n                background-color: rgba(0, 0, 0, 0.7);\r\n                display: flex;\r\n                justify-content: center;\r\n                align-items: center;\r\n                visibility: hidden;\r\n                transition: opacity 0.3s, visibility 0.3s;\r\n            }\r\n            #pweSpeakerModal-97235 .pwe-speaker-modal-content {\r\n                position: relative;\r\n                background-color: #fefefe;\r\n                margin: 15% auto;\r\n                padding: 20px;\r\n                border: 1px solid #888;\r\n                border-radius: 20px;\r\n                overflow-y: auto;\r\n                width: 80%;\r\n                max-width: 700px;\r\n                max-height: 90%;\r\n                transition: transform 0.3s;\r\n                transform: scale(0);\r\n            }\r\n            #pweSpeakerModal-97235 .pwe-speaker-modal-close {\r\n                position: absolute;\r\n                right: 18px;\r\n                top: -6px;\r\n                color: #000;\r\n                float: right;\r\n                font-size: 50px;\r\n                font-weight: bold;\r\n                transition: transform 0.3s;\r\n                font-family: monospace;\r\n            }\r\n            #pweSpeakerModal-97235 .pwe-speaker-modal-close:hover,\r\n            #pweSpeakerModal-97235 .pwe-speaker-modal-close:focus {\r\n                color: black;\r\n                text-decoration: none;\r\n                cursor: pointer;\r\n                transform: scale(1.2);\r\n            }\r\n            #pweSpeakerModal-97235 .pwe-speaker-modal-title,\r\n            #pweSpeakerModal-97235 .pwe-speaker-modal-excerpt,\r\n            #pweSpeakerModal-97235 .pwe-speaker-modal-desc {\r\n                margin: 18px 0 0;\r\n            }\r\n            #pweSpeakerModal-97235 .pwe-speaker-modal-excerpt {\r\n                text-align: center;\r\n                max-width: 80%;\r\n            }\r\n            #pweSpeakerModal-97235.is-visible {\r\n                opacity: 1;\r\n                visibility: visible;\r\n            }\r\n            #pweSpeakerModal-97235.is-visible .pwe-speaker-modal-content {\r\n                transform: scale(1);\r\n            }\r\n            #pweSpeakerModal-97235.is-visible .pwe-speaker-modal-image {\r\n                border-radius: 10px;\r\n            }\r\n        <\/style>\r\n                <style>\r\n                        #PWESpeakersSlider-61923 {\r\n                                width: 100%;\r\n                                overflow: hidden;\r\n                                margin: 0 !important;\r\n                                -webkit-touch-callout: none; \r\n                                -webkit-user-select: none;\r\n                                -khtml-user-select: none;\r\n                                -moz-user-select: none; \r\n                                -ms-user-select: none; \r\n                                user-select: none;\r\n                                opacity: 0;\r\n                        }\r\n                        #PWESpeakersSlider-61923 .slides {\r\n                                display: flex;\r\n                                align-items: stretch;\r\n                                justify-content: space-between;\r\n                                margin: 0 !important;\r\n                                min-height: 0 !important;\r\n                                min-width: 0 !important;\r\n                                pointer-events: auto;\r\n                        }\r\n                        #PWESpeakersSlider-61923 .pwe-speaker {\r\n                                padding:0;\r\n                                object-fit: contain !important;\r\n                                flex: 1;\r\n                        }\r\n                        #PWESpeakersSlider-61923 .pwe-speaker :is(span, p, h2, h3, h4, h5) {\r\n                                margin: 0 !important;\r\n                        }\r\n                        #PWESpeakersSlider-61923 .pwe-speaker-container{\r\n                                margin: 5px !important;\r\n                                padding: 10px;\r\n                        }\r\n                        #PWESpeakersSlider-61923 .pwe-speaker-img {\r\n                                background-repeat: no-repeat;\r\n                                background-position: center;\r\n                                background-size: cover;\r\n                        }\r\n                        #PWESpeakersSlider-61923 .pwe-speaker-name {\r\n                                font-size: 24px;\r\n                                color: #1d2921;\r\n                        }\r\n                        #PWESpeakersSlider-61923 .pwe-speaker-excerpt {\r\n                                color: #1d2921;\r\n                        }\r\n                        @keyframes slideAnimation {\r\n                                from {\r\n                                        transform: translateX(100%);\r\n                                }\r\n                                to {\r\n                                        transform: translateX(0);\r\n                                }\r\n                        }\r\n                        #PWESpeakersSlider-61923 .slides .slide {\r\n                                animation: slideAnimation 0.5s ease-in-out;\r\n                        }\r\n                <\/style>\r\n                <div id=\"PWESpeakersSlider-61923\" class=\"pwe-speakers-slider\">\r\n                        <div class=\"slides\"><\/div>\r\n                        <style>\r\n                                #PWESpeakersSlider-61923 .dots-container {\r\n                                        display: none;\r\n                                        text-align: center;\r\n                                        margin-top: 18px !important;\r\n                                }\r\n                                #PWESpeakersSlider-61923 .dot {\r\n                                        display: inline-block;\r\n                                        width: 15px;\r\n                                        height: 15px;\r\n                                        border-radius: 50%;\r\n                                        background-color: #bbb;\r\n                                        margin: 0 5px;\r\n                                        cursor: pointer;\r\n                                }\r\n                                #PWESpeakersSlider-61923 .dot.active {\r\n                                        background-color: #1d2921;\r\n                                }   \r\n                        <\/style>\r\n                        <div class=\"dots-container\">\r\n                                <span class=\"dot active\"><\/span>\r\n                                <span class=\"dot\"><\/span>\r\n                                <span class=\"dot\"><\/span>\r\n                        <\/div><\/div>\r\n                <script>\r\n                        jQuery(function ($) {                         \r\n                                const slider = document.querySelector(\"#PWESpeakersSlider-61923\");\r\n                                const slides = slider.querySelector(\".slides\");\r\n                                const images = slides.querySelectorAll(\".pwe-speaker\");     \r\n                                \r\n                                const dotsContainer = slider.querySelector(\".dots-container\");\r\n                                const dots = slider.querySelectorAll(\".dots-container .dot\");\r\n\r\n                                let isMouseOver = false;\r\n                                let isDragging = false;\r\n                                \r\n                                let imagesMulti = \"\";\r\n                                const slidesWidth = slides.clientWidth;\r\n                                \r\n                                if (slidesWidth < 420) {\r\n                                        imagesMulti = 1;\r\n                                } else if (slidesWidth < 768) {\r\n                                        imagesMulti = 2;\r\n                                } else {\r\n                                        imagesMulti = 3;\r\n                                }\r\n                                \r\n                                if(imagesMulti >=  0){\r\n                                        $(\"#PWESpeakersSlider-61923 .slides\").each(function(){\r\n                                                $(this).css(\"justify-content\", \"center\");\r\n                                                if ($(this).children().length > 0){\r\n                                                        $(this).children().slice(0).remove();\r\n                                                };\r\n\r\n                                        });\r\n                                        const imageWidth = Math.floor((slidesWidth - imagesMulti * 10) \/ imagesMulti);\r\n                                        images.forEach((image) => {\r\n                                                image.style.maxWidth = imageWidth + \"px\";\r\n                                                image.style.minWidth = imageWidth + \"px\";\r\n                                        });\r\n                                } else {\r\n                                        const imageWidth = Math.floor((slidesWidth - imagesMulti * 10) \/ imagesMulti);\r\n                                        images.forEach((image) => {\r\n                                                image.style.minWidth = imageWidth + \"px\";\r\n                                                image.style.maxWidth = imageWidth + \"px\";\r\n                                        });\r\n                                        const slidesTransform =  (imageWidth + 10) * 0;\r\n\r\n                                        slides.style.transform = `translateX(-${slidesTransform}px)`;\r\n\r\n                                        if (dotsContainer) {\r\n                                                dotsContainer.style.display = \"block\";\r\n                                        }\r\n\r\n                                        function nextSlide() {\r\n                                                slides.querySelectorAll(\"#PWESpeakersSlider-61923 .pwe-speaker-container\").forEach(function(image){\r\n                                                        image.classList.add(\"slide\");\r\n                                                })\r\n\r\n                                                const firstSlide = slides.firstElementChild;\r\n                                                if (firstSlide) {\r\n                                                        firstSlide.classList.add(\"first-slide\");\r\n\r\n                                                        \/\/ Przesuwamy pierwszy slajd na koniec\r\n                                                        slides.appendChild(firstSlide);\r\n\r\n                                                        setTimeout(() => {\r\n                                                        firstSlide.classList.remove(\"first-slide\");\r\n                                                        }, 1500);\r\n                                                }\r\n\r\n                                                setTimeout(function() {\r\n                                                        slides.querySelectorAll(\"#PWESpeakersSlider-61923 .pwe-speaker-container\").forEach(function(image){\r\n                                                                image.classList.remove(\"slide\");\r\n                                                        })\r\n                                                }, 1500);\r\n\r\n                                                updateCurrentSlide(1);\r\n                                        }                       \r\n\r\n                                        slider.addEventListener(\"mousemove\", function() {\r\n                                                isMouseOver = true;\r\n                                        });\r\n                                        \r\n                                        slider.addEventListener(\"mouseleave\", function() {\r\n                                                isMouseOver = false;\r\n                                        });\r\n\r\n                                        let isDown = false;\r\n                                        let startX;\r\n                                        let startY;\r\n                                        let slideMove = 0;\r\n                                        let currentSlide = 0;\r\n\r\n                                        function updateDots() {\r\n                                                if (dots[currentSlide]) {\r\n                                                        dots.forEach(dot => dot.classList.remove(\"active\"));\r\n                                                        dots[currentSlide].classList.add(\"active\");\r\n                                                }\r\n                                        }\r\n\r\n                                        function updateCurrentSlide(delta) {\r\n                                                currentSlide = (currentSlide + delta + dots.length) % dots.length;\r\n                                                updateDots();\r\n                                        }\r\n\r\n                                        slider.addEventListener(\"mousedown\", (e) => {\r\n                                                isDown = true;\r\n                                                slider.classList.add(\"active\");\r\n                                                startX = e.pageX - slider.offsetLeft;\r\n                                        });\r\n\r\n                                        slider.addEventListener(\"mouseleave\", () => {\r\n                                                isDown = false;\r\n                                                slider.classList.remove(\"active\");\r\n                                                resetSlider(slideMove);\r\n                                                slideMove = 0;\r\n                                        });\r\n\r\n                                        slider.addEventListener(\"mouseup\", () => {\r\n                                                isDown = false;\r\n                                                slider.classList.remove(\"active\");\r\n                                                resetSlider(slideMove);\r\n                                                slideMove = 0;\r\n                                        });\r\n\r\n                                        slider.addEventListener(\"mousemove\", (e) => {\r\n                                                if (!isDown) return;\r\n                                                e.preventDefault();\r\n                                                let preventDefaultNextTime = true;\r\n\r\n                                                $(e.target).parent().on(\"click\", function(event) {\r\n                                                        if (preventDefaultNextTime) {\r\n                                                                event.preventDefault();\r\n                                                                preventDefaultNextTime = true;\r\n\r\n                                                                setTimeout(() => {\r\n                                                                        preventDefaultNextTime = false;\r\n                                                                }, 200);\r\n                                                        }\r\n                                                });\r\n                                                const x = e.pageX - slider.offsetLeft;\r\n                                                const walk = (x - startX);\r\n                                                const transformWalk = slidesTransform - walk;\r\n                                                slides.style.transform = `translateX(-${transformWalk}px)`;\r\n                                                slideMove = (walk \/ imageWidth);\r\n                                        });\r\n\r\n                                        \/\/ Kod obs\u0142uguj\u0105cy przesuwanie dotykiem na urz\u0105dzeniach mobilnych\r\n\r\n                                        slider.addEventListener(\"touchstart\", (e) => {\r\n                                                isDown = true;\r\n                                                slider.classList.add(\"active\");\r\n                                                startX = e.touches[0].pageX - slider.offsetLeft;\r\n                                                startY = e.touches[0].pageY;\r\n                                        });\r\n\r\n                                        slider.addEventListener(\"touchend\", () => {\r\n                                                isDown = false;\r\n                                                slider.classList.remove(\"active\");\r\n                                                resetSlider(slideMove);\r\n                                                slideMove = 0;\r\n                                        });\r\n\r\n                                        slider.addEventListener(\"touchmove\", (e) => {\r\n                                                if (!isDown) return;\r\n                                        \r\n                                                if (!e.cancelable) return; \/\/ Dodajemy ten warunek, aby unikn\u0105\u0107 b\u0142\u0119du\r\n                                        \r\n                                                const x = e.touches[0].pageX - slider.offsetLeft;\r\n                                                const y = e.touches[0].pageY;\r\n                                                const walk = (x - startX);\r\n                                                const verticalDiff = Math.abs(y - startY);\r\n                                        \r\n                                                if (Math.abs(walk) > verticalDiff) { \/\/ Tylko je\u015bli ruch poziomy jest wi\u0119kszy ni\u017c pionowy\r\n                                                        e.preventDefault();\r\n                                                        const transformWalk = slidesTransform - walk;\r\n                                                        slides.style.transform = `translateX(-${transformWalk}px)`;\r\n                                                        slideMove = (walk \/ imageWidth);\r\n                                                }\r\n                                        });\r\n                                        \r\n                                        const resetSlider = (slideWalk) => {\r\n                                                const slidesMove = Math.abs(Math.round(slideWalk));\r\n                                                for(i = 0; i < slidesMove; i++){\r\n                                                        if (slideWalk > 0) {\r\n                                                                const lastSlide = slides.lastElementChild;\r\n                                                                if (lastSlide) {\r\n                                                                        lastSlide.classList.add(\"last-slide\");\r\n                                                                        slides.insertBefore(lastSlide, slides.firstChild);\r\n                                                                        lastSlide.classList.remove(\"last-slide\");\r\n                                                                        \r\n                                                                        updateCurrentSlide(-1);\r\n                                                                        \r\n                                                                }\r\n                                                        } else {\r\n                                                                const firstSlide = slides.firstElementChild;\r\n                                                                if (firstSlide) {\r\n                                                                        firstSlide.classList.add(\"first-slide\");\r\n                                                                        slides.appendChild(firstSlide);\r\n                                                                        firstSlide.classList.remove(\"first-slide\");\r\n                                                                       \r\n                                                                        updateCurrentSlide(1);\r\n                                                                        \r\n                                                                }\r\n                                                        }\r\n                                                }\r\n                                                slides.style.transform = `translateX(-${slidesTransform}px)`;\r\n                                        }\r\n                                        setInterval(function() {\r\n                                                if(!isMouseOver) { \r\n                                                        nextSlide()\r\n                                                }\r\n                                        }, 3000);\r\n                                }\r\n\r\n                                if (slider) {\r\n                                        slider.style.opacity = 1;\r\n                                        slider.style.transition = \"opacity 0.3s ease\";\r\n                                }\r\n                        });                 \r\n                <\/script>\r\n            <script>\r\n                document.addEventListener(\"DOMContentLoaded\", function () {\r\n                    const speakers = document.querySelectorAll(\"#info-speaker-61363 .pwe-speaker\");\r\n                    \r\n                    speakers.forEach((speaker) => {\r\n                        const img = speaker.querySelector(\".pwe-speaker-img\");\r\n                        const name = speaker.querySelector(\".pwe-speaker-name\");\r\n                        const excerpt = speaker.querySelector(\".pwe-speaker-excerpt\");\r\n                        const desc = speaker.querySelector(\".pwe-speaker-desc\");\r\n                        const btn = speaker.querySelector(\".pwe-speaker-btn\");\r\n\r\n                        if (!desc || desc.textContent.trim() === \"\" && desc.children.length === 0) {\r\n                            speaker.style.justifyContent = \"flex-start\";\r\n                        }\r\n\r\n                        if (img && img.src == undefined) {\r\n                            const backgroundImage = window.getComputedStyle(img).getPropertyValue(\"background-image\");\r\n                            \/\/ Extracting the URL from the background-image value in the slider\r\n                            const urlMatch = backgroundImage.match(\/url\\(\\\"?(.*?)\\\"?\\)\/);\r\n                            const imageUrl = urlMatch ? urlMatch[1] : null;\r\n                            if (imageUrl) {\r\n                                img.src = imageUrl;\r\n                            }\r\n                        }\r\n                        \r\n                        if (btn) {\r\n                            btn.addEventListener(\"click\", function() {\r\n                                const modalDiv = document.createElement(\"div\");\r\n                                modalDiv.className = \"pwe-speaker-modal\";\r\n                                modalDiv.id = \"pweSpeakerModal-97235\";\r\n                                modalDiv.innerHTML = `\r\n                                    <div class=\"pwe-speaker-modal-content\" style=\"display:flex; flex-direction:column; align-items:center; padding:20px;\">\r\n                                        <span class=\"pwe-speaker-modal-close\">&times;<\/span>\r\n                                        <img decoding=\"async\" class=\"pwe-speaker-modal-image\" src=\"\" alt=\"Speaker Image\" style=\"width:100%; max-width:150px;\">\r\n                                        <h5 class=\"pwe-speaker-modal-title\">${name.innerHTML}<\/h5>\r\n                                        <div class=\"pwe-speaker-modal-desc\">${desc.innerHTML}<\/div>\r\n                                    <\/div>\r\n                                `;\r\n\r\n                                if (img) {\r\n                                    modalDiv.querySelector(\".pwe-speaker-modal-image\").src = img.src;\r\n                                } else {\r\n                                    modalDiv.querySelector(\".pwe-speaker-modal-image\").style.display = \"none\";\r\n                                }\r\n                                \r\n                                document.body.appendChild(modalDiv);\r\n                                requestAnimationFrame(() => {\r\n                                    modalDiv.classList.add(\"is-visible\");\r\n                                });\r\n                                disableScroll();\r\n\r\n                                \/\/ Close modal\r\n                                modalDiv.querySelector(\".pwe-speaker-modal-close\").addEventListener(\"click\", function() {\r\n                                    modalDiv.classList.remove(\"is-visible\");\r\n                                    setTimeout(() => {\r\n                                        modalDiv.remove();\r\n                                        enableScroll();\r\n                                    }, 300); \/\/ Czekaj na zako\u0144czenie animacji przed usuni\u0119ciem\r\n                                });\r\n\r\n                                modalDiv.addEventListener(\"click\", function(event) {\r\n                                    if (event.target === modalDiv) {\r\n                                        modalDiv.classList.remove(\"is-visible\");\r\n                                        setTimeout(() => {\r\n                                            modalDiv.remove();\r\n                                            enableScroll();\r\n                                        }, 300);\r\n                                    }\r\n                                });\r\n                            });\r\n                        }\r\n                    });\r\n                });\r\n\r\n                \/\/ Functions to turn scrolling off and on\r\n                function disableScroll() {\r\n                    document.body.style.overflow = \"hidden\";\r\n                    document.documentElement.style.overflow = \"hidden\";\r\n                }\r\n                function enableScroll() {\r\n                    document.body.style.overflow = \"\";\r\n                    document.documentElement.style.overflow = \"\";\r\n                }\r\n            <\/script>\r\n        <\/div>[\/vc_column][\/vc_row][vc_row][vc_column width=&#8221;1\/1&#8243;]<div class=\"pwelement pwelement_90209\">\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 #1d2921;\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_28125\">\r\n            <style>\r\n                .row-parent:has(.pwelement_28125 .pwe-container-conference-section) {\r\n                    max-width: 100% !important;\r\n                    padding: 0 !important;  \r\n                }\r\n                .pwelement_28125 .pwe-container-conference-section {\r\n                    position: relative;\r\n                    background-position: center;\r\n                }\r\n                .pwelement_28125 .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: #1d2921;\r\n                    opacity: 0.8;\r\n                    z-index: 0;\r\n                }\r\n                .pwelement_28125 .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_28125 .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_28125 .pwe-conference-section-logo {\r\n                    max-width: 400px;\r\n                }\r\n                .pwelement_28125 .pwe-conference-section-logo img {\r\n                    width: 100%;\r\n                }\r\n                .pwelement_28125 .pwe-btn-container {\r\n                    padding-top: 0 !important;\r\n                }\r\n                .pwelement_28125 .pwe-conference-section-btn .pwe-link {\r\n                    transform: none !important;\r\n                    color: white !important;\r\n                    background-color: #9d7c3b !important;\r\n                    border: 1px solid #9d7c3b !important;\r\n                }\r\n                .pwelement_28125 .pwe-conference-section-btn .pwe-link:hover {\r\n                    color: white !important;\r\n                    background-color: #896827 !important;\r\n                    border: 1px solid #896827 !important;\r\n                }\r\n                @media (max-width:960px){\r\n                    .pwelement_28125 .pwe-conference-section-columns {\r\n                        flex-direction: column;\r\n                        padding: 36px;\r\n                        gap: 36px;\r\n                    }\r\n                    .pwelement_28125 .pwe-conference-section-column {\r\n                        width: 100%;\r\n                        gap: 18px;\r\n                    }\r\n                    .pwelement_28125 .pwe-conference-logo-column,\r\n                    .pwelement_28125 .pwe-conference-section-logo {\r\n                        margin: 0 auto;\r\n                    }\r\n                }  \r\n            <\/style>\r\n                <style>\r\n                    .pwelement_28125 .pwe-conference-section-columns {\r\n                        padding: 36px;\r\n                    }\r\n                    .pwelement_28125 .pwe-conference-logo-column {\r\n                        align-items: center;\r\n                    }\r\n                    .pwelement_28125 .pwe-gallery-thumbs {\r\n                        display: flex;\r\n                        flex-direction: column;\r\n                        width: 100%;\r\n                    }\r\n                    .pwelement_28125 .pwe-gallery-desc-wrapper .pwe-btn-container,\r\n                    .pwelement_28125 .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_28125 .pwe-gallery-thumbs-top,\r\n                    .pwelement_28125 .pwe-gallery-thumbs-bottom {\r\n                        display: flex;\r\n                        flex-wrap: wrap;\r\n                        width: 100%;\r\n                    }\r\n                    .pwelement_28125 .pwe-gallery-thumbs-top img,\r\n                    .pwelement_28125 .pwe-gallery-thumbs-bottom img {\r\n                        width: 50%;\r\n                        padding: 5px;\r\n                        border-radius: 16px;\r\n                    }\r\n                    .pwelement_28125 .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":4,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-1261","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>Industry Conference on Hotel Equipment and Hospitality Solutions 2025 - Hotel Equipment Expo<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/hotelequipmentexpo.com\/en\/industry-conference-on-hotel-equipment-and-hospitality-solutions-2025\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Industry Conference on Hotel Equipment and Hospitality Solutions 2025 - Hotel Equipment Expo\" \/>\n<meta property=\"og:description\" content=\"[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;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hotelequipmentexpo.com\/en\/industry-conference-on-hotel-equipment-and-hospitality-solutions-2025\/\" \/>\n<meta property=\"og:site_name\" content=\"Hotel Equipment Expo\" \/>\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:\/\/hotelequipmentexpo.com\/en\/industry-conference-on-hotel-equipment-and-hospitality-solutions-2025\/\",\"url\":\"https:\/\/hotelequipmentexpo.com\/en\/industry-conference-on-hotel-equipment-and-hospitality-solutions-2025\/\",\"name\":\"Industry Conference on Hotel Equipment and Hospitality Solutions 2025 - Hotel Equipment Expo\",\"isPartOf\":{\"@id\":\"https:\/\/hotelequipmentexpo.com\/#website\"},\"datePublished\":\"2025-10-27T10:32:38+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/hotelequipmentexpo.com\/en\/industry-conference-on-hotel-equipment-and-hospitality-solutions-2025\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/hotelequipmentexpo.com\/en\/industry-conference-on-hotel-equipment-and-hospitality-solutions-2025\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/hotelequipmentexpo.com\/en\/industry-conference-on-hotel-equipment-and-hospitality-solutions-2025\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Strona g\u0142\u00f3wna\",\"item\":\"https:\/\/hotelequipmentexpo.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Industry Conference on Hotel Equipment and Hospitality Solutions 2025\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/hotelequipmentexpo.com\/#website\",\"url\":\"https:\/\/hotelequipmentexpo.com\/\",\"name\":\"Hotel Equipment Expo\",\"description\":\"Industry Trade Fair For Hotel Equipment And Hospitality Solutions\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/hotelequipmentexpo.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":"Industry Conference on Hotel Equipment and Hospitality Solutions 2025 - Hotel Equipment Expo","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:\/\/hotelequipmentexpo.com\/en\/industry-conference-on-hotel-equipment-and-hospitality-solutions-2025\/","og_locale":"en_US","og_type":"article","og_title":"Industry Conference on Hotel Equipment and Hospitality Solutions 2025 - Hotel Equipment Expo","og_description":"[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;]","og_url":"https:\/\/hotelequipmentexpo.com\/en\/industry-conference-on-hotel-equipment-and-hospitality-solutions-2025\/","og_site_name":"Hotel Equipment Expo","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/hotelequipmentexpo.com\/en\/industry-conference-on-hotel-equipment-and-hospitality-solutions-2025\/","url":"https:\/\/hotelequipmentexpo.com\/en\/industry-conference-on-hotel-equipment-and-hospitality-solutions-2025\/","name":"Industry Conference on Hotel Equipment and Hospitality Solutions 2025 - Hotel Equipment Expo","isPartOf":{"@id":"https:\/\/hotelequipmentexpo.com\/#website"},"datePublished":"2025-10-27T10:32:38+00:00","breadcrumb":{"@id":"https:\/\/hotelequipmentexpo.com\/en\/industry-conference-on-hotel-equipment-and-hospitality-solutions-2025\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hotelequipmentexpo.com\/en\/industry-conference-on-hotel-equipment-and-hospitality-solutions-2025\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/hotelequipmentexpo.com\/en\/industry-conference-on-hotel-equipment-and-hospitality-solutions-2025\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Strona g\u0142\u00f3wna","item":"https:\/\/hotelequipmentexpo.com\/en\/"},{"@type":"ListItem","position":2,"name":"Industry Conference on Hotel Equipment and Hospitality Solutions 2025"}]},{"@type":"WebSite","@id":"https:\/\/hotelequipmentexpo.com\/#website","url":"https:\/\/hotelequipmentexpo.com\/","name":"Hotel Equipment Expo","description":"Industry Trade Fair For Hotel Equipment And Hospitality Solutions","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hotelequipmentexpo.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/hotelequipmentexpo.com\/en\/wp-json\/wp\/v2\/pages\/1261","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hotelequipmentexpo.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/hotelequipmentexpo.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/hotelequipmentexpo.com\/en\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/hotelequipmentexpo.com\/en\/wp-json\/wp\/v2\/comments?post=1261"}],"version-history":[{"count":1,"href":"https:\/\/hotelequipmentexpo.com\/en\/wp-json\/wp\/v2\/pages\/1261\/revisions"}],"predecessor-version":[{"id":1262,"href":"https:\/\/hotelequipmentexpo.com\/en\/wp-json\/wp\/v2\/pages\/1261\/revisions\/1262"}],"wp:attachment":[{"href":"https:\/\/hotelequipmentexpo.com\/en\/wp-json\/wp\/v2\/media?parent=1261"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}