/*! elementor - v3.23.0 - 25-07-2024 */ /******/ (() => { // webpackBootstrap /******/ var __webpack_modules__ = ({ /***/ "../assets/dev/js/admin/new-template/behaviors/lock-pro.js": /*!*****************************************************************!*\ !*** ../assets/dev/js/admin/new-template/behaviors/lock-pro.js ***! \*****************************************************************/ /***/ ((__unused_webpack_module, exports, __webpack_require__) => { "use strict"; var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = void 0; var _classCallCheck2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ "../node_modules/@babel/runtime/helpers/classCallCheck.js")); var _createClass2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/createClass */ "../node_modules/@babel/runtime/helpers/createClass.js")); var LockPro = /*#__PURE__*/function () { function LockPro(elements) { (0, _classCallCheck2.default)(this, LockPro); this.elements = elements; } (0, _createClass2.default)(LockPro, [{ key: "bindEvents", value: function bindEvents() { var _this$elements = this.elements, form = _this$elements.form, templateType = _this$elements.templateType; form.addEventListener('submit', this.onFormSubmit.bind(this)); templateType.addEventListener('change', this.onTemplateTypeChange.bind(this)); // Force checking on render, to make sure that default values are also checked. this.onTemplateTypeChange(); } }, { key: "onFormSubmit", value: function onFormSubmit(e) { var lockOptions = this.getCurrentLockOptions(); if (lockOptions.is_locked) { e.preventDefault(); } } }, { key: "onTemplateTypeChange", value: function onTemplateTypeChange() { var lockOptions = this.getCurrentLockOptions(); if (lockOptions.is_locked) { this.lock(lockOptions); } else { this.unlock(); } } }, { key: "getCurrentLockOptions", value: function getCurrentLockOptions() { var templateType = this.elements.templateType, currentOption = templateType.options[templateType.selectedIndex]; return JSON.parse(currentOption.dataset.lock || '{}'); } }, { key: "lock", value: function lock(lockOptions) { this.showLockBadge(lockOptions.badge); this.showLockButton(lockOptions.button); this.hideSubmitButton(); } }, { key: "unlock", value: function unlock() { this.hideLockBadge(); this.hideLockButton(); this.showSubmitButton(); } }, { key: "showLockBadge", value: function showLockBadge(badgeConfig) { var _this$elements2 = this.elements, lockBadge = _this$elements2.lockBadge, lockBadgeText = _this$elements2.lockBadgeText, lockBadgeIcon = _this$elements2.lockBadgeIcon; lockBadgeText.innerText = badgeConfig.text; lockBadgeIcon.className = badgeConfig.icon; lockBadge.classList.remove('e-hidden'); } }, { key: "hideLockBadge", value: function hideLockBadge() { this.elements.lockBadge.classList.add('e-hidden'); } }, { key: "showLockButton", value: function showLockButton(buttonConfig) { var lockButton = this.elements.lockButton; lockButton.href = this.replaceLockLinkPlaceholders(buttonConfig.url); lockButton.innerText = buttonConfig.text; lockButton.classList.remove('e-hidden'); } }, { key: "hideLockButton", value: function hideLockButton() { this.elements.lockButton.classList.add('e-hidden'); } }, { key: "showSubmitButton", value: function showSubmitButton() { this.elements.submitButton.classList.remove('e-hidden'); } }, { key: "hideSubmitButton", value: function hideSubmitButton() { this.elements.submitButton.classList.add('e-hidden'); } }, { key: "replaceLockLinkPlaceholders", value: function replaceLockLinkPlaceholders(link) { return link.replace(/%%utm_source%%/g, 'wp-add-new').replace(/%%utm_medium%%/g, 'wp-dash'); } }]); return LockPro; }(); exports["default"] = LockPro; /***/ }), /***/ "../assets/dev/js/admin/new-template/layout.js": /*!*****************************************************!*\ !*** ../assets/dev/js/admin/new-template/layout.js ***! \*****************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { "use strict"; /* provided dependency */ var __ = __webpack_require__(/*! @wordpress/i18n */ "@wordpress/i18n")["__"]; var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); var _lockPro = _interopRequireDefault(__webpack_require__(/*! ./behaviors/lock-pro */ "../assets/dev/js/admin/new-template/behaviors/lock-pro.js")); var NewTemplateView = __webpack_require__(/*! elementor-admin/new-template/view */ "../assets/dev/js/admin/new-template/view.js"); module.exports = elementorModules.common.views.modal.Layout.extend({ getModalOptions: function getModalOptions() { return { id: 'elementor-new-template-modal' }; }, getLogoOptions: function getLogoOptions() { return { title: __('New Template', 'elementor') }; }, initialize: function initialize() { elementorModules.common.views.modal.Layout.prototype.initialize.apply(this, arguments); var lookupControlIdPrefix = 'elementor-new-template__form__'; var templateTypeSelectId = "".concat(lookupControlIdPrefix, "template-type"); this.showLogo(); this.showContentView(); this.initElements(); this.lockProBehavior = new _lockPro.default(this.elements); this.lockProBehavior.bindEvents(); var dynamicControlsVisibilityListener = function dynamicControlsVisibilityListener() { elementorAdmin.templateControls.setDynamicControlsVisibility(lookupControlIdPrefix, elementor_new_template_form_controls); }; this.getModal().onShow = function () { dynamicControlsVisibilityListener(); document.getElementById(templateTypeSelectId).addEventListener('change', dynamicControlsVisibilityListener); }; this.getModal().onHide = function () { document.getElementById(templateTypeSelectId).removeEventListener('change', dynamicControlsVisibilityListener); }; }, initElements: function initElements() { var container = this.$el[0], root = '#elementor-new-template__form'; this.elements = { form: container.querySelector(root), submitButton: container.querySelector("".concat(root, "__submit")), lockButton: container.querySelector("".concat(root, "__lock_button")), templateType: container.querySelector("".concat(root, "__template-type")), lockBadge: container.querySelector("".concat(root, "__template-type-badge")), lockBadgeText: container.querySelector("".concat(root, "__template-type-badge__text")), lockBadgeIcon: container.querySelector("".concat(root, "__template-type-badge__icon")) }; }, showContentView: function showContentView() { this.modalContent.show(new NewTemplateView()); } }); /***/ }), /***/ "../assets/dev/js/admin/new-template/view.js": /*!***************************************************!*\ !*** ../assets/dev/js/admin/new-template/view.js ***! \***************************************************/ /***/ ((module) => { "use strict"; module.exports = Marionette.ItemView.extend({ id: 'elementor-new-template-dialog-content', template: '#tmpl-elementor-new-template', ui: {}, events: {}, onRender: function onRender() {} }); /***/ }), /***/ "@wordpress/i18n": /*!**************************!*\ !*** external "wp.i18n" ***! \**************************/ /***/ ((module) => { "use strict"; module.exports = wp.i18n; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/classCallCheck.js": /*!****************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/classCallCheck.js ***! \****************************************************************/ /***/ ((module) => { function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } module.exports = _classCallCheck, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/createClass.js": /*!*************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/createClass.js ***! \*************************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { var toPropertyKey = __webpack_require__(/*! ./toPropertyKey.js */ "../node_modules/@babel/runtime/helpers/toPropertyKey.js"); function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, toPropertyKey(descriptor.key), descriptor); } } function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } module.exports = _createClass, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js": /*!***********************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/interopRequireDefault.js ***! \***********************************************************************/ /***/ ((module) => { function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } module.exports = _interopRequireDefault, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/toPrimitive.js": /*!*************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/toPrimitive.js ***! \*************************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { var _typeof = (__webpack_require__(/*! ./typeof.js */ "../node_modules/@babel/runtime/helpers/typeof.js")["default"]); function toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } module.exports = toPrimitive, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/toPropertyKey.js": /*!***************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/toPropertyKey.js ***! \***************************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { var _typeof = (__webpack_require__(/*! ./typeof.js */ "../node_modules/@babel/runtime/helpers/typeof.js")["default"]); var toPrimitive = __webpack_require__(/*! ./toPrimitive.js */ "../node_modules/@babel/runtime/helpers/toPrimitive.js"); function toPropertyKey(t) { var i = toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); } module.exports = toPropertyKey, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/typeof.js": /*!********************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/typeof.js ***! \********************************************************/ /***/ ((module) => { function _typeof(o) { "@babel/helpers - typeof"; return (module.exports = _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, module.exports.__esModule = true, module.exports["default"] = module.exports), _typeof(o); } module.exports = _typeof, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }) /******/ }); /************************************************************************/ /******/ // The module cache /******/ var __webpack_module_cache__ = {}; /******/ /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ // Check if module is in cache /******/ var cachedModule = __webpack_module_cache__[moduleId]; /******/ if (cachedModule !== undefined) { /******/ return cachedModule.exports; /******/ } /******/ // Create a new module (and put it into the cache) /******/ var module = __webpack_module_cache__[moduleId] = { /******/ // no module.id needed /******/ // no module.loaded needed /******/ exports: {} /******/ }; /******/ /******/ // Execute the module function /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__); /******/ /******/ // Return the exports of the module /******/ return module.exports; /******/ } /******/ /************************************************************************/ var __webpack_exports__ = {}; // This entry need to be wrapped in an IIFE because it need to be in strict mode. (() => { "use strict"; /*!***********************************************************!*\ !*** ../assets/dev/js/admin/new-template/new-template.js ***! \***********************************************************/ var NewTemplateLayout = __webpack_require__(/*! elementor-admin/new-template/layout */ "../assets/dev/js/admin/new-template/layout.js"); var NewTemplateModule = elementorModules.ViewModule.extend({ getDefaultSettings: function getDefaultSettings() { return { selectors: { addButton: '.page-title-action:first, #elementor-template-library-add-new' } }; }, getDefaultElements: function getDefaultElements() { var selectors = this.getSettings('selectors'); return { $addButton: jQuery(selectors.addButton) }; }, bindEvents: function bindEvents() { this.elements.$addButton.on('click', this.onAddButtonClick); elementorCommon.elements.$window.on('hashchange', this.showModalByHash.bind(this)); }, showModalByHash: function showModalByHash() { if ('#add_new' === location.hash) { this.layout.showModal(); location.hash = ''; } }, onInit: function onInit() { elementorModules.ViewModule.prototype.onInit.apply(this, arguments); this.layout = new NewTemplateLayout(); this.showModalByHash(); }, onAddButtonClick: function onAddButtonClick(event) { event.preventDefault(); this.layout.showModal(); } }); jQuery(function () { window.elementorNewTemplate = new NewTemplateModule(); }); })(); /******/ })() ; //# sourceMappingURL=new-template.js.map{"id":1032,"date":"2025-01-30T07:15:22","date_gmt":"2025-01-30T07:15:22","guid":{"rendered":"https:\/\/sicnunikheramzn.in\/?p=1032"},"modified":"2025-01-30T07:15:23","modified_gmt":"2025-01-30T07:15:23","slug":"schwalbe-wonders-mary-steering-wheel-review","status":"publish","type":"post","link":"https:\/\/sicnunikheramzn.in\/?p=1032","title":{"rendered":"Schwalbe Wonders Mary steering wheel review"},"content":{"rendered":"

Somehow, Pixels has usually managed to make all of us just like their selfies, whether or not they have tend to had its defects, and also the 9 Specialist XL’s results are rather great as well. That which we can come up with because the a minor ailment so it go out ‘s the slightly pixelated outline rendition, however it is more of an excellent niggle than a real flaw. Indeed, the fresh 10.5MP photos is as well outlined, as the ultrawide lens makes it possible for some extra exposure. Color is actually vibrant, epidermis colour are realistic, and you may dynamic assortment is very good. Honor’s earliest leading going to the west as it parted indicates which have Huawei is a great cellular telephone.<\/p>\n

As there are unexpected happy-gambler.com Click Here<\/a> flickering that appears a tad glitchy when videos enhancements is effective and you also score an alerts or alter the regularity. Having said that, i don’t experience any extreme bugs you to definitely hampered our very own ability to utilize the mobile phone to help you full impression. Results from all cams for the Honor Magic 4 Pro satisfied all of us.<\/p>\n

Display and you may sound system<\/h2>\n

Honor Secret 5 Professional movies possibilities best aside during the 4K 60fps however, simply allows capturing regarding the head and periscope zoom cams. Which does mean your make use of stone-good image stabilization to the each other contacts, but miss out on ultrawide capture. Color and you will coverage is as the brilliant and you may stunning as the cam\u2019s pictures, but there is certain grains within the lowest white. In addition managed to lead to a steady exchanging of your own fundamental and you can telephoto lenses in the event the cellular phone couldn\u2019t a bit determine the right one to your lighting standards. There is certainly an excellent nights setting for nightly video clips at the 1080p 24fps only regarding the chief lens, and beautification strain you to continue to work when firing in the 1080p.<\/p>\n

We grabbed a lot of Brutal photos on the cellular phone, and struggled in order to imitate the newest vibrant range and you will finesse of the images consumed automobile function rather than bracketing. The fresh phone’s cutting-edge handling is seen when considering images started the new selfie cam. You will see instances a lot more than of your own Wonders 5 Pro’s some optical focal lengths, and you will a 10x zoom try in order to train how good the newest electronic zoom supports in the a bright backyard environment.<\/p>\n

What is a good 5x Secret video slot?<\/h2>\n

\"online<\/p>\n

The brand new wide aperture lenses are most likely providing right here, to your detectors able to gather much more light, however, there\u2019s along with without doubt even more state-of-the-art computational wizardry to the display also. There\u2019s little in the form of lens flare \u2013 that can sometimes be an issue with the newest 7 Professional \u2013 while in standard, there\u2019s more outline to the reveal from images regarding the 8 Pro. Deciding on such specifications alone, there are a few fascinating differences when considering so it plus the older model \u2013 advancements to each other tools and app with AI status to your Pixel 8 Professional as the its very first launch.<\/p>\n

My Photos Equipment: The fresh Cams\/Drones\/Action Webcams I take advantage of Every day<\/h2>\n

Their fundamental competitors \u2013 Realme, OPPO, OnePlus and you will Xiaomi \u2013 are cramming 5000mAh from power supply within their flagships. With audio system on the each side of one’s display, the new Secret cuatro Specialist are noisy, and you may delivers apparently epic voice breakup for a phone, even though fails to out-carry out the iphone 3gs 13 Expert Max when it comes to depth. The silver screen try paired which have an encumbrance one to consist somewhere anywhere between a new iphone 13 Specialist and you will a great 13 Expert Maximum.<\/p>\n

Honor Wonders V2 opinion: Screen<\/h2>\n

Most other brands are beginning to use a comparable program inside their own gizmos, and also the power supply is actually an excellent smidgen bigger than that which we had the brand new V2 just last year. Even after these types of quibbles one cropped right up not often, total, the newest Magic cuatro Specialist brings an all-as much as steady, effortless, and you will fun application sense. And you may, naturally, you’ve got access to Google Enjoy Store, therefore no quibbles there. Honor’s additional some software thrives when compared to Huawei’s UI, particularly in the way of display screen-tuning optimisations. Which have a great spec listing which is to your currency, the fresh Award Wonders cuatro Pro’s Qualcomm Snapdragon 8 Gen 1 chip, 256GB shop and 8GB RAM, are nice for the demands of most modern mobile pages.<\/p>\n

\"casino<\/p>\n

You can expect a free personal website that provides free and you can enjoyable games to people worldwide. But really, considering the nature of these video game, you are doing must be at least 18 years old so you can both play our game. Most importantly, the newest Miracle cuatro Pro features access to Bing applications and also the Play Store.<\/p>\n

You earn a lot of detail and you will dynamic variety, that have soaked shade appear fantastic and great examine accounts. The device is unquestionably on the par on the S23+ as well as the Xiaomi 13 Specialist in this field, also it excels in various firing points. Switching to battery life, you’ll find a great 5100mAh battery pack underneath the bonnet, and the cell phone offers 66W wired billing, 50W wireless asking, and you can reverse wireless charging you. The good news is, Prize comes with an excellent 66W battery charger in the package, also it takes just below 18 times hitting a 50% costs. A complete costs requires 52 times, and even though it isn’t equally as fast because the wants away from the brand new Xiaomi 13 Specialist, they handily beats one thing by the Samsung and you may Google.<\/p>\n

They properties an excellent 5,270 mAh package, that’s very big, yet not the greatest We\u2019ve see. The newest Prize Wonders 7 Pro gets into a somewhat additional turn to their ancestor. They not any longer features noticable horizontal contours, and you may instead sports apartment, boxy top rail and complimentary shaped small contours on the front side and butt. The newest Operating-system and now comes with Community to look and contains Google Gemini because the standard voice secretary.<\/p>\n

Having otherwise instead these types of early-bird also provides, the brand new Miracle V3 nonetheless undercuts the new Galaxy Z Flex six, and therefore initiate at the \u00a31,799 ($1,899 \/ AU$dos,749) despite packing half of the fresh stores within its lowest-costs adaptation. Prize wishes $dos,2 hundred on the Wonders V3 should you choose the new conversion process, so it’s a bit more costly than simply their opposition. I have that it goes with that have an enjoyable framework one to won\u2019t be from-putting nonetheless it\u2019s a difficult bring in people cell phone at this price. I love you to Honor enables you to capture on the lens in the High-Res form, so that you obtain the full fifty-megapixel quality to utilize, allowing you to collect within the next when you are by using the great things about the newest built-inside the periscope. No matter what quality, low-light and you will night shots might not come out as the nice, even when I arrived out pleasantly surprised during the several of what i captured. Honor is even promising various AI features, as well as for images editing, if this launches him or her within the a great pending inform.<\/p>\n

\"best<\/p>\n

Which range makes abreast of the new Fenix 3HR produced a year ago, which founded on the brand new Fenix step 3 out of a year ahead of you to. Yet , they incorporates issues present in the fresh super-costly Fenix Chronos you to definitely showed up past summer (don\u2019t worry, one to products gets most of these condition also). I wish it got a haptic touchpad, plus it doesn\u2019t has a fast USB4 port. Nevertheless smartest thing are, it\u2019s entirely possible that your\u2019ll have the ability to use the IdeaPad 5x from the an amount greater offer for less than $700.<\/p>\n

The first is the genuine one to used in photos, which includes a 12MP detector. The second reason is some other ToF detector, utilized for portrait or any other effects and for unlocking the fresh cell phone thru face identification. Which Award Wonders cuatro Expert comment discovers it is a telephone worth our very own best Android os mobile phones from the U.K. In terms of software, Honor\u2019s mobile phones suffer with a similar plight in order to Xiaomi\u2019s. Each other producers stream big, swollen UIs with way too many extra applications to Google\u2019s Android. A more impressive and a lot more significant improve, yet not, is the battery pack.<\/p>\n

Any time you choose the Award Miracle V3?<\/h2>\n

Regarding the Video point, you\u2019ll discover the standard normal Movies setting, and also other alternatives such as Slow-motion, Date Lapse, and Pan (to have doing panning movies that have effortless stabilisation). In the primary Pictures function, if reduced light account are sensed, \u201cNights Attention\u201d will be turn on automatically. However, you may also activate it yourself \u2013 this can be useful in mixed lights issues. Just like to your 7 Pro, inside Nights Vision function, you will find additional options, along with Astrophotography, which can be used if you place the mobile phone to your a great constant surface or tripod. Professional function is actually utilized by scraping a symbol regarding the chief Pictures screen \u2013 through to doing and that, a set of changeable details looks.<\/p>\n","protected":false},"excerpt":{"rendered":"

Somehow, Pixels has usually managed to make all of us just like their selfies, whether or not they have tend to had its defects, and also the 9 Specialist XL’s results are rather great as well. That which we can come up with because the a minor ailment so it go out ‘s the slightly […]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[1],"tags":[],"class_list":["post-1032","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/sicnunikheramzn.in\/index.php?rest_route=\/wp\/v2\/posts\/1032","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sicnunikheramzn.in\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sicnunikheramzn.in\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sicnunikheramzn.in\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/sicnunikheramzn.in\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1032"}],"version-history":[{"count":1,"href":"https:\/\/sicnunikheramzn.in\/index.php?rest_route=\/wp\/v2\/posts\/1032\/revisions"}],"predecessor-version":[{"id":1033,"href":"https:\/\/sicnunikheramzn.in\/index.php?rest_route=\/wp\/v2\/posts\/1032\/revisions\/1033"}],"wp:attachment":[{"href":"https:\/\/sicnunikheramzn.in\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1032"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sicnunikheramzn.in\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1032"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sicnunikheramzn.in\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1032"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}