Поддержка Проблемы и решения обфусцированнsq код в файлах кэша

  • Добрый день! Помогите разобраться. Сканер Virusdie у хостинг провайдера обнаруживает Obfuscated.Globals в файлах кэша по пути /wp-content/cache/GjieZ5Rz4Pjdd_L35RA93qrqqOZooWqd8GlpXVvuEZU.php
    /wp-content/cache/GjieZ5Rz4Pjdd_L35RA93qrqqOZooWqd8GlpXVvuEZU.php.imports.serialize.txt
    Таких файлов несколько. Плагинов оптимизации кэша нет. WP security плагин отключил.

    <?php $GLOBALS['__jpv_dotWithArrayPrototype'] = function ($base) {
        $arrayPrototype = function ($base, $key) {
            if ($key === 'length') {
                return count($base);
            }
            if ($key === 'forEach') {
                return function ($callback, $userData = null) use (&$base) {
                    return array_walk($base, $callback, $userData);
                };
            }
            if ($key === 'map') {
                return function ($callback) use (&$base) {
                    return array_map($callback, $base);
                };
            }
            if ($key === 'filter') {
                return function ($callback, $flag = 0) use ($base) {
                    return func_num_args() === 1 ? array_filter($base, $callback) : array_filter($base, $callback, $flag);
                };
            }
            if ($key === 'pop') {
                return function () use (&$base) {
                    return array_pop($base);
                };
            }
            if ($key === 'shift') {
                return function () use (&$base) {
                    return array_shift($base);
                };
            }
            if ($key === 'push') {
                return function ($item) use (&$base) {
                    return array_push($base, $item);
                };
            }
            if ($key === 'unshift') {
                return function ($item) use (&$base) {
                    return array_unshift($base, $item);
                };
            }
            if ($key === 'indexOf') {
                return function ($item) use (&$base) {
                    $search = array_search($item, $base);
    
                    return $search === false ? -1 : $search;
                };
            }
            if ($key === 'slice') {
                return function ($offset, $length = null, $preserveKeys = false) use (&$base) {
                    return array_slice($base, $offset, $length, $preserveKeys);
                };
            }
            if ($key === 'splice') {
                return function ($offset, $length = null, $replacements = array()) use (&$base) {
                    return array_splice($base, $offset, $length, $replacements);
                };
            }
            if ($key === 'reverse') {
                return function () use (&$base) {
                    return array_reverse($base);
                };
            }
            if ($key === 'reduce') {
                return function ($callback, $initial = null) use (&$base) {
                    return array_reduce($base, $callback, $initial);
                };
            }
            if ($key === 'join') {
                return function ($glue) use (&$base) {
                    return implode($glue, $base);
                };
            }
            if ($key === 'sort') {
                return function ($callback = null) use (&$base) {
                    return $callback ? usort($base, $callback) : sort($base);
                };
            }
    
            return null;
        };
    
        $getFromArray = function ($base, $key) use ($arrayPrototype) {
            return isset($base[$key])
                ? $base[$key]
                : $arrayPrototype($base, $key);
        };
    
        $getCallable = function ($base, $key) use ($getFromArray) {
            if (is_callable(array($base, $key))) {
                return new class(array($base, $key)) extends \ArrayObject
                {
                    public function getValue()
                    {
                        if ($this->isArrayAccessible()) {
                            return $this[0][$this[1]];
                        }
    
                        return $this[0]->{$this[1]} ?? null;
                    }
    
                    public function setValue($value)
                    {
                        if ($this->isArrayAccessible()) {
                            $this[0][$this[1]] = $value;
    
                            return;
                        }
    
                        $this[0]->{$this[1]} = $value;
                    }
    
                    public function getCallable()
                    {
                        return $this->getArrayCopy();
                    }
    
                    public function __isset($name)
                    {
                        $value = $this->getValue();
    
                        if ((is_array($value) || $value instanceof ArrayAccess) && isset($value[$name])) {
                            return true;
                        }
    
                        return is_object($value) && isset($value->$name);
                    }
    
                    public function __get($name)
                    {
                        return new self(array($this->getValue(), $name));
                    }
    
                    public function __set($name, $value)
                    {
                        $value = $this->getValue();
    
                        if (is_array($value)) {
                            $value[$name] = $value;
                            $this->setValue($value);
    
                            return;
                        }
    
                        $value->$name = $value;
                    }
    
                    public function __toString()
                    {
                        return (string) $this->getValue();
                    }
    
                    public function __toBoolean()
                    {
                        $value = $this->getValue();
    
                        if (method_exists($value, '__toBoolean')) {
                            return $value->__toBoolean();
                        }
    
                        return !!$value;
                    }
    
                    public function __invoke(...$arguments)
                    {
                        return call_user_func_array($this->getCallable(), $arguments);
                    }
    
                    private function isArrayAccessible()
                    {
                        return is_array($this[0]) || $this[0] instanceof ArrayAccess && !isset($this[0]->{$this[1]});
                    }
                };
            }
            if ($base instanceof \ArrayAccess) {
                return $getFromArray($base, $key);
            }
        };
    
        $getRegExp = function ($value) {
            return is_object($value) && isset($value->isRegularExpression) && $value->isRegularExpression ? $value->regExp . $value->flags : null;
        };
    
        $fallbackDot = function ($base, $key) use ($getCallable, $getRegExp) {
            if (is_string($base)) {
                if (preg_match('/^[-+]?\d+$/', strval($key))) {
                    return substr($base, intval($key), 1);
                }
                if ($key === 'length') {
                    return strlen($base);
                }
                if ($key === 'substr' || $key === 'slice') {
                    return function ($start, $length = null) use ($base) {
                        return func_num_args() === 1 ? substr($base, $start) : substr($base, $start, $length);
                    };
                }
                if ($key === 'charAt') {
                    return function ($pos) use ($base) {
                        return substr($base, $pos, 1);
                    };
                }
                if ($key === 'indexOf') {
                    return function ($needle) use ($base) {
                        $pos = strpos($base, $needle);
    
                        return $pos === false ? -1 : $pos;
                    };
                }
                if ($key === 'toUpperCase') {
                    return function () use ($base) {
                        return strtoupper($base);
                    };
                }
                if ($key === 'toLowerCase') {
                    return function () use ($base) {
                        return strtolower($base);
                    };
                }
                if ($key === 'match') {
                    return function ($search) use ($base, $getRegExp) {
                        $regExp = $getRegExp($search);
                        $search = $regExp ? $regExp : (is_string($search) ? '/' . preg_quote($search, '/') . '/' : strval($search));
    
                        return preg_match($search, $base);
                    };
                }
                if ($key === 'split') {
                    return function ($delimiter) use ($base, $getRegExp) {
                        if ($regExp = $getRegExp($delimiter)) {
                            return preg_split($regExp, $base);
                        }
    
                        return explode($delimiter, $base);
                    };
                }
                if ($key === 'replace') {
                    return function ($from, $to) use ($base, $getRegExp) {
                        if ($regExp = $getRegExp($from)) {
                            return preg_replace($regExp, $to, $base);
                        }
    
                        return str_replace($from, $to, $base);
                    };
                }
            }
    
            return $getCallable($base, $key);
        };
    
        foreach (array_slice(func_get_args(), 1) as $key) {
            $base = is_array($base)
                ? $getFromArray($base, $key)
                : (is_object($base)
                    ? (isset($base->$key)
                        ? $base->$key
                        : (method_exists($base, $method = "get" . ucfirst($key))
                            ? $base->$method()
                            : (method_exists($base, $key)
                                ? array($base, $key)
                                : $getCallable($base, $key)
                            )
                        )
                    )
                    : $fallbackDot($base, $key)
                );
        }
    
        return $base;
    };;
    $GLOBALS['__jpv_dotWithArrayPrototype_with_ref'] = function (&$base) {
        $arrayPrototype = function (&$base, $key) {
            if ($key === 'length') {
                return count($base);
            }
            if ($key === 'forEach') {
                return function ($callback, $userData = null) use (&$base) {
                    return array_walk($base, $callback, $userData);
                };
            }
            if ($key === 'map') {
                return function ($callback) use (&$base) {
                    return array_map($callback, $base);
                };
            }
            if ($key === 'filter') {
                return function ($callback, $flag = 0) use ($base) {
                    return func_num_args() === 1 ? array_filter($base, $callback) : array_filter($base, $callback, $flag);
                };
            }
            if ($key === 'pop') {
                return function () use (&$base) {
                    return array_pop($base);
                };
            }
            if ($key === 'shift') {
                return function () use (&$base) {
                    return array_shift($base);
                };
            }
            if ($key === 'push') {
                return function ($item) use (&$base) {
                    return array_push($base, $item);
                };
            }
            if ($key === 'unshift') {
                return function ($item) use (&$base) {
                    return array_unshift($base, $item);
                };
            }
            if ($key === 'indexOf') {
                return function ($item) use (&$base) {
                    $search = array_search($item, $base);
    
                    return $search === false ? -1 : $search;
                };
            }
            if ($key === 'slice') {
                return function ($offset, $length = null, $preserveKeys = false) use (&$base) {
                    return array_slice($base, $offset, $length, $preserveKeys);
                };
            }
            if ($key === 'splice') {
                return function ($offset, $length = null, $replacements = array()) use (&$base) {
                    return array_splice($base, $offset, $length, $replacements);
                };
            }
            if ($key === 'reverse') {
                return function () use (&$base) {
                    return array_reverse($base);
                };
            }
            if ($key === 'reduce') {
                return function ($callback, $initial = null) use (&$base) {
                    return array_reduce($base, $callback, $initial);
                };
            }
            if ($key === 'join') {
                return function ($glue) use (&$base) {
                    return implode($glue, $base);
                };
            }
            if ($key === 'sort') {
                return function ($callback = null) use (&$base) {
                    return $callback ? usort($base, $callback) : sort($base);
                };
            }
    
            return null;
        };
    
        $getFromArray = function (&$base, $key) use ($arrayPrototype) {
            return isset($base[$key])
                ? $base[$key]
                : $arrayPrototype($base, $key);
        };
    
        $getCallable = function (&$base, $key) use ($getFromArray) {
            if (is_callable(array($base, $key))) {
                return new class(array($base, $key)) extends \ArrayObject
                {
                    public function getValue()
                    {
                        if ($this->isArrayAccessible()) {
                            return $this[0][$this[1]];
                        }
    
                        return $this[0]->{$this[1]} ?? null;
                    }
    
                    public function setValue($value)
                    {
                        if ($this->isArrayAccessible()) {
                            $this[0][$this[1]] = $value;
    
                            return;
                        }
    
                        $this[0]->{$this[1]} = $value;
                    }
    
                    public function getCallable()
                    {
                        return $this->getArrayCopy();
                    }
    
                    public function __isset($name)
                    {
                        $value = $this->getValue();
    
                        if ((is_array($value) || $value instanceof ArrayAccess) && isset($value[$name])) {
                            return true;
                        }
    
                        return is_object($value) && isset($value->$name);
                    }
    
                    public function __get($name)
                    {
                        return new self(array($this->getValue(), $name));
                    }
    
                    public function __set($name, $value)
                    {
                        $value = $this->getValue();
    
                        if (is_array($value)) {
                            $value[$name] = $value;
                            $this->setValue($value);
    
                            return;
                        }
    
                        $value->$name = $value;
                    }
    
                    public function __toString()
                    {
                        return (string) $this->getValue();
                    }
    
                    public function __toBoolean()
                    {
                        $value = $this->getValue();
    
                        if (method_exists($value, '__toBoolean')) {
                            return $value->__toBoolean();
                        }
    
                        return !!$value;
                    }
    
                    public function __invoke(...$arguments)
                    {
                        return call_user_func_array($this->getCallable(), $arguments);
                    }
    
                    private function isArrayAccessible()
                    {
                        return is_array($this[0]) || $this[0] instanceof ArrayAccess && !isset($this[0]->{$this[1]});
                    }
                };
            }
            if ($base instanceof \ArrayAccess) {
                return $getFromArray($base, $key);
            }
        };
    
        $getRegExp = function ($value) {
            return is_object($value) && isset($value->isRegularExpression) && $value->isRegularExpression ? $value->regExp . $value->flags : null;
        };
    
        $fallbackDot = function (&$base, $key) use ($getCallable, $getRegExp) {
            if (is_string($base)) {
                if (preg_match('/^[-+]?\d+$/', strval($key))) {
                    return substr($base, intval($key), 1);
                }
                if ($key === 'length') {
                    return strlen($base);
                }
                if ($key === 'substr' || $key === 'slice') {
                    return function ($start, $length = null) use ($base) {
                        return func_num_args() === 1 ? substr($base, $start) : substr($base, $start, $length);
                    };
                }
                if ($key === 'charAt') {
                    return function ($pos) use ($base) {
                        return substr($base, $pos, 1);
                    };
                }
                if ($key === 'indexOf') {
                    return function ($needle) use ($base) {
                        $pos = strpos($base, $needle);
    
                        return $pos === false ? -1 : $pos;
                    };
                }
                if ($key === 'toUpperCase') {
                    return function () use ($base) {
                        return strtoupper($base);
                    };
                }
                if ($key === 'toLowerCase') {
                    return function () use ($base) {
                        return strtolower($base);
                    };
                }
                if ($key === 'match') {
                    return function ($search) use ($base, $getRegExp) {
                        $regExp = $getRegExp($search);
                        $search = $regExp ? $regExp : (is_string($search) ? '/' . preg_quote($search, '/') . '/' : strval($search));
    
                        return preg_match($search, $base);
                    };
                }
                if ($key === 'split') {
                    return function ($delimiter) use ($base, $getRegExp) {
                        if ($regExp = $getRegExp($delimiter)) {
                            return preg_split($regExp, $base);
                        }
    
                        return explode($delimiter, $base);
                    };
                }
                if ($key === 'replace') {
                    return function ($from, $to) use ($base, $getRegExp) {
                        if ($regExp = $getRegExp($from)) {
                            return preg_replace($regExp, $to, $base);
                        }
    
                        return str_replace($from, $to, $base);
                    };
                }
            }
    
            return $getCallable($base, $key);
        };
    
        $crawler = &$base;
        $result = $base;
        foreach (array_slice(func_get_args(), 1) as $key) {
            $result = is_array($crawler)
                ? $getFromArray($crawler, $key)
                : (is_object($crawler)
                    ? (isset($crawler->$key)
                        ? $crawler->$key
                        : (method_exists($crawler, $method = "get" . ucfirst($key))
                            ? $crawler->$method()
                            : (method_exists($crawler, $key)
                                ? array($crawler, $key)
                                : $getCallable($crawler, $key)
                            )
                        )
                    )
                    : $fallbackDot($crawler, $key)
                );
            $crawler = &$result;
        }
    
        return $result;
    };;
    $GLOBALS['__jpv_and'] = function ($base) {
        foreach (array_slice(func_get_args(), 1) as $value) {
            if ($base) {
                $base = $value();
            }
        }
    
        return $base;
    };
    $GLOBALS['__jpv_and_with_ref'] = $GLOBALS['__jpv_and'];
    $GLOBALS['__jpv_or'] = function ($base) {
        foreach (array_slice(func_get_args(), 1) as $value) {
            if (!$base) {
                $base = $value();
            }
        }
    
        return $base;
    };
    $GLOBALS['__jpv_or_with_ref'] = function (&$base) {
        foreach (array_slice(func_get_args(), 1) as $value) {
            if (!$base) {
                $base = $value();
            }
        }
    
        return $base;
    };
    $GLOBALS['__jpv_plus'] = function ($base) {
        foreach (array_slice(func_get_args(), 1) as $value) {
            $base = is_string($base) || is_string($value) ? $base . $value : $base + $value;
        }
    
        return $base;
    };
    $GLOBALS['__jpv_plus_with_ref'] = $GLOBALS['__jpv_plus'];
    $GLOBALS['__jpv_set'] = function ($base, $key, $operator, $value) {
        switch ($operator) {
            case '=':
                if (is_array($base)) {
                    $base[$key] = $value;
                    break;
                }
                if (method_exists($base, $method = "set" . ucfirst($key))) {
                    $base->$method($value);
                    break;
                }
                $base->$key = $value;
                break;
            case '+=':
                if (is_array($base)) {
                    if ((isset($base[$key]) && is_string($base[$key])) || is_string($value)) {
                        $base[$key] .= $value;
                        break;
                    }
                    $base[$key] += $value;
                    break;
                }
                if ((isset($base->$key) && is_string($base->$key)) || is_string($value)) {
                    $base->$key .= $value;
                    break;
                }
                $base->$key += $value;
                break;
            case '-=':
                if (is_array($base)) {
                    $base[$key] -= $value;
                    break;
                }
                $base->$key -= $value;
                break;
            case '*=':
                if (is_array($base)) {
                    $base[$key] *= $value;
                    break;
                }
                $base->$key *= $value;
                break;
            case '/=':
                if (is_array($base)) {
                    $base[$key] /= $value;
                    break;
                }
                $base->$key /= $value;
                break;
            case '%=':
                if (is_array($base)) {
                    $base[$key] %= $value;
                    break;
                }
                $base->$key %= $value;
                break;
            case '|=':
                if (is_array($base)) {
                    $base[$key] |= $value;
                    break;
                }
                $base->$key |= $value;
                break;
            case '&=':
                if (is_array($base)) {
                    $base[$key] &= $value;
                    break;
                }
                $base->$key &= $value;
                break;
            case '&&=':
                if (is_array($base)) {
                    $base[$key] = $base[$key] ? $value : $base[$key];
                    break;
                }
                $base->$key = $base->$key ? $value : $base->$key;
                break;
            case '||=':
                if (is_array($base)) {
                    $base[$key] = $base[$key] ? $base[$key] : $value;
                    break;
                }
                $base->$key = $base->$key ? $base->$key : $value;
                break;
        }
    
        return $base;
    };
    $GLOBALS['__jpv_set_with_ref'] = $GLOBALS['__jpv_set'];
     ?><?php
    $pug_vars = [];
    foreach (array_keys(get_defined_vars()) as $__pug_key) {
        $pug_vars[$__pug_key] = &$$__pug_key;
    }
    ?><?php $pugModule = [
      'Phug\\Formatter\\Format\\BasicFormat::dependencies_storage' => 'pugModule',
      'Phug\\Formatter\\Format\\BasicFormat::helper_prefix' => 'Phug\\Formatter\\Format\\BasicFormat::',
      'Phug\\Formatter\\Format\\BasicFormat::get_helper' => function ($name) use (&$pugModule) {
        $dependenciesStorage = $pugModule['Phug\\Formatter\\Format\\BasicFormat::dependencies_storage'];
        $prefix = $pugModule['Phug\\Formatter\\Format\\BasicFormat::helper_prefix'];
        $format = $pugModule['Phug\\Formatter\\Format\\BasicFormat::dependencies_storage'];
    
                                if (!isset($$dependenciesStorage)) {
                                    return $format->getHelper($name);
                                }
    
                                $storage = $$dependenciesStorage;
    
                                if (!isset($storage[$prefix.$name]) &&
                                    !(is_array($storage) && array_key_exists($prefix.$name, $storage))
                                ) {
                                    throw new \Exception(
                                        var_export($name, true).
                                        ' dependency not found in the namespace: '.
                                        var_export($prefix, true)
                                    );
                                }
    
                                return $storage[$prefix.$name];
                            },
      'Phug\\Formatter\\Format\\BasicFormat::pattern' => function ($pattern) use (&$pugModule) {
    
                        $args = func_get_args();
                        $function = 'sprintf';
                        if (is_callable($pattern)) {
                            $function = $pattern;
                            $args = array_slice($args, 1);
                        }
    
                        return call_user_func_array($function, $args);
                    },
      'Phug\\Formatter\\Format\\BasicFormat::patterns.html_text_escape' => 'htmlspecialchars',
      'Phug\\Formatter\\Format\\BasicFormat::pattern.html_text_escape' => function () use (&$pugModule) {
        $proceed = $pugModule['Phug\\Formatter\\Format\\BasicFormat::pattern'];
        $pattern = $pugModule['Phug\\Formatter\\Format\\BasicFormat::patterns.html_text_escape'];
    
                        $args = func_get_args();
                        array_unshift($args, $pattern);
    
                        return call_user_func_array($proceed, $args);
                    },
      'Phug\\Formatter\\Format\\BasicFormat::available_attribute_assignments' => array (
      0 => 'class',
      1 => 'style',
    ),
      'Phug\\Formatter\\Format\\BasicFormat::patterns.attribute_pattern' => ' %s="%s"',
      'Phug\\Formatter\\Format\\BasicFormat::pattern.attribute_pattern' => function () use (&$pugModule) {
        $proceed = $pugModule['Phug\\Formatter\\Format\\BasicFormat::pattern'];
        $pattern = $pugModule['Phug\\Formatter\\Format\\BasicFormat::patterns.attribute_pattern'];
    
                        $args = func_get_args();
                        array_unshift($args, $pattern);
    
                        return call_user_func_array($proceed, $args);
                    },
      'Phug\\Formatter\\Format\\BasicFormat::patterns.boolean_attribute_pattern' => ' %s="%s"',
      'Phug\\Formatter\\Format\\BasicFormat::pattern.boolean_attribute_pattern' => function () use (&$pugModule) {
        $proceed = $pugModule['Phug\\Formatter\\Format\\BasicFormat::pattern'];
        $pattern = $pugModule['Phug\\Formatter\\Format\\BasicFormat::patterns.boolean_attribute_pattern'];
    
                        $args = func_get_args();
                        array_unshift($args, $pattern);
    
                        return call_user_func_array($proceed, $args);
                    },
      'Phug\\Formatter\\Format\\BasicFormat::attribute_assignments' => function (&$attributes, $name, $value) use (&$pugModule) {
        $availableAssignments = $pugModule['Phug\\Formatter\\Format\\BasicFormat::available_attribute_assignments'];
        $getHelper = $pugModule['Phug\\Formatter\\Format\\BasicFormat::get_helper'];
    
                        if (!in_array($name, $availableAssignments)) {
                            return $value;
                        }
    
                        $helper = $getHelper($name.'_attribute_assignment');
    
                        return $helper($attributes, $value);
                    },
      'Phug\\Formatter\\Format\\BasicFormat::attribute_assignment' => function (&$attributes, $name, $value) use (&$pugModule) {
        $attributeAssignments = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attribute_assignments'];
    
                        if (isset($name) && $name !== '') {
                            $result = $attributeAssignments($attributes, $name, $value);
                            if (($result !== null && $result !== false && ($result !== '' || $name !== 'class'))) {
                                $attributes[$name] = $result;
                            }
                        }
                    },
      'Phug\\Formatter\\Format\\BasicFormat::merge_attributes' => function () use (&$pugModule) {
        $attributeAssignment = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attribute_assignment'];
    
                        $attributes = [];
                        foreach (array_filter(func_get_args(), 'is_array') as $input) {
                            foreach ($input as $name => $value) {
                                $attributeAssignment($attributes, $name, $value);
                            }
                        }
    
                        return $attributes;
                    },
      'Phug\\Formatter\\Format\\BasicFormat::array_escape' => function ($name, $input) use (&$pugModule) {
        $arrayEscape = $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape'];
        $escape = $pugModule['Phug\\Formatter\\Format\\BasicFormat::pattern.html_text_escape'];
    
                            if (is_array($input) && in_array(strtolower($name), ['class', 'style'])) {
                                $result = [];
                                foreach ($input as $key => $value) {
                                    $result[$escape($key)] = $arrayEscape($name, $value);
                                }
    
                                return $result;
                            }
                            if (is_array($input) || is_object($input) && !method_exists($input, '__toString')) {
                                return $escape(json_encode($input));
                            }
                            if (is_string($input)) {
                                return $escape($input);
                            }
    
                            return $input;
                        },
      'Phug\\Formatter\\Format\\BasicFormat::attributes_mapping' => array (
    ),
      'Phug\\Formatter\\Format\\BasicFormat::attributes_assignment' => function () use (&$pugModule) {
        $attrMapping = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_mapping'];
        $mergeAttr = $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'];
        $pattern = $pugModule['Phug\\Formatter\\Format\\BasicFormat::pattern'];
        $escape = $pugModule['Phug\\Formatter\\Format\\BasicFormat::pattern.html_text_escape'];
        $attr = $pugModule['Phug\\Formatter\\Format\\BasicFormat::pattern.attribute_pattern'];
        $bool = $pugModule['Phug\\Formatter\\Format\\BasicFormat::pattern.boolean_attribute_pattern'];
    
                            $attributes = call_user_func_array($mergeAttr, func_get_args());
                            $code = '';
                            foreach ($attributes as $originalName => $value) {
                                if ($value !== null && $value !== false && ($value !== '' || $originalName !== 'class')) {
                                    $name = isset($attrMapping[$originalName])
                                        ? $attrMapping[$originalName]
                                        : $originalName;
                                    if ($value === true) {
                                        $code .= $pattern($bool, $name, $name);
    
                                        continue;
                                    }
                                    if (is_array($value) || is_object($value) &&
                                        !method_exists($value, '__toString')) {
                                        $value = json_encode($value);
                                    }
    
                                    $code .= $pattern($attr, $name, $value);
                                }
                            }
    
                            return $code;
                        },
      'Phug\\Formatter\\Format\\BasicFormat::class_attribute_assignment' => function (&$attributes, $value) use (&$pugModule) {
    
                $split = function ($input) {
                    return preg_split('/(?<![\[\{\<\=\%])\s+(?![\]\}\>\=\%])/', strval($input));
                };
                $classes = isset($attributes['class']) ? array_filter($split($attributes['class'])) : [];
                foreach ((array) $value as $key => $input) {
                    if (!is_string($input) && is_string($key)) {
                        if (!$input) {
                            continue;
                        }
    
                        $input = $key;
                    }
                    foreach ($split($input) as $class) {
                        if (!in_array($class, $classes)) {
                            $classes[] = $class;
                        }
                    }
                }
    
                return implode(' ', $classes);
            },
      'Phug\\Formatter\\Format\\BasicFormat::style_attribute_assignment' => function (&$attributes, $value) use (&$pugModule) {
    
                if (is_string($value) && mb_substr($value, 0, 7) === '{&quot;') {
                    $value = json_decode(htmlspecialchars_decode($value));
                }
                $styles = isset($attributes['style']) ? array_filter(explode(';', $attributes['style'])) : [];
                foreach ((array) $value as $propertyName => $propertyValue) {
                    if (!is_int($propertyName)) {
                        $propertyValue = $propertyName.':'.$propertyValue;
                    }
                    $styles[] = $propertyValue;
                }
    
                return implode(';', $styles);
            },
    ]; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['Article'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(113);
    // PUG_DEBUG:113
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(112);
    // PUG_DEBUG:112
     ?><h1<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Article-head'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(110);
    // PUG_DEBUG:110
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(111);
    // PUG_DEBUG:111
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head')) ? var_export($_pug_temp, true) : $_pug_temp) ?></h1><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(117);
    // PUG_DEBUG:117
     }  if (method_exists($_pug_temp = (isset($block) ? $block : null), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(116);
    // PUG_DEBUG:116
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Article'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(115);
    // PUG_DEBUG:115
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Article-content'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?= (is_bool($_pug_temp = $__pug_children(get_defined_vars())) ? var_export($_pug_temp, true) : $_pug_temp) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(114);
    // PUG_DEBUG:114
     ?></div></div><?php } ?><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['Logo'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(122);
    // PUG_DEBUG:122
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Logo'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(121);
    // PUG_DEBUG:121
     ?><a<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['href' => '/'], ['class' => 'Logo-link'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(120);
    // PUG_DEBUG:120
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, 'logo']], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(119);
    // PUG_DEBUG:119
    ;
    }); ?></a></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['Menu'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(151);
    // PUG_DEBUG:151
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Menu'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(150);
    // PUG_DEBUG:150
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Menu-menuWrapper'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(142);
    // PUG_DEBUG:142
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Menu-frame'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(132);
    // PUG_DEBUG:132
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Menu-groups'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(131);
    // PUG_DEBUG:131
     ?><?php $__eachScopeVariables = ['item' => isset($item) ? $item : null];foreach ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'group') as $item) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(130);
    // PUG_DEBUG:130
     ?><a<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['href' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('href', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'link'))], ['title' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('title', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'label'))], ['class' => 'Menu-group'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(126);
    // PUG_DEBUG:126
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'icon'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(125);
    // PUG_DEBUG:125
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Menu-icon'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(124);
    // PUG_DEBUG:124
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'icon')]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div><?php } ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(129);
    // PUG_DEBUG:129
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Menu-label'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(127);
    // PUG_DEBUG:127
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(128);
    // PUG_DEBUG:128
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'label')) ? var_export($_pug_temp, true) : $_pug_temp) ?></div></a><?php }extract($__eachScopeVariables); ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(141);
    // PUG_DEBUG:141
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Menu-wrapper'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(140);
    // PUG_DEBUG:140
     ?><?php $__eachScopeVariables = ['item' => isset($item) ? $item : null];foreach ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'items') as $item) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(139);
    // PUG_DEBUG:139
     ?><a<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['href' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('href', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'link'))], ['title' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('title', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'label'))], ['class' => 'Menu-item'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(135);
    // PUG_DEBUG:135
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Menu-label'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(133);
    // PUG_DEBUG:133
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(134);
    // PUG_DEBUG:134
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'label')) ? var_export($_pug_temp, true) : $_pug_temp) ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(138);
    // PUG_DEBUG:138
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'icon'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(137);
    // PUG_DEBUG:137
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Menu-mark'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(136);
    // PUG_DEBUG:136
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'icon')]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div><?php } ?></a><?php }extract($__eachScopeVariables); ?></div></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(144);
    // PUG_DEBUG:144
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Menu-more'], ['class' => 'isHidden'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(143);
    // PUG_DEBUG:143
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, 'more']], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(146);
    // PUG_DEBUG:146
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Menu-close'], ['class' => 'isHidden'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(145);
    // PUG_DEBUG:145
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, 'times']], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(149);
    // PUG_DEBUG:149
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Menu-search'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(148);
    // PUG_DEBUG:148
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Search';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'background' => false, 'placeholder' => 'поиск', 'href' => '#', 'item' => 'результат поиска' )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(147);
    // PUG_DEBUG:147
    ;
    }); ?></div></div></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['B2BMenu'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(163);
    // PUG_DEBUG:163
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'B2BMenu'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(162);
    // PUG_DEBUG:162
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'B2BMenu-menuWrapper'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(156);
    // PUG_DEBUG:156
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'B2BMenu-left'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(155);
    // PUG_DEBUG:155
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'B2BMenu-wrapper'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(154);
    // PUG_DEBUG:154
     ?><?php $__eachScopeVariables = ['item' => isset($item) ? $item : null];foreach ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'left') as $item) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(153);
    // PUG_DEBUG:153
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Button';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'background' => (isset($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item)['background']) ? $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'background') : true), 'href' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'link'), 'icon' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'icon'), 'label' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'text') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php }extract($__eachScopeVariables); ?></div></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(161);
    // PUG_DEBUG:161
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'B2BMenu-right'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(160);
    // PUG_DEBUG:160
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'B2BMenu-wrapper'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(159);
    // PUG_DEBUG:159
     ?><?php $__eachScopeVariables = ['item' => isset($item) ? $item : null];foreach ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'right') as $item) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(158);
    // PUG_DEBUG:158
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Button';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'background' => (isset($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item)['background']) ? $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'background') : true), 'href' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'link'), 'icon' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'icon'), 'label' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'text') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(157);
    // PUG_DEBUG:157
    ;
    }); ?><?php }extract($__eachScopeVariables); ?></div></div></div></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['Icon'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'name', null], [false, 'big', null]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(294);
    // PUG_DEBUG:294
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(271);
    // PUG_DEBUG:271
     ?><?php if (!(isset($big) ? $big : null)) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(270);
    // PUG_DEBUG:270
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-regular'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(269);
    // PUG_DEBUG:269
     ?><?php switch ($name) { ?><?php case 'warning' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(166);
    // PUG_DEBUG:166
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-warning'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(165);
    // PUG_DEBUG:165
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M15 9.5V18M15.8779 4.60948L26.1934 23.5211C26.5568 24.1875 26.0745 25 25.3155 25H4.68454C3.92548 25 3.44317 24.1875 3.80665 23.5211L14.1221 4.60948C14.5011 3.91461 15.4989 3.91461 15.8779 4.60948Z" class="Stroke" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
    <circle cx="14.9999" cy="22" r="1.3156" class="Fill"/>
    </svg>
    </span><?php break ?><?php case 'leafs' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(168);
    // PUG_DEBUG:168
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-leafs'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(167);
    // PUG_DEBUG:167
     ?><svg width="49" height="43" viewBox="0 0 49 43" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M15 15C15 6.71573 21.7157 0 30 0H35V5C35 13.2843 28.2843 20 20 20H15V15Z" class="RightLeaf"/>
    <path d="M31.0001 3C31.0001 3 19.5 10.5 16.0001 18C15 20.1431 14 21 14 21" class="Stroke" stroke-width="2"/>
    <path d="M15 16C15 9.37258 9.62742 4 3 4H0V7C0 13.6274 5.37258 19 12 19H15V16Z" class="LeftLeaf"/>
    </svg>
    </span><?php break ?><?php case 'recipe' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(170);
    // PUG_DEBUG:170
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-recipe'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(169);
    // PUG_DEBUG:169
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M4 19L14 9M20 3L14 9M14 9C11 6 17 2 17 2M14 9C17 12 21 6 21 6" stroke="var(--dark)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
    <path d="M10 25L26 9" stroke="var(--dark)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
    <path d="M15 20L18 23L26.1716 14.8284C27.7337 13.2663 27.7337 10.7337 26.1716 9.17157L26 9L15 20Z" fill="var(--dark)" stroke="var(--dark)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
    </svg>
    </span><?php break ?><?php case 'file' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(172);
    // PUG_DEBUG:172
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-file'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(171);
    // PUG_DEBUG:171
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M6 24C6 25.1046 6.89543 26 8 26H18.5L24 20V6C24 4.89543 23.1046 4 22 4H8C6.89543 4 6 4.89543 6 6V24Z" class="Fill" fill="var(--light)"/>
    <path d="M6 24C6 25.1046 6.89543 26 8 26H18.5L24 20V6C24 4.89543 23.1046 4 22 4H8C6.89543 4 6 4.89543 6 6V24Z" class="Fill" fill="var(--light)"/>
    <path d="M18.5 26H8C6.89543 26 6 25.1046 6 24V6C6 4.89543 6.89543 4 8 4H22C23.1046 4 24 4.89543 24 6V20M18.5 26L17.8814 21.6696C17.6915 20.3408 18.8387 19.206 20.1654 19.4101L24 20M18.5 26L24 20" class="Stroke" stroke="var(--dark)" stroke-width="2"/>
    <path d="M9.5 9H19.5" class="Stroke" stroke="var(--dark)" stroke-width="2"/>
    <path d="M9.5 14H15.5" class="Stroke" stroke="var(--dark)" stroke-width="2"/>
    </svg>
    </span><?php break ?><?php case 'file-clean' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(174);
    // PUG_DEBUG:174
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-file-clean'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(173);
    // PUG_DEBUG:173
     ?><svg width="14" height="19" viewBox="0 0 14 19" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path class="Fill" d="M12.9727 3.69531L10.0547 0.742188C9.73828 0.425781 9.28125 0.25 8.85938 0.25H1.6875C0.738281 0.25 0 1.02344 0 1.9375V16.5625C0 17.5117 0.738281 18.25 1.6875 18.25H11.8125C12.7266 18.25 13.5 17.5117 13.5 16.5625V4.89062C13.5 4.46875 13.2891 4.01172 12.9727 3.69531ZM11.6719 4.75H9V2.07812L11.6719 4.75ZM1.6875 16.5625V1.9375H7.3125V5.59375C7.3125 6.08594 7.66406 6.4375 8.15625 6.4375H11.8125V16.5625H1.6875Z"/>
    </svg>
    </span><?php break ?><?php case 'dir' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(176);
    // PUG_DEBUG:176
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-dir'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(175);
    // PUG_DEBUG:175
     ?><svg width="24" height="16" viewBox="0 0 24 16" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path class="Fill" d="M21.6152 6.8125H19.6875V4.84375C19.6875 3.77734 18.7852 2.875 17.7188 2.875H11.1562L8.53125 0.25H1.96875C0.861328 0.25 0 1.15234 0 2.21875V14.0312C0 15.1387 0.861328 16 1.96875 16H18.375C19.0312 16 19.6465 15.6719 20.0156 15.0977L23.2969 9.84766C24.1172 8.53516 23.1738 6.8125 21.6152 6.8125ZM1.96875 2.46484C1.96875 2.3418 2.05078 2.21875 2.21484 2.21875H7.71094L10.3359 4.84375H17.4727C17.5957 4.84375 17.7188 4.9668 17.7188 5.08984V6.8125H6.23438C5.53711 6.8125 4.88086 7.18164 4.51172 7.79688L1.96875 12.0625V2.46484ZM18.375 14.0312H2.95312L6.11133 8.78125H21.6562L18.375 14.0312Z"/>
    </svg>
    </span><?php break ?><?php case 'instagram' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(178);
    // PUG_DEBUG:178
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-instagram'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(177);
    // PUG_DEBUG:177
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M15.0049 9.35948C11.8827 9.35948 9.36439 11.8778 9.36439 15C9.36439 18.1222 11.8827 20.6405 15.0049 20.6405C18.1271 20.6405 20.6454 18.1222 20.6454 15C20.6454 11.8778 18.1271 9.35948 15.0049 9.35948ZM15.0049 18.6671C12.9873 18.6671 11.3378 17.0225 11.3378 15C11.3378 12.9775 12.9824 11.3329 15.0049 11.3329C17.0274 11.3329 18.672 12.9775 18.672 15C18.672 17.0225 17.0225 18.6671 15.0049 18.6671ZM22.1918 9.12875C22.1918 9.8602 21.6027 10.4444 20.8762 10.4444C20.1447 10.4444 19.5605 9.85529 19.5605 9.12875C19.5605 8.40221 20.1496 7.81312 20.8762 7.81312C21.6027 7.81312 22.1918 8.40221 22.1918 9.12875ZM25.9276 10.464C25.8441 8.70166 25.4416 7.14058 24.1505 5.8544C22.8643 4.56822 21.3032 4.16568 19.5409 4.07732C17.7245 3.97423 12.2804 3.97423 10.464 4.07732C8.70657 4.16077 7.14549 4.56332 5.8544 5.84949C4.56332 7.13567 4.16568 8.69675 4.07732 10.4591C3.97423 12.2755 3.97423 17.7196 4.07732 19.536C4.16077 21.2983 4.56332 22.8594 5.8544 24.1456C7.14549 25.4318 8.70166 25.8343 10.464 25.9227C12.2804 26.0258 17.7245 26.0258 19.5409 25.9227C21.3032 25.8392 22.8643 25.4367 24.1505 24.1456C25.4367 22.8594 25.8392 21.2983 25.9276 19.536C26.0307 17.7196 26.0307 12.2804 25.9276 10.464ZM23.5811 21.4849C23.1981 22.4471 22.4569 23.1883 21.4898 23.5761C20.0416 24.1505 16.6053 24.018 15.0049 24.018C13.4046 24.018 9.96329 24.1456 8.52003 23.5761C7.55785 23.1932 6.81658 22.452 6.42876 21.4849C5.8544 20.0367 5.98695 16.6004 5.98695 15C5.98695 13.3996 5.85931 9.95838 6.42876 8.51512C6.81167 7.55294 7.55294 6.81167 8.52003 6.42385C9.9682 5.84949 13.4046 5.98204 15.0049 5.98204C16.6053 5.98204 20.0465 5.8544 21.4898 6.42385C22.452 6.80676 23.1932 7.54803 23.5811 8.51512C24.1554 9.96329 24.0229 13.3996 24.0229 15C24.0229 16.6004 24.1554 20.0416 23.5811 21.4849Z" class="Fill"/>
    </svg>
    </span><?php break ?><?php case 'facebook' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(180);
    // PUG_DEBUG:180
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-facebook'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(179);
    // PUG_DEBUG:179
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M20.0107 16.375L20.6218 12.3935H16.8014V9.8098C16.8014 8.72055 17.3351 7.65879 19.0461 7.65879H20.7829V4.26898C20.7829 4.26898 19.2068 4 17.6999 4C14.5537 4 12.4972 5.90695 12.4972 9.35906V12.3935H9V16.375H12.4972V26H16.8014V16.375H20.0107Z" class="Fill"/>
    </svg>
    </span><?php break ?><?php case 'vk' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(182);
    // PUG_DEBUG:182
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-vk'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(181);
    // PUG_DEBUG:181
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M26.675 9.01719C26.8484 8.43125 26.675 8 25.8406 8H23.0797C22.3766 8 22.0531 8.37031 21.8797 8.78281C21.8797 8.78281 20.4734 12.2094 18.4859 14.4312C17.8437 15.0734 17.5484 15.2797 17.1969 15.2797C17.0234 15.2797 16.7562 15.0734 16.7562 14.4875V9.01719C16.7562 8.31406 16.5594 8 15.9781 8H11.6375C11.1969 8 10.9344 8.32812 10.9344 8.63281C10.9344 9.29844 11.9281 9.45312 12.0312 11.3281V15.3969C12.0312 16.2875 11.8719 16.4516 11.5203 16.4516C10.5828 16.4516 8.30469 13.0109 6.95469 9.07344C6.68281 8.30938 6.41563 8 5.70781 8H2.94687C2.15937 8 2 8.37031 2 8.78281C2 9.51406 2.9375 13.1469 6.36406 17.9469C8.64687 21.2234 11.8625 23 14.7875 23C16.5453 23 16.7609 22.6063 16.7609 21.9266C16.7609 18.7953 16.6016 18.5 17.4828 18.5C17.8906 18.5 18.5938 18.7063 20.2344 20.2859C22.1094 22.1609 22.4188 23 23.4688 23H26.2297C27.0172 23 27.4156 22.6062 27.1859 21.8281C26.6609 20.1922 23.1125 16.8266 22.9531 16.6016C22.5453 16.0766 22.6625 15.8422 22.9531 15.3734C22.9578 15.3688 26.3281 10.625 26.675 9.01719Z" class="Fill"/>
    </svg>
    </span><?php break ?><?php case 'zen' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(184);
    // PUG_DEBUG:184
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-zen'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(183);
    // PUG_DEBUG:183
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M22.73 22.5C26.1328 19 26 14.7 26 14.7L23 14.8L22.9659 14.8017C21.7986 14.86 20.3339 14.9332 20 15C19.0001 15.2 17.7251 15.6749 16.7 16.7C15.675 17.7251 15.3386 18.6167 15 20C14.9215 20.321 14.8 23 14.8 23L14.7 26C14.7 26 19.3272 26 22.73 22.5Z" class="Fill"/>
    <path d="M6.26996 22.5C2.86716 19 2.99996 14.7 2.99996 14.7L5.99996 14.8L6.03412 14.8017C7.20143 14.86 8.66615 14.9332 8.99996 15C9.99994 15.2 11.2749 15.6749 12.3 16.7C13.325 17.7251 13.6614 18.6167 14 20C14.0785 20.321 14.2 23 14.2 23L14.3 26C14.3 26 9.67277 26 6.26996 22.5Z" class="Fill"/>
    <path d="M6.26996 6.49999C2.86716 9.99998 2.99996 14.3 2.99996 14.3L5.99996 14.2L6.03412 14.1983C7.20143 14.14 8.66615 14.0668 8.99996 14C9.99994 13.8 11.2749 13.3251 12.3 12.3C13.325 11.2749 13.6614 10.3833 14 9C14.0785 8.67898 14.2 6 14.2 6L14.3 2.99999C14.3 2.99999 9.67277 2.99999 6.26996 6.49999Z" class="Fill"/>
    <path d="M22.73 6.49999C26.1328 9.99998 26 14.3 26 14.3L23 14.2L22.9659 14.1983C21.7986 14.14 20.3339 14.0668 20 14C19.0001 13.8 17.7251 13.3251 16.7 12.3C15.675 11.2749 15.3386 10.3833 15 9C14.9215 8.67898 14.8 6 14.8 6L14.7 2.99999C14.7 2.99999 19.3272 2.99999 22.73 6.49999Z" class="Fill"/>
    </svg>
    </span><?php break ?><?php case 'telegram' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(186);
    // PUG_DEBUG:186
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-telegram'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(185);
    // PUG_DEBUG:185
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path fill-rule="evenodd" clip-rule="evenodd" d="M4.64987 13.5623C11.0923 10.7554 15.3883 8.90497 17.5378 8.01092C23.675 5.45823 24.9503 5.0148 25.7815 5.00016C25.9643 4.99694 26.3731 5.04224 26.6379 5.25709C26.8614 5.43851 26.9229 5.68357 26.9524 5.85557C26.9818 6.02757 27.0185 6.4194 26.9893 6.72555C26.6568 10.22 25.2177 18.7001 24.4856 22.6139C24.1758 24.27 23.5658 24.8253 22.9753 24.8796C21.6919 24.9977 20.7174 24.0315 19.4744 23.2167C17.5294 21.9417 16.4305 21.148 14.5425 19.9039C12.3606 18.466 13.7751 17.6758 15.0185 16.3842C15.344 16.0463 20.9985 10.903 21.1079 10.4365C21.1216 10.3781 21.1343 10.1606 21.0051 10.0458C20.8759 9.93091 20.6851 9.97019 20.5475 10.0014C20.3524 10.0457 17.2452 12.0995 11.2258 16.1627C10.3439 16.7683 9.545 17.0634 8.82924 17.048C8.04018 17.0309 6.52233 16.6018 5.39397 16.235C4.00999 15.7851 2.91003 15.5473 3.00581 14.7833C3.0557 14.3853 3.60372 13.9783 4.64987 13.5623Z" class="Fill"/>
    </svg>
    </span><?php break ?><?php case 'delivery' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(188);
    // PUG_DEBUG:188
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-delivery'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(187);
    // PUG_DEBUG:187
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <rect x="5" y="9" width="20" height="15" rx="1" class="Fill"/>
    <rect x="5" y="9" width="20" height="15" rx="1" class="Fill"/>
    <rect x="5" y="9" width="20" height="15" rx="1" class="Stroke" stroke-width="2"/>
    <path d="M5 15L25 15" class="Stroke" stroke-width="2" stroke-linecap="round"/>
    <path d="M14 8C14 4.68629 16.6863 2 20 2H21V3C21 6.31371 18.3137 9 15 9H14V8Z" class="StrokeF"/>
    <path d="M10 4H11C13.2091 4 15 5.79086 15 8V9H14C11.7909 9 10 7.20914 10 5V4Z" class="StrokeF"/>
    </svg>
    </span><?php break ?><?php case 'mark' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(190);
    // PUG_DEBUG:190
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-mark'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(189);
    // PUG_DEBUG:189
     ?><svg width="26" height="30" viewBox="0 0 26 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M20 7H16C11.0294 7 7 11.0294 7 16V22H11C15.9706 22 20 17.9706 20 13V7Z" class="RightLeaf"/>
    <path d="M0 12H2C5.86599 12 9 15.134 9 19V22H7C3.13401 22 0 18.866 0 15V12Z" class="LeftLeaf"/>
    </svg>
    </span><?php break ?><?php case 'flowers' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(192);
    // PUG_DEBUG:192
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-flowers'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(191);
    // PUG_DEBUG:191
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M14.9999 9C19.9999 15.5 14.9999 23 14.9999 23C14.9999 23 20.4999 14.5 22.4999 14.5" class="Stroke" stroke-width="2" stroke-linejoin="round"/>
    <path d="M13.8269 4.80496C14.2674 3.52204 16.1026 3.58413 16.4554 4.89388C16.6432 5.59104 17.3382 6.02425 18.0468 5.88589C19.3781 5.62595 20.2419 7.24629 19.2841 8.20672C18.7742 8.71795 18.7465 9.53641 19.2207 10.0809C20.1114 11.1039 19.1401 12.6622 17.8294 12.3128C17.1317 12.1269 16.4091 12.5121 16.1746 13.195C15.7341 14.4779 13.8989 14.4159 13.5461 13.1061C13.3583 12.4089 12.6633 11.9757 11.9547 12.1141C10.6234 12.374 9.75955 10.7537 10.7174 9.79326C11.2273 9.28204 11.255 8.46357 10.7808 7.91906C9.89005 6.89608 10.8614 5.33783 12.1721 5.68715C12.8697 5.87309 13.5924 5.48783 13.8269 4.80496Z" class="Fill"/>
    <path d="M21.5332 11.8259C22.1744 10.4753 24.1896 10.8424 24.3132 12.3324C24.3564 12.8521 24.6728 13.3096 25.1439 13.5332C26.4946 14.1744 26.1274 16.1895 24.6374 16.3132C24.1177 16.3563 23.6603 16.6728 23.4366 17.1439C22.7954 18.4945 20.7803 18.1274 20.6566 16.6374C20.6135 16.1177 20.2971 15.6602 19.826 15.4366C18.4753 14.7954 18.8425 12.7803 20.3324 12.6566C20.8521 12.6135 21.3096 12.297 21.5332 11.8259Z" class="Fill"/>
    <path d="M14.7264 20.8065C11.7966 21.6125 8.78505 19.8273 8 16.819L10.2736 16.1935C13.2034 15.3875 16.2149 17.1727 17 20.181L14.7264 20.8065Z" class="StrokeF"/>
    </svg>
    </span><?php break ?><?php case 'copy' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(194);
    // PUG_DEBUG:194
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-copy'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(193);
    // PUG_DEBUG:193
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M14.5 17H21.5C22.0523 17 22.5 16.5523 22.5 16V9C22.5 8.44772 22.0523 8 21.5 8H14.5C13.9477 8 13.5 8.44772 13.5 9V16C13.5 16.5523 13.9477 17 14.5 17Z" class="Fill"/>
    <path d="M14.5 17H21.5C22.0523 17 22.5 16.5523 22.5 16V9C22.5 8.44772 22.0523 8 21.5 8H14.5C13.9477 8 13.5 8.44772 13.5 9V16C13.5 16.5523 13.9477 17 14.5 17Z" class="Fill"/>
    <path d="M10.5 13.5H9C8.44772 13.5 8 13.9477 8 14.5V21.5C8 22.0523 8.44772 22.5 9 22.5H16C16.5523 22.5 17 22.0523 17 21.5V20M22.5 9V16C22.5 16.5523 22.0523 17 21.5 17H14.5C13.9477 17 13.5 16.5523 13.5 16V9C13.5 8.44772 13.9477 8 14.5 8H21.5C22.0523 8 22.5 8.44772 22.5 9Z" class="Stroke" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
    </svg>
    </span><?php break ?><?php case 'location' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(196);
    // PUG_DEBUG:196
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-location'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(195);
    // PUG_DEBUG:195
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M10.9562 20.53C10.54 19.864 11.0188 19 11.8042 19H18.1958C18.9812 19 19.46 19.864 19.0438 20.53L15.848 25.6432C15.4563 26.2699 14.5437 26.2699 14.152 25.6432L10.9562 20.53Z" fill="#394F2F"/>
    <rect x="7" y="6" width="16" height="16" rx="8" class="Fill" fill="var(--light)"/>
    <rect x="7" y="6" width="16" height="16" rx="8" class="Fill" fill="var(--light)"/>
    <rect x="7" y="6" width="16" height="16" rx="8" class="Stroke" stroke="var(--dark)" stroke-width="2"/>
    <circle cx="15" cy="14" r="3" class="StrokeF" fill="var(--dark)"/>
    </svg>
    </span><?php break ?><?php case 'message' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(198);
    // PUG_DEBUG:198
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-message'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(197);
    // PUG_DEBUG:197
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M8 21C8 20.4477 8.44772 20 9 20H15.1492C16.0945 20 16.5121 21.1904 15.7739 21.7809L9.6247 26.7002C8.96993 27.2241 8 26.7579 8 25.9194V21Z" class="StrokeF"/>
    <rect x="6" y="7" width="19" height="15" rx="2" class="Fill"/>
    <rect x="6" y="7" width="19" height="15" rx="2" class="Fill"/>
    <rect x="6" y="7" width="19" height="15" rx="2" class="Stroke" stroke-width="2"/>
    <circle cx="11.5" cy="14.5" r="1.5" class="CircleFill"/>
    <circle cx="15.5" cy="14.5" r="1.5" class="CircleFill"/>
    <circle cx="19.5" cy="14.5" r="1.5" class="CircleFill"/>
    </svg>
    </span><?php break ?><?php case 'phone' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(200);
    // PUG_DEBUG:200
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-phone'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(199);
    // PUG_DEBUG:199
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M8 7V8C8 16.2843 14.7157 23 23 23H24M8 7H10L11 11L9 13L8 7ZM24 23V21L20 20L18 22L24 23Z" class="Stroke" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
    </svg>
    </span><?php break ?><?php case 'request' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(202);
    // PUG_DEBUG:202
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-request'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(201);
    // PUG_DEBUG:201
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M2 6C2 4.89543 2.89543 4 4 4H18C19.1046 4 20 4.89543 20 6V23C20 24.1046 19.1046 25 18 25H4C2.89543 25 2 24.1046 2 23V6Z" class="Fill" fill="var(--light)"/>
    <path d="M2 6C2 4.89543 2.89543 4 4 4H18C19.1046 4 20 4.89543 20 6V23C20 24.1046 19.1046 25 18 25H4C2.89543 25 2 24.1046 2 23V6Z" class="Fill" fill="var(--light)"/>
    <path d="M4 12H13V10H4V12ZM4 17H10V15H4V17ZM4 22H10V20H4V22Z" class="StrokeF" fill="var(--dark)"/>
    <path d="M13 21V18.4142C13 18.149 13.1054 17.8946 13.2929 17.7071L24.2929 6.70711C24.6834 6.31658 25.3166 6.31658 25.7071 6.70711L28.2929 9.29289C28.6834 9.68342 28.6834 10.3166 28.2929 10.7071L17.2929 21.7071C17.1054 21.8946 16.851 22 16.5858 22H14C13.4477 22 13 21.5523 13 21Z" class="Fill" fill="var(--light)"/>
    <path d="M13 21V18.4142C13 18.149 13.1054 17.8946 13.2929 17.7071L24.2929 6.70711C24.6834 6.31658 25.3166 6.31658 25.7071 6.70711L28.2929 9.29289C28.6834 9.68342 28.6834 10.3166 28.2929 10.7071L17.2929 21.7071C17.1054 21.8946 16.851 22 16.5858 22H14C13.4477 22 13 21.5523 13 21Z" class="Fill" fill="var(--light)"/>
    <path d="M13 21V18.4142C13 18.149 13.1054 17.8946 13.2929 17.7071L24.2929 6.70711C24.6834 6.31658 25.3166 6.31658 25.7071 6.70711L28.2929 9.29289C28.6834 9.68342 28.6834 10.3166 28.2929 10.7071L17.2929 21.7071C17.1054 21.8946 16.851 22 16.5858 22H14C13.4477 22 13 21.5523 13 21Z" class="Stroke" stroke="var(--dark)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
    </svg>
    </span><?php break ?><?php case 'retail' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(204);
    // PUG_DEBUG:204
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-retail'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(203);
    // PUG_DEBUG:203
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M7.85792 22H22.1421C22.6357 22 23.0554 21.6399 23.1305 21.1521L24.8228 10.1521C24.916 9.5463 24.4473 9 23.8344 9H23H7H6.16561C5.55273 9 5.08405 9.5463 5.17724 10.1521L6.86955 21.1521C6.9446 21.6399 7.36435 22 7.85792 22Z" class="Fill"/>
    <path d="M7.85792 22H22.1421C22.6357 22 23.0554 21.6399 23.1305 21.1521L24.8228 10.1521C24.916 9.5463 24.4473 9 23.8344 9H23H7H6.16561C5.55273 9 5.08405 9.5463 5.17724 10.1521L6.86955 21.1521C6.9446 21.6399 7.36435 22 7.85792 22Z" class="Fill"/>
    <path d="M10.875 18.125L10.125 12.875M15 12.875V18.125M19.875 12.875L19.125 18.125M23 9H23.8344C24.4473 9 24.916 9.5463 24.8228 10.1521L23.1305 21.1521C23.0554 21.6399 22.6357 22 22.1421 22H7.85792C7.36435 22 6.9446 21.6399 6.86955 21.1521L5.17724 10.1521C5.08405 9.5463 5.55273 9 6.16561 9H7H23Z" class="Stroke" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
    <path d="M21 9L19.7138 4.71265C19.5869 4.28967 19.1976 4 18.756 4H11.244C10.8024 4 10.4131 4.28967 10.2862 4.71265L9 9" class="Stroke" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
    </svg>
    </span><?php break ?><?php case 'horeca' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(206);
    // PUG_DEBUG:206
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-horeca'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(205);
    // PUG_DEBUG:205
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path fill-rule="evenodd" clip-rule="evenodd" d="M19.6343 5.1888C18.5339 3.85223 16.8665 3 15 3C13.1335 3 11.4661 3.85223 10.3657 5.1888C9.9316 5.06582 9.47349 5 9 5C6.23858 5 4 7.23858 4 10C4 11.8327 4.98607 13.4352 6.45661 14.3057L6.9414 22.0624C6.97434 22.5894 7.41306 23 7.94112 23H22.0589C22.5869 23 23.0257 22.5894 23.0586 22.0624L23.5434 14.3057C25.0139 13.4352 26 11.8327 26 10C26 7.23858 23.7614 5 21 5C20.5265 5 20.0684 5.06582 19.6343 5.1888Z" class="Fill"/>
    <path fill-rule="evenodd" clip-rule="evenodd" d="M19.6343 5.1888C18.5339 3.85223 16.8665 3 15 3C13.1335 3 11.4661 3.85223 10.3657 5.1888C9.9316 5.06582 9.47349 5 9 5C6.23858 5 4 7.23858 4 10C4 11.8327 4.98607 13.4352 6.45661 14.3057L6.9414 22.0624C6.97434 22.5894 7.41306 23 7.94112 23H22.0589C22.5869 23 23.0257 22.5894 23.0586 22.0624L23.5434 14.3057C25.0139 13.4352 26 11.8327 26 10C26 7.23858 23.7614 5 21 5C20.5265 5 20.0684 5.06582 19.6343 5.1888Z" class="Fill"/>
    <path d="M19.6343 5.1888L18.8623 5.82442C19.1148 6.13104 19.5247 6.25919 19.9069 6.15093L19.6343 5.1888ZM10.3657 5.1888L10.0931 6.15093C10.4753 6.25919 10.8852 6.13104 11.1377 5.82442L10.3657 5.1888ZM6.45661 14.3057L7.45466 14.2433C7.434 13.9128 7.25102 13.6139 6.96602 13.4452L6.45661 14.3057ZM23.0586 22.0624L24.0567 22.1248L23.0586 22.0624ZM23.5434 14.3057L23.034 13.4452C22.749 13.6139 22.566 13.9128 22.5453 14.2433L23.5434 14.3057ZM20.4063 4.55317C19.1241 2.9958 17.1779 2 15 2V4C16.555 4 17.9437 4.70867 18.8623 5.82442L20.4063 4.55317ZM15 2C12.8221 2 10.8759 2.9958 9.59369 4.55317L11.1377 5.82442C12.0563 4.70867 13.445 4 15 4V2ZM9 6C9.38041 6 9.74683 6.05283 10.0931 6.15093L10.6383 4.22666C10.1164 4.07881 9.56656 4 9 4V6ZM5 10C5 7.79086 6.79086 6 9 6V4C5.68629 4 3 6.68629 3 10H5ZM6.96602 13.4452C5.78697 12.7472 5 11.465 5 10H3C3 12.2005 4.18516 14.1231 5.94719 15.1662L6.96602 13.4452ZM7.93945 22L7.45466 14.2433L5.45855 14.3681L5.94335 22.1248L7.93945 22ZM7.94112 22C7.93959 22 7.93994 21.9998 7.94068 22.0001C7.94088 22.0002 7.94029 22 7.93944 21.9992C7.93859 21.9984 7.93856 21.9981 7.93889 21.9987C7.93948 22 7.93951 22.001 7.93945 22L5.94335 22.1248C6.00936 23.1809 6.88712 24 7.94112 24V22ZM22.0589 22H7.94112V24H22.0589V22ZM22.0605 22C22.0605 22.001 22.0605 22 22.0611 21.9987C22.0614 21.9981 22.0614 21.9984 22.0606 21.9992C22.0597 22 22.0591 22.0002 22.0593 22.0001C22.0601 21.9998 22.0604 22 22.0589 22V24C23.1129 24 23.9906 23.1809 24.0567 22.1248L22.0605 22ZM22.5453 14.2433L22.0605 22L24.0567 22.1248L24.5414 14.3681L22.5453 14.2433ZM25 10C25 11.465 24.213 12.7472 23.034 13.4452L24.0528 15.1662C25.8148 14.1231 27 12.2005 27 10H25ZM21 6C23.2091 6 25 7.79086 25 10H27C27 6.68629 24.3137 4 21 4V6ZM19.9069 6.15093C20.2532 6.05283 20.6196 6 21 6V4C20.4334 4 19.8836 4.07881 19.3617 4.22666L19.9069 6.15093Z" class="StrokeF"/>
    <path d="M12 17L11.5 12M18 17L18.5 12M7 19L23 19" class="Stroke" stroke-width="2" stroke-linecap="round"/>
    </svg>
    </span><?php break ?><?php case 'user' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(208);
    // PUG_DEBUG:208
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-user'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(207);
    // PUG_DEBUG:207
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M24 26V24C24 21.2386 21.7614 19 19 19H11C8.23858 19 6 21.2386 6 24V26" class="Stroke" stroke-width="2"/>
    <circle cx="15" cy="13" r="7" class="Fill"/>
    <circle cx="15" cy="13" r="7" class="Fill"/>
    <circle cx="15" cy="13" r="7" class="Stroke" stroke-width="2"/>
    </svg>
    </span><?php break ?><?php case 'question' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(210);
    // PUG_DEBUG:210
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-question'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(209);
    // PUG_DEBUG:209
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <circle cx="15" cy="23" r="1.3156" fill="var(--dark)"/>
    <path d="M15 21V21C15 19.3431 16.4236 18.0622 17.8769 17.2666C19.738 16.2478 21 14.2713 21 12C21 8.68629 18.3137 6 15 6C13.5502 6 12.2205 6.51419 11.1834 7.37014C10.558 7.88627 10.0389 8.52667 9.66406 9.25354" stroke="#394F2F" stroke-width="2"/>
    </svg>
    </span><?php break ?><?php case 'externalLink' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(212);
    // PUG_DEBUG:212
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-externalLink'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(211);
    // PUG_DEBUG:211
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M20 8H16M20 8V12M20 8L14.5 13.5M13.5 10H10C9.44772 10 9 10.4477 9 11V18C9 18.5523 9.44772 19 10 19H17C17.5523 19 18 18.5523 18 18V14.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="Stroke"/>
    </svg>
    </span><?php break ?><?php case 'times' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(214);
    // PUG_DEBUG:214
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-times'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(213);
    // PUG_DEBUG:213
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M7.92896 7.92892L22.0711 22.0711" class="Stroke" stroke-width="2" stroke-linecap="round"/>
    <path d="M7.92896 22.0711L22.0711 7.92897" class="Stroke" stroke-width="2" stroke-linecap="round"/>
    </svg>
    </span><?php break ?><?php case 'bars' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(216);
    // PUG_DEBUG:216
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-bars'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(215);
    // PUG_DEBUG:215
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M5 15L25 15" stroke="var(--dark)" stroke-width="2" stroke-linecap="round"/>
    <path d="M5 22L25 22" stroke="var(--dark)" stroke-width="2" stroke-linecap="round"/>
    <path d="M5 8L25 8" stroke="var(--dark)" stroke-width="2" stroke-linecap="round"/>
    </svg>
    </span><?php break ?><?php case 'more' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(218);
    // PUG_DEBUG:218
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-more'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(217);
    // PUG_DEBUG:217
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <circle cx="6" cy="15" r="2" class="Fill"/>
    <circle cx="15" cy="15" r="2" class="Fill"/>
    <circle cx="24" cy="15" r="2" class="Fill"/>
    </svg>
    </span><?php break ?><?php case 'link' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(220);
    // PUG_DEBUG:220
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-link'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(219);
    // PUG_DEBUG:219
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M17 16V16C18.1045 14.8954 18.1045 13.1045 16.9999 11.9999L12.5 7.49995C10.567 5.56695 7.43299 5.56695 5.49999 7.49994V7.49994C3.567 9.43293 3.567 12.5669 5.49999 14.4999L11 19.9999C11.5523 20.5522 12.4477 20.5522 13 19.9999V19.9999M17 7.99994V7.99994C17.5522 7.44769 18.4476 7.44769 18.9999 7.99994L23.5 12.5C25.433 14.433 25.433 17.567 23.5 19.5V19.5C21.567 21.433 18.433 21.433 16.5 19.5L13 16C11.8954 14.8954 11.8954 13.1046 13 12V12" class="Stroke" stroke="var(--dark)" stroke-width="2"/>
    </svg>
    </span><?php break ?><?php case 'arrowRightFat' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(222);
    // PUG_DEBUG:222
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-arrowRightFat'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(221);
    // PUG_DEBUG:221
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M9 3L21 15L9 27" class="Stroke" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
    </svg>
    </span><?php break ?><?php case 'chevronDown' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(224);
    // PUG_DEBUG:224
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-chevronDown'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(223);
    // PUG_DEBUG:223
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M9 12L14.2929 17.2929C14.6834 17.6834 15.3166 17.6834 15.7071 17.2929L21 12" class="Stroke" stroke="var(--dark)" stroke-width="2" stroke-linecap="round"/>
    </svg>
    </span><?php break ?><?php case 'chevronUp' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(226);
    // PUG_DEBUG:226
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-chevronUp'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(225);
    // PUG_DEBUG:225
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M9 18L14.2929 12.7071C14.6834 12.3166 15.3166 12.3166 15.7071 12.7071L21 18" stroke="var(--dark)" stroke-width="2" stroke-linecap="round"/>
    </svg>
    </span><?php break ?><?php case 'arrowRight' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(228);
    // PUG_DEBUG:228
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-arrowRight'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(227);
    // PUG_DEBUG:227
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M11 6L20 15L11 24" class="Stroke" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
    </svg>
    </span><?php break ?><?php case 'arrowLeft' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(230);
    // PUG_DEBUG:230
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-arrowLeft'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(229);
    // PUG_DEBUG:229
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M19 6L10 15L19 24" class="Stroke" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
    </svg>
    </span><?php break ?><?php case 'slash' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(232);
    // PUG_DEBUG:232
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-slash'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(231);
    // PUG_DEBUG:231
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M19 6L10 24" stroke="var(--dark)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
    </svg>
    </span><?php break ?><?php case 'search' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(234);
    // PUG_DEBUG:234
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-search'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(233);
    // PUG_DEBUG:233
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M14 22C18.4183 22 22 18.4183 22 14C22 9.58172 18.4183 6 14 6C9.58172 6 6 9.58172 6 14C6 18.4183 9.58172 22 14 22Z" class="Fill"/>
    <path d="M14 22C18.4183 22 22 18.4183 22 14C22 9.58172 18.4183 6 14 6C9.58172 6 6 9.58172 6 14C6 18.4183 9.58172 22 14 22Z" class="Fill"/>
    <path d="M14 22C18.4183 22 22 18.4183 22 14C22 9.58172 18.4183 6 14 6C9.58172 6 6 9.58172 6 14C6 18.4183 9.58172 22 14 22Z" class="Stroke" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
    <path d="M23.9999 24L19.6499 19.65" class="Stroke" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
    </svg>
    </span><?php break ?><?php case 'vk' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(236);
    // PUG_DEBUG:236
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-vk'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(235);
    // PUG_DEBUG:235
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M26.675 9.01719C26.8484 8.43125 26.675 8 25.8406 8H23.0797C22.3766 8 22.0531 8.37031 21.8797 8.78281C21.8797 8.78281 20.4734 12.2094 18.4859 14.4312C17.8437 15.0734 17.5484 15.2797 17.1969 15.2797C17.0234 15.2797 16.7562 15.0734 16.7562 14.4875V9.01719C16.7562 8.31406 16.5594 8 15.9781 8H11.6375C11.1969 8 10.9344 8.32812 10.9344 8.63281C10.9344 9.29844 11.9281 9.45312 12.0312 11.3281V15.3969C12.0312 16.2875 11.8719 16.4516 11.5203 16.4516C10.5828 16.4516 8.30469 13.0109 6.95469 9.07344C6.68281 8.30938 6.41563 8 5.70781 8H2.94687C2.15937 8 2 8.37031 2 8.78281C2 9.51406 2.9375 13.1469 6.36406 17.9469C8.64687 21.2234 11.8625 23 14.7875 23C16.5453 23 16.7609 22.6063 16.7609 21.9266C16.7609 18.7953 16.6016 18.5 17.4828 18.5C17.8906 18.5 18.5938 18.7063 20.2344 20.2859C22.1094 22.1609 22.4188 23 23.4688 23H26.2297C27.0172 23 27.4156 22.6062 27.1859 21.8281C26.6609 20.1922 23.1125 16.8266 22.9531 16.6016C22.5453 16.0766 22.6625 15.8422 22.9531 15.3734C22.9578 15.3688 26.3281 10.625 26.675 9.01719Z" class="Fill"/>
    </svg>
    </span><?php break ?><?php case 'facebook' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(238);
    // PUG_DEBUG:238
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-facebook'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(237);
    // PUG_DEBUG:237
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M20.0107 16.375L20.6218 12.3935H16.8014V9.8098C16.8014 8.72055 17.3351 7.65879 19.0461 7.65879H20.7829V4.26898C20.7829 4.26898 19.2068 4 17.6999 4C14.5537 4 12.4972 5.90695 12.4972 9.35906V12.3935H9V16.375H12.4972V26H16.8014V16.375H20.0107Z" class="Fill"/>
    </svg>
    </span><?php break ?><?php case 'instagram' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(240);
    // PUG_DEBUG:240
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-instagram'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(239);
    // PUG_DEBUG:239
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M15.0049 9.35948C11.8827 9.35948 9.36439 11.8778 9.36439 15C9.36439 18.1222 11.8827 20.6405 15.0049 20.6405C18.1271 20.6405 20.6454 18.1222 20.6454 15C20.6454 11.8778 18.1271 9.35948 15.0049 9.35948ZM15.0049 18.6671C12.9873 18.6671 11.3378 17.0225 11.3378 15C11.3378 12.9775 12.9824 11.3329 15.0049 11.3329C17.0274 11.3329 18.672 12.9775 18.672 15C18.672 17.0225 17.0225 18.6671 15.0049 18.6671ZM22.1918 9.12875C22.1918 9.8602 21.6027 10.4444 20.8762 10.4444C20.1447 10.4444 19.5605 9.85529 19.5605 9.12875C19.5605 8.40221 20.1496 7.81312 20.8762 7.81312C21.6027 7.81312 22.1918 8.40221 22.1918 9.12875ZM25.9276 10.464C25.8441 8.70166 25.4416 7.14058 24.1505 5.8544C22.8643 4.56822 21.3032 4.16568 19.5409 4.07732C17.7245 3.97423 12.2804 3.97423 10.464 4.07732C8.70657 4.16077 7.14549 4.56332 5.8544 5.84949C4.56332 7.13567 4.16568 8.69675 4.07732 10.4591C3.97423 12.2755 3.97423 17.7196 4.07732 19.536C4.16077 21.2983 4.56332 22.8594 5.8544 24.1456C7.14549 25.4318 8.70166 25.8343 10.464 25.9227C12.2804 26.0258 17.7245 26.0258 19.5409 25.9227C21.3032 25.8392 22.8643 25.4367 24.1505 24.1456C25.4367 22.8594 25.8392 21.2983 25.9276 19.536C26.0307 17.7196 26.0307 12.2804 25.9276 10.464ZM23.5811 21.4849C23.1981 22.4471 22.4569 23.1883 21.4898 23.5761C20.0416 24.1505 16.6053 24.018 15.0049 24.018C13.4046 24.018 9.96329 24.1456 8.52003 23.5761C7.55785 23.1932 6.81658 22.452 6.42876 21.4849C5.8544 20.0367 5.98695 16.6004 5.98695 15C5.98695 13.3996 5.85931 9.95838 6.42876 8.51512C6.81167 7.55294 7.55294 6.81167 8.52003 6.42385C9.9682 5.84949 13.4046 5.98204 15.0049 5.98204C16.6053 5.98204 20.0465 5.8544 21.4898 6.42385C22.452 6.80676 23.1932 7.54803 23.5811 8.51512C24.1554 9.96329 24.0229 13.3996 24.0229 15C24.0229 16.6004 24.1554 20.0416 23.5811 21.4849Z" class="Fill"/>
    </svg>
    </span><?php break ?><?php case 'youtube' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(242);
    // PUG_DEBUG:242
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-youtube'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(241);
    // PUG_DEBUG:241
     ?><svg width="30" height="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 154 110" xmlns:v="https://vecta.io/nano" fill="none">
    <path d="M154.3 17.5a19.6 19.6 0 0 0-13.8-13.8C128.4.4 79.7.4 79.7.4S31 .5 18.9 3.8A19.6 19.6 0 0 0 5.1 17.6C1.44 39.1.02 71.86 5.2 92.5A19.6 19.6 0 0 0 19 106.3c12.1 3.3 60.8 3.3 60.8 3.3s48.7 0 60.8-3.3a19.6 19.6 0 0 0 13.8-13.8c3.86-21.53 5.05-54.27-.1-75z" class="Fill" />
    <path fill="#fff" d="M64.2 78.4L104.6 55 64.2 31.6z"/>
    </svg>
    </span><?php break ?><?php case 'logo' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(244);
    // PUG_DEBUG:244
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-logo'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(243);
    // PUG_DEBUG:243
     ?><svg width="120" height="60" viewBox="0 0 120 60" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M14.5743 32.7449H12.7134C12.1407 32.7449 11.5247 33.1909 11.345 33.7354L8.30842 43.2523L5.2729 33.7354C5.09319 33.1909 4.47721 32.7449 3.90453 32.7449H2.0436C1.46875 32.7449 1 33.2136 1 33.7874V55.2471C1 55.8209 1.46875 56.2897 2.0436 56.2897H3.90453C4.47721 56.2897 4.94488 55.8209 4.94488 55.2471V42.5259L6.63585 47.6735C6.81448 48.2191 7.19337 48.6651 7.74224 48.6651H8.8746C9.42238 48.6651 9.80237 48.2191 9.98099 47.6735L11.672 42.5259V55.2471C11.672 55.8209 12.1407 56.2897 12.7134 56.2897H14.5743C15.1481 56.2897 15.6168 55.8209 15.6168 55.2471V33.7874C15.6168 33.2136 15.1481 32.7449 14.5743 32.7449Z" class="Primary"/>
    <path d="M103.636 43.5049H102.487C101.915 43.5049 101.259 43.9347 101.03 44.4608L98.7471 49.708V44.5474C98.7471 43.9736 98.2784 43.5049 97.7046 43.5049H96.1879C95.6142 43.5049 95.1465 43.9736 95.1465 44.5474V55.2508C95.1465 55.8245 95.6142 56.2943 96.1879 56.2943H97.3376C97.9103 56.2943 98.5663 55.8635 98.7937 55.3384L101.078 50.0912V55.2508C101.078 55.8245 101.548 56.2943 102.12 56.2943H103.636C104.21 56.2943 104.677 55.8245 104.677 55.2508V44.5474C104.677 43.9736 104.21 43.5049 103.636 43.5049Z" class="Primary"/>
    <path d="M46.1477 49.5738L49.2806 55.3774C49.5534 55.8819 49.3066 56.2943 48.7339 56.2943H46.873C46.2992 56.2943 45.6356 55.8678 45.3996 55.3449L43.0169 50.1021V55.2518C43.0169 55.8245 42.5481 56.2943 41.9744 56.2943H40.4588C39.885 56.2943 39.4163 55.8245 39.4163 55.2518V44.5474C39.4163 43.9736 39.885 43.5049 40.4588 43.5049H41.9744C42.5481 43.5049 43.0169 43.9736 43.0169 44.5474V49.066L45.1993 44.4478C45.4451 43.9303 46.1141 43.5049 46.6868 43.5049H48.5477C49.1215 43.5049 49.3586 43.913 49.0771 44.411L46.1477 49.5738Z" class="Primary"/>
    <path fill-rule="evenodd" clip-rule="evenodd" d="M17.6802 49.8869C17.6802 46.3393 19.2965 43.188 22.87 43.188C26.4457 43.188 28.0609 46.3393 28.0609 49.8869C28.0609 53.4345 26.4457 56.6129 22.87 56.6129C19.2965 56.6129 17.6802 53.4345 17.6802 49.8869ZM24.3802 49.8869C24.3802 47.8744 24.0359 46.3393 22.87 46.3393C21.7052 46.3393 21.388 47.8744 21.388 49.8869C21.388 51.9254 21.7052 53.4616 22.87 53.4616C24.0359 53.4616 24.3802 51.9254 24.3802 49.8869Z" class="Primary"/>
    <path fill-rule="evenodd" clip-rule="evenodd" d="M55.365 43.188C51.7904 43.188 50.1763 46.3393 50.1763 49.8869C50.1763 53.4345 51.7904 56.6129 55.365 56.6129C58.9408 56.6129 60.5559 53.4345 60.5559 49.8869C60.5559 46.3393 58.9408 43.188 55.365 43.188ZM55.365 46.3393C56.5299 46.3393 56.8741 47.8744 56.8741 49.8869C56.8741 51.9254 56.5299 53.4616 55.365 53.4616C54.2002 53.4616 53.883 51.9254 53.883 49.8869C53.883 47.8744 54.2002 46.3393 55.365 46.3393Z" class="Primary"/>
    <path d="M35.9773 46.3383C36.1407 46.3383 36.2999 46.3513 36.4514 46.3718C36.9862 46.4454 37.4647 46.0958 37.4647 45.522V44.2565C37.4647 43.6838 37.0046 43.3266 36.4514 43.2497C36.1343 43.2118 35.7618 43.188 35.3191 43.188C31.6416 43.188 29.5349 45.941 29.5349 49.8858C29.5349 53.8318 31.6416 56.5859 35.3191 56.5859C35.7618 56.5859 36.1343 56.561 36.4514 56.5242C37.0046 56.4473 37.4647 56.09 37.4647 55.5174V54.2518C37.4647 53.6781 36.9862 53.3273 36.4514 53.4009C36.2999 53.4215 36.1407 53.4345 35.9773 53.4345C34.1954 53.4345 33.2146 52.1917 33.2146 49.8858C33.2146 47.5821 34.1954 46.3383 35.9773 46.3383Z" class="Primary"/>
    <path d="M80.5574 46.3718C80.4048 46.3513 80.2467 46.3383 80.0832 46.3383C78.3002 46.3383 77.3216 47.5821 77.3216 49.8858C77.3216 52.1917 78.3002 53.4345 80.0832 53.4345C80.2467 53.4345 80.4048 53.4215 80.5574 53.4009C81.0922 53.3273 81.5707 53.6781 81.5707 54.2518V55.5174C81.5707 56.09 81.1095 56.4473 80.5574 56.5242C80.2402 56.561 79.8689 56.5859 79.425 56.5859C75.7465 56.5859 73.6409 53.8318 73.6409 49.8858C73.6409 45.941 75.7465 43.188 79.425 43.188C79.8689 43.188 80.2402 43.2118 80.5574 43.2497C81.1095 43.3266 81.5707 43.6838 81.5707 44.2565V45.522C81.5707 46.0958 81.0922 46.4454 80.5574 46.3718Z" class="Primary"/>
    <path fill-rule="evenodd" clip-rule="evenodd" d="M70.0745 49.8661V49.682C71.2307 49.2382 72.035 48.2357 72.035 46.6476C72.035 44.7769 70.9221 43.5049 68.036 43.5049H63.5921C63.0183 43.5049 62.5496 43.9726 62.5496 44.5463V55.2507C62.5496 55.8245 63.0183 56.2933 63.5921 56.2933H68.2211C71.1332 56.2933 72.2472 54.7365 72.2472 52.6677C72.2472 51.1327 71.4017 50.2417 70.0745 49.8661ZM67.3746 53.4602H66.1502V51.1359H67.3746C68.232 51.1359 68.5925 51.5029 68.5925 52.2553C68.5925 53.0077 68.1681 53.4602 67.3746 53.4602ZM67.2685 46.338C68.088 46.338 68.3803 46.6768 68.3803 47.4281C68.3803 48.1794 68.0631 48.593 67.2685 48.593H66.1502V46.338H67.2685Z" class="Primary"/>
    <path d="M116.177 38.9963H117.669C118.244 38.9963 118.713 39.4662 118.713 40.0399V55.2479C118.713 55.8205 118.244 56.2904 117.669 56.2904H115.809C115.235 56.2904 114.766 55.8205 114.766 55.2479V47.2726L111.28 55.3345C111.053 55.8606 110.397 56.2904 109.825 56.2904H108.332C107.758 56.2904 107.289 55.8205 107.289 55.2479V40.0399C107.289 39.4662 107.758 38.9963 108.332 38.9963H110.193C110.767 38.9963 111.235 39.4662 111.235 40.0399V48.0141L114.72 39.9533C114.948 39.4272 115.602 38.9963 116.177 38.9963Z" class="Primary"/>
    <path d="M113.127 37.6868C115.642 37.6868 117.496 35.8291 117.496 33.5785C117.496 33.0837 117.12 32.7449 116.662 32.7449H115.469C115.01 32.7449 114.636 33.0664 114.636 33.5785C114.609 34.3092 114.079 34.9327 113.127 34.9327C112.174 34.9327 111.645 34.3092 111.619 33.5785C111.619 33.0664 111.244 32.7449 110.785 32.7449H109.592C109.133 32.7449 108.759 33.0837 108.759 33.5785C108.759 35.8291 110.612 37.6868 113.127 37.6868Z" class="Primary"/>
    <path d="M90.2968 49.5738L93.4287 55.3774C93.7026 55.8819 93.4568 56.2943 92.882 56.2943H91.0222C90.4484 56.2943 89.7859 55.8678 89.5488 55.3449L87.1671 50.1021V55.2518C87.1671 55.8245 86.6973 56.2943 86.1246 56.2943H84.6079C84.0342 56.2943 83.5654 55.8245 83.5654 55.2518V44.5474C83.5654 43.9736 84.0342 43.5049 84.6079 43.5049H86.1246C86.6973 43.5049 87.1671 43.9736 87.1671 44.5474V49.066L89.3485 44.4478C89.5942 43.9303 90.2622 43.5049 90.837 43.5049H92.6969C93.2696 43.5049 93.5077 43.913 93.2252 44.411L90.2968 49.5738Z" class="Primary"/>
    <path d="M104.299 39.1946H104.318C100.804 18.6702 82.8871 3 61.3765 3C39.8648 3 21.9483 18.6702 18.4342 39.1946H18.4332C18.3368 39.7792 18.6237 40.236 19.1975 40.236H21.0573C21.6311 40.236 21.9894 39.7716 22.0922 39.1946H22.0933C25.564 20.6664 41.8567 6.60171 61.3765 6.60171C80.8952 6.60171 97.1868 20.6664 100.659 39.1946H100.64C100.744 39.7716 101.101 40.236 101.675 40.236H103.536C104.109 40.236 104.396 39.7792 104.299 39.1946Z" class="Secondary" fill=""/>
    <path d="M33.8274 40.2406H35.5249V34.228H37.3566V32.7449H33.8274V40.2406Z" class="Secondary"/>
    <path fill-rule="evenodd" clip-rule="evenodd" d="M39.0994 32.7449H41.3587C42.9208 32.7449 43.6407 33.9649 43.6407 35.5509C43.6407 37.1369 42.9208 38.3461 41.3587 38.3461H40.7958V40.2406H39.0994V32.7449ZM40.7958 36.863H41.1671C41.6282 36.863 41.9086 36.5285 41.9086 35.5401C41.9086 34.5517 41.6282 34.228 41.1671 34.228H40.7958V36.863Z" class="Secondary" fill=" "/>
    <path fill-rule="evenodd" clip-rule="evenodd" d="M47.7465 32.6152C45.9938 32.6152 45.2068 34.2553 45.2068 36.493C45.2068 38.7296 45.9938 40.3697 47.7465 40.3697C49.4992 40.3697 50.2862 38.7296 50.2862 36.493C50.2862 34.2553 49.4992 32.6152 47.7465 32.6152ZM47.7465 38.8627C47.1511 38.8627 46.9476 37.8635 46.9476 36.493C46.9476 35.1095 47.1511 34.12 47.7465 34.12C48.3419 34.12 48.5454 35.1095 48.5454 36.493C48.5454 37.8635 48.3419 38.8627 47.7465 38.8627Z" class="Secondary" fill=" "/>
    <path d="M54.7823 32.7449H56.6595L55.0302 36.4083L56.7602 40.2406H54.8841L54.0527 37.8806L53.2213 40.2406H51.343L53.0632 36.4083L51.4329 32.7449H53.31L54.0527 34.9815L54.7823 32.7449Z" class="Secondary" fill=" "/>
    <path fill-rule="evenodd" clip-rule="evenodd" d="M60.3657 32.6152C58.612 32.6152 57.825 34.2553 57.825 36.493C57.825 38.7296 58.612 40.3697 60.3657 40.3697C62.1184 40.3697 62.9054 38.7296 62.9054 36.493C62.9054 34.2553 62.1184 32.6152 60.3657 32.6152ZM60.3657 38.8627C59.7703 38.8627 59.5668 37.8635 59.5668 36.493C59.5668 35.1095 59.7703 34.12 60.3657 34.12C60.9622 34.12 61.1625 35.1095 61.1625 36.493C61.1625 37.8635 60.9622 38.8627 60.3657 38.8627Z" class="Secondary" fill=" "/>
    <path d="M64.0908 38.8138C64.6613 38.8213 64.9829 38.5529 65.1128 36.8121L65.3823 32.7449H69.3142V40.2395H67.6092V34.228H66.9564L66.7983 36.8348C66.6294 39.892 65.6075 40.3748 64.2922 40.3748L64.0908 38.8138Z" class="Secondary" fill=" "/>
    <path fill-rule="evenodd" clip-rule="evenodd" d="M76.0255 32.7449H72.0925L71.823 36.7341C71.6887 38.6784 71.4181 38.791 70.9905 38.869V41.623H72.6999V40.2395H74.8455V41.623H76.5538V38.7575H76.0255V32.7449ZM74.3291 38.7575H72.9001C73.239 38.2855 73.4631 37.5547 73.5302 36.4635L73.6655 34.228H74.3291V38.7575Z" class="Secondary" fill=" "/>
    <path d="M80.0197 32.7449V36.2405L81.6457 32.7449H82.9752V40.2406H81.2766V36.5761L79.5391 40.2406H78.3223V32.7449H80.0197Z" class="Secondary" fill=" "/>
    <path d="M88.021 35.644H86.762V32.7449H85.0635V40.2406H86.762V37.1271H88.021V40.2406H89.7174V32.7449H88.021V35.644Z" class="Secondary" fill=" "/>
    <path d="M91.8047 40.2406V32.7449H95.3317V34.228H93.5011V40.2406H91.8047Z" class="Secondary" fill=" "/>
    <path fill-rule="evenodd" clip-rule="evenodd" d="M30.9723 32.7449H28.3416L27.0718 40.2395H28.8136L28.9598 39.027H30.353L30.5003 40.2395H32.241L30.9723 32.7449ZM29.1384 37.5428L29.5368 34.2269H29.775L30.1755 37.5428H29.1384Z" class="Secondary" fill=" "/>
    <path d="M59.7433 21.4752C59.7551 21.6663 59.7674 21.864 59.7821 22.0687C59.8795 25.1811 59.6814 28.3325 59.244 31.4199C59.4628 31.4235 59.6944 31.4217 59.919 31.42C60.3857 31.4165 60.8224 31.4133 61.0519 31.4578C61.3344 31.5129 61.4259 31.6125 61.4793 31.6706C61.5088 31.7027 61.5266 31.7221 61.5586 31.7144C61.5687 31.712 61.5868 31.7047 61.6133 31.6941C61.6718 31.6705 61.771 31.6305 61.9147 31.591C62.5903 31.3918 63.3329 31.3084 63.4293 31.3323C63.3383 30.5366 63.2236 29.7452 63.1088 28.9549C62.8663 27.277 62.6249 25.6022 62.6033 23.8928C62.6033 23.0896 62.8219 22.6035 63.5516 21.9226C63.7318 21.8423 63.7797 22.0267 63.8182 22.1753C63.8264 22.207 63.8342 22.237 63.8428 22.2625C64.33 25.0101 65.4959 26.3719 67.4662 26.9067C68.1947 27.1016 68.998 27.1741 69.7515 27.1503C70.2613 27.1254 70.7485 27.0529 71.2833 26.8829C72.3881 26.5148 73.3904 25.8907 74.3888 25.2689C75.5661 24.5358 76.7381 23.806 78.0667 23.5031C78.2615 23.4544 78.4561 23.4241 78.6507 23.3938C78.8453 23.3635 79.0399 23.3332 79.2348 23.2844C78.8937 22.19 78.2377 21.2178 77.4593 20.342C76.852 19.6373 76.2685 19.1014 75.4902 18.6164C72.6452 16.8161 69.6053 15.9165 66.5416 17.4732C65.6009 17.9617 64.7406 18.6525 63.8905 19.3351C63.599 19.5692 63.3087 19.8023 63.0168 20.0259C62.9674 20.0628 62.9056 20.115 62.8354 20.1743C62.4899 20.4661 61.9415 20.9291 61.6787 20.5845C61.4601 19.0289 61.3388 17.5696 61.3875 15.9901C61.4113 15.5527 61.4362 15.4304 61.7773 15.1392C61.8316 15.0918 61.8866 15.0445 61.9418 14.997C62.4542 14.5557 62.9836 14.0999 63.138 13.4861C63.3143 12.5702 63.1844 11.5149 63.0623 10.5224C63.0156 10.1434 62.9701 9.77367 62.9432 9.42432L62.482 9.61918C62.293 9.72265 62.1083 9.82156 61.929 9.91761C59.9172 10.9952 58.5793 11.7119 59.2711 14.4583C59.2905 14.5606 59.3233 14.6747 59.3576 14.7939C59.4536 15.1276 59.5611 15.5016 59.4183 15.7703C59.1884 16.019 58.7481 15.7712 58.3931 15.5715C58.2968 15.5173 58.2068 15.4667 58.129 15.4304C57.8699 15.3119 57.7927 15.0581 57.7005 14.7549C57.6976 14.7452 57.6946 14.7354 57.6916 14.7257C57.5942 14.2872 57.4491 14.0209 57.1071 13.7037C56.7433 13.3638 56.3536 13.1202 55.8675 12.999C53.5584 12.3916 51.3694 13.2902 49.4728 14.7018C49.159 14.9426 48.863 15.2017 48.5702 15.4581C48.2732 15.7182 47.9794 15.9754 47.6735 16.2077C47.663 16.216 47.6526 16.2242 47.6424 16.2323C47.1994 16.5815 46.9511 16.7773 47.26 17.2047C47.8016 17.5391 48.3211 17.8952 48.8421 18.2522C49.4208 18.6488 50.0013 19.0466 50.616 19.4175C51.3694 19.8559 52.0266 20.2197 52.9013 20.2933C54.1895 20.3907 55.4063 19.9047 56.3536 18.7853C56.4991 18.6154 56.6129 18.441 56.7183 18.2795C57.0354 17.7934 57.2767 17.4235 58.0803 17.6421C59.5658 18.6042 59.6386 19.7814 59.7433 21.4752Z" class="Secondary"/>
    </svg>
    </span><?php break ?><?php case 'osa' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(246);
    // PUG_DEBUG:246
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-osa'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(245);
    // PUG_DEBUG:245
     ?><svg width="159" height="30" viewBox="0 0 159 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <g clip-path="url(#clip0sa)">
    <path d="M1.245 12H3.015V8.28H5.13C7.38 8.28 8.58 6.75 8.58 5.085C8.58 3.405 7.35 1.8 5.16 1.8H1.245V12ZM3.015 6.765V3.345H4.98C6.105 3.345 6.795 4.11 6.795 5.07C6.795 5.94 6.225 6.765 4.935 6.765H3.015ZM12.3312 5.19C11.4312 5.19 10.5162 5.43 9.52617 5.88L9.99117 7.125C10.6812 6.795 11.4162 6.585 12.0762 6.585C12.9312 6.585 13.4412 6.93 13.4412 7.62V7.92C13.2012 7.905 12.9462 7.89 12.6012 7.89C10.5612 7.89 9.21117 8.73 9.21117 10.26C9.21117 11.445 10.0812 12.135 11.3112 12.135C12.4062 12.135 13.2012 11.7 13.6962 10.995L13.9962 12H15.0912V7.68C15.0912 6.06 14.0412 5.19 12.3312 5.19ZM11.7912 10.905C11.1912 10.905 10.8312 10.62 10.8312 10.095C10.8312 9.36 11.5212 8.94 12.7062 8.94C13.0062 8.94 13.2162 8.955 13.4862 8.985C13.4562 10.2 12.7512 10.905 11.7912 10.905ZM18.9818 12.15C20.6468 12.15 21.7118 11.325 21.7118 10.095C21.7118 9.33 21.3068 8.7 20.4968 8.46C21.0518 8.25 21.3818 7.68 21.3818 7.08C21.3818 5.865 20.2868 5.19 18.9368 5.19C18.1118 5.19 17.3468 5.4 16.5968 5.79L17.0768 6.96C17.5718 6.72 18.1418 6.54 18.6818 6.54C19.4318 6.54 19.7618 6.885 19.7618 7.26C19.7618 7.68 19.4618 7.965 18.9068 7.965H17.7518V9.18H19.0418C19.7618 9.18 20.0618 9.51 20.0618 9.96C20.0618 10.44 19.6868 10.815 18.8018 10.815C18.1718 10.815 17.5118 10.68 16.8518 10.245L16.2818 11.43C17.0318 11.895 17.8718 12.15 18.9818 12.15ZM27.0513 5.145C26.0163 5.145 25.1763 5.595 24.6213 6.33L24.3063 5.31H23.1963V15.3H24.8313V12.825C24.8313 12.24 24.8313 11.7 24.8013 11.235C25.3413 11.805 26.1213 12.165 27.0513 12.165C28.9113 12.165 30.2463 10.71 30.2463 8.625C30.2463 6.615 28.8963 5.145 27.0513 5.145ZM26.7063 10.74C25.5663 10.74 24.7713 9.9 24.7713 8.64C24.7713 7.41 25.5513 6.585 26.7063 6.585C27.8313 6.585 28.5813 7.425 28.5813 8.67C28.5813 9.885 27.8313 10.74 26.7063 10.74ZM34.3185 5.19C33.4185 5.19 32.5035 5.43 31.5135 5.88L31.9785 7.125C32.6685 6.795 33.4035 6.585 34.0635 6.585C34.9185 6.585 35.4285 6.93 35.4285 7.62V7.92C35.1885 7.905 34.9335 7.89 34.5885 7.89C32.5485 7.89 31.1985 8.73 31.1985 10.26C31.1985 11.445 32.0685 12.135 33.2985 12.135C34.3935 12.135 35.1885 11.7 35.6835 10.995L35.9835 12H37.0785V7.68C37.0785 6.06 36.0285 5.19 34.3185 5.19ZM33.7785 10.905C33.1785 10.905 32.8185 10.62 32.8185 10.095C32.8185 9.36 33.5085 8.94 34.6935 8.94C34.9935 8.94 35.2035 8.955 35.4735 8.985C35.4435 10.2 34.7385 10.905 33.7785 10.905ZM42.6952 5.295C41.7502 5.295 40.8802 5.655 40.2052 6.51C40.3402 5.34 40.8202 4.47 41.5852 4.005C42.7402 3.255 43.8352 3.375 45.1402 2.55L44.6002 1.095C43.4152 1.845 42.1852 1.695 40.6702 2.73C39.2452 3.69 38.6602 5.52 38.6602 7.11V7.89C38.6602 10.68 40.0852 12.165 42.2602 12.165C44.2702 12.165 45.8152 10.935 45.8152 8.655C45.8152 6.495 44.3902 5.295 42.6952 5.295ZM42.2602 10.74C41.2102 10.74 40.4152 9.99 40.4152 8.745C40.4152 7.56 41.1952 6.72 42.2752 6.72C43.4602 6.72 44.1502 7.605 44.1502 8.7C44.1502 9.84 43.4902 10.74 42.2602 10.74ZM50.458 12.195C52.558 12.195 54.058 10.725 54.058 8.655C54.058 6.585 52.558 5.13 50.458 5.13C48.358 5.13 46.873 6.585 46.873 8.655C46.873 10.725 48.358 12.195 50.458 12.195ZM50.458 10.74C49.318 10.74 48.523 9.885 48.523 8.655C48.523 7.425 49.318 6.57 50.458 6.57C51.613 6.57 52.393 7.425 52.393 8.655C52.393 9.885 51.613 10.74 50.458 10.74ZM56.5354 12H58.1854V6.72H60.0904V5.31H54.6154V6.72H56.5354V12ZM64.3566 8.55L67.0116 5.37V5.31H65.1516L62.9466 7.965V5.31H61.3116V12H62.9466V9.15L65.3616 12H67.2366V11.925L64.3566 8.55ZM70.7931 5.19C69.8931 5.19 68.9781 5.43 67.9881 5.88L68.4531 7.125C69.1431 6.795 69.8781 6.585 70.5381 6.585C71.3931 6.585 71.9031 6.93 71.9031 7.62V7.92C71.6631 7.905 71.4081 7.89 71.0631 7.89C69.0231 7.89 67.6731 8.73 67.6731 10.26C67.6731 11.445 68.5431 12.135 69.7731 12.135C70.8681 12.135 71.6631 11.7 72.1581 10.995L72.4581 12H73.5531V7.68C73.5531 6.06 72.5031 5.19 70.7931 5.19ZM70.2531 10.905C69.6531 10.905 69.2931 10.62 69.2931 10.095C69.2931 9.36 69.9831 8.94 71.1681 8.94C71.4681 8.94 71.6781 8.955 71.9481 8.985C71.9181 10.2 71.2131 10.905 70.2531 10.905ZM6.27 20.31L3.225 23.385C3 23.625 2.775 23.865 2.55 24.135C2.58 23.865 2.58 23.595 2.58 23.31V20.31H0.96V27.015H1.59L4.71 23.82C4.92 23.61 5.115 23.4 5.31 23.16C5.28 23.43 5.28 23.685 5.28 23.94V27H6.9V20.31H6.27ZM12.1954 27H13.8304V21.735H16.5304V27H18.1654V20.31H12.1954V27ZM23.2559 27.195C25.3559 27.195 26.8559 25.725 26.8559 23.655C26.8559 21.585 25.3559 20.13 23.2559 20.13C21.1559 20.13 19.6709 21.585 19.6709 23.655C19.6709 25.725 21.1559 27.195 23.2559 27.195ZM23.2559 25.74C22.1159 25.74 21.3209 24.885 21.3209 23.655C21.3209 22.425 22.1159 21.57 23.2559 21.57C24.4109 21.57 25.1909 22.425 25.1909 23.655C25.1909 24.885 24.4109 25.74 23.2559 25.74ZM34.1304 25.62V20.31H29.2254L28.9254 23.565C28.8504 24.42 28.7154 25.035 28.3404 25.62H27.5004V28.71H29.0004V27H33.5604V28.71H35.0604V25.62H34.1304ZM30.6654 21.675H32.5554V25.65H30.0204C30.2754 25.14 30.3804 24.645 30.4554 23.835L30.6654 21.675ZM43.0073 25.62V20.31H38.1023L37.8023 23.565C37.7273 24.42 37.5923 25.035 37.2173 25.62H36.3773V28.71H37.8773V27H42.4373V28.71H43.9373V25.62H43.0073ZM39.5423 21.675H41.4323V25.65H38.8973C39.1523 25.14 39.2573 24.645 39.3323 23.835L39.5423 21.675ZM48.1843 20.13C46.1593 20.13 44.7343 21.675 44.7343 23.64C44.7343 25.74 46.2043 27.195 48.3493 27.195C49.3843 27.195 50.1943 26.88 50.9593 26.265L50.2693 25.215C49.8043 25.62 49.2643 25.845 48.4993 25.845C47.4193 25.845 46.5793 25.275 46.3693 24.195H51.1693C51.1993 23.925 51.2293 23.655 51.2293 23.415C51.2293 21.405 50.0743 20.13 48.1843 20.13ZM48.1543 21.465C49.0093 21.465 49.6393 22.02 49.6843 23.085H46.3843C46.5643 22.05 47.2693 21.465 48.1543 21.465ZM56.5386 20.145C55.5036 20.145 54.6636 20.595 54.1086 21.33L53.7936 20.31H52.6836V30.3H54.3186V27.825C54.3186 27.24 54.3186 26.7 54.2886 26.235C54.8286 26.805 55.6086 27.165 56.5386 27.165C58.3986 27.165 59.7336 25.71 59.7336 23.625C59.7336 21.615 58.3836 20.145 56.5386 20.145ZM56.1936 25.74C55.0536 25.74 54.2586 24.9 54.2586 23.64C54.2586 22.41 55.0386 21.585 56.1936 21.585C57.3186 21.585 58.0686 22.425 58.0686 23.67C58.0686 24.885 57.3186 25.74 56.1936 25.74ZM67.0385 23.535L69.3935 20.385V20.31H67.5635L65.6135 23.1V20.31H63.9785V23.115L62.0135 20.31H60.1985V20.385L62.5385 23.55L59.9585 26.91V27H61.7585L63.9785 24.03V27H65.6135V24.03L67.8185 27H69.6335V26.91L67.0385 23.535ZM73.7462 23.55L76.4012 20.37V20.31H74.5412L72.3362 22.965V20.31H70.7012V27H72.3362V24.15L74.7512 27H76.6262V26.925L73.7462 23.55ZM80.1827 20.19C79.2827 20.19 78.3677 20.43 77.3777 20.88L77.8427 22.125C78.5327 21.795 79.2677 21.585 79.9277 21.585C80.7827 21.585 81.2927 21.93 81.2927 22.62V22.92C81.0527 22.905 80.7977 22.89 80.4527 22.89C78.4127 22.89 77.0627 23.73 77.0627 25.26C77.0627 26.445 77.9327 27.135 79.1627 27.135C80.2577 27.135 81.0527 26.7 81.5477 25.995L81.8477 27H82.9427V22.68C82.9427 21.06 81.8927 20.19 80.1827 20.19ZM79.6427 25.905C79.0427 25.905 78.6827 25.62 78.6827 25.095C78.6827 24.36 79.3727 23.94 80.5577 23.94C80.8577 23.94 81.0677 23.955 81.3377 23.985C81.3077 25.2 80.6027 25.905 79.6427 25.905Z" fill="var(--dim)" class="Fill"/>
    <path d="M102.931 23.5332C101.747 23.5332 100.637 23.3112 99.6006 22.8672C98.5646 22.4232 97.6581 21.8127 96.8811 21.0357C96.1041 20.2587 95.4843 19.3522 95.0218 18.3162C94.5778 17.2616 94.3558 16.1424 94.3558 14.9584C94.3558 13.7744 94.5778 12.6644 95.0218 11.6283C95.4843 10.5923 96.1041 9.68583 96.8811 8.90882C97.6581 8.13181 98.5646 7.52131 99.6006 7.0773C100.637 6.6333 101.747 6.4113 102.931 6.4113C104.115 6.4113 105.225 6.6333 106.261 7.0773C107.315 7.52131 108.222 8.13181 108.98 8.90882C109.757 9.68583 110.368 10.5923 110.812 11.6283C111.274 12.6644 111.505 13.7744 111.505 14.9584C111.505 16.1424 111.274 17.2616 110.812 18.3162C110.368 19.3522 109.757 20.2587 108.98 21.0357C108.222 21.7942 107.315 22.4047 106.261 22.8672C105.225 23.3112 104.115 23.5332 102.931 23.5332ZM158.043 28.556L144.445 1.41625H138.368L132.29 13.5986C131.661 13.1916 130.968 12.8679 130.209 12.6274C129.451 12.3869 128.655 12.2666 127.823 12.2666H122.356C121.616 12.2666 120.978 11.9983 120.441 11.4618C119.905 10.9253 119.636 10.2871 119.636 9.54708C119.636 8.78857 119.905 8.14106 120.441 7.60456C120.978 7.06805 121.616 6.7998 122.356 6.7998H131.93L134.649 1.333H122.384C121.477 1.3515 120.608 1.50875 119.775 1.80476C118.943 2.08226 118.184 2.48001 117.5 2.99802C116.833 3.51602 116.251 4.12653 115.751 4.82953C115.252 5.53254 114.882 6.30955 114.641 7.16055C113.994 6.23555 113.244 5.39379 112.393 4.63528C111.561 3.87678 110.645 3.22927 109.646 2.69277C108.666 2.15626 107.611 1.74001 106.483 1.444C105.354 1.148 104.189 1 102.986 1C101.062 1 99.2491 1.37 97.5471 2.11001C95.8451 2.85002 94.3558 3.84903 93.0793 5.10704C91.8213 6.36505 90.8223 7.84506 90.0823 9.54708C89.3608 11.2491 89 13.0714 89 15.0139C89 16.9379 89.3608 18.7509 90.0823 20.4529C90.8223 22.1549 91.8213 23.6442 93.0793 24.9207C94.3558 26.1787 95.8451 27.1685 97.5471 27.89C99.2491 28.63 101.062 29 102.986 29C104.873 29 106.64 28.6485 108.286 27.9455C109.951 27.261 111.413 26.3175 112.671 25.115C113.929 23.9125 114.937 22.4972 115.696 20.8692C116.473 19.2412 116.898 17.5021 116.972 15.6521C117.694 16.2811 118.517 16.7899 119.442 17.1784C120.386 17.5484 121.385 17.7334 122.439 17.7334H127.906C128.664 17.7334 129.312 18.0017 129.848 18.5382C130.385 19.0562 130.653 19.6944 130.653 20.4529C130.653 21.2114 130.385 21.8589 129.848 22.3954C129.312 22.9134 128.664 23.1724 127.906 23.1724H118.221C118.295 23.2279 118.23 23.4407 118.027 23.8107C117.842 24.1807 117.537 24.634 117.111 25.1705C116.704 25.6885 116.204 26.262 115.612 26.891C115.039 27.5015 114.401 28.075 113.698 28.6115L127.823 28.6392C128.951 28.6392 130.006 28.4265 130.986 28.001C131.985 27.5755 132.845 26.9927 133.567 26.2527C134.307 25.5127 134.89 24.6525 135.315 23.672C135.759 22.6729 135.981 21.6184 135.981 20.5084C135.981 20.1939 135.963 19.8887 135.926 19.5927C135.889 19.2967 135.842 19.0099 135.787 18.7324L139.755 10.7681L141.115 8.04856L141.392 7.46581L147.886 20.4252H139.311C139.311 20.4252 139.311 20.4344 139.311 20.4529C139.311 21.4519 139.182 22.4139 138.923 23.3389C138.682 24.264 138.34 25.1335 137.896 25.9475L150.606 25.892L151.965 28.6115H158.043V28.556Z" fill="var(--dim)" class="Fill"/>
    </g>
    <defs>
    <clipPath id="clip0sa">
    <rect width="158.043" height="30" fill="white"/>
    </clipPath>
    </defs>
    </svg>
    </span><?php break ?><?php case 'youtubePlay' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(248);
    // PUG_DEBUG:248
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-youtubePlay'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(247);
    // PUG_DEBUG:247
     ?><svg width="68" height="68" viewBox="0 0 68 68" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
    <rect width="68" height="68" fill="url(#pattern0)"/>
    <defs>
    <pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1">
    <use xlink:href="#image0" transform="scale(0.00735294)"/>
    </pattern>
    <image id="image0" width="136" height="136" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIgAAACICAYAAAA8uqNSAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAavSURBVHgB7d07bBNZFAbgk7GJA7alCFwQNzFZKdFKu1VotlpKCmjo2ApRhG6b7ZAQHR0FFCBSbbXugYIGlq1SpUkXS5FiIcViFZRE47ykOOGc67nOzGTGM54kIr73/6Tg8RPB/XPumYdniAAAAAAAAAAAAAAAAAAAAAAAAAAAAE5nhC6IycnJCb18dHRU9Rb1LTmOU+Kbsu8tVf/7+T2lkZGRcuhjJyhelQbAn+3y3+FGPNXmn6jHW6H7a75l9/DwUN4n/y5ZVu/vdDpuPp9Xy81ms0UXwLkERAb74OCgnMvlZuQ+/ydM8H9u2RtAGTS5LXkvH2igLKSDpQPTkqBKYKkbzJYEjO+vnUeoMgekUqmUS6XSLHUHXIIwTd1Bx4D/QF6la3ghanB4Fnd2dhrr6+tups8b5MVeKO7z4i3qBgKGR4N/PnNw3g1SaVIFRAeDE3lfpgqCYTffbrfraapKYkCkn+Ae4o2vcQQDSM/C08+jpGqS6/fk1NTUNH/Q3xyOCoFpZKXhbrFYXHBd91vci2IrCCqHNaSp/SOukjhx70I4rFGWsZY+M+rJyIDUarU5hMMeMtbe2ukJJ6YYmVp4bnpHYB0Oyt3wVHOignA45gisxGP/KPxYICDe/pC7BLb6PdyLBALCzcpNApvJBtE7/gcCAeE56A6B7W757/QCMjMzI6VllsB2s/5ppheQ/f19hAOUsbGxXhb8Uwz2zoKSy+UiA4IKAlrvSLxeQHgdGBUEFM5CsIJIg4rjPMCnrBtVFZDd3V1UDwgoFApqmlEB4aYEO+YggAOiioYKCE8vEwTgc3h4qIqGCggaVIhwHBA0qBDhuAfhCoIpBgI4E4EKgiYVAuSrrHLreDvpjPP69eva1NRUgSArtS3E2dvbK5GBbt++fe3jx4+/ICjZFYvFkmP69CJBefv27c9PnjxBnzUgyYbDjF+D4d+E3MOHD6sLCwu/Pnjw4BpBKrwtpOxEnFPDWNevXx99+vRpTYJy7969cYK+RkdH1RRjZA/SjwTl+fPnP6E/6U9VEAqetccqaGQT2TXFxEEjG022sDvYzN6FRvYkKR5SQazrQfpBIxuEChIDjawy4RD0ZXsja8WGsrNgYyOrm1T0ICnZ1shK8cAUk4FNjSwCcgo2NLJWb0k9K6Y2stJ+YDX3DBnYyKIHOWumNbIIyDkxpZFFQM7Z9vZ2Z3Nzs0NDKk9wLiQY8/PzrZcvX36lIYaAnDEJRr1e///Vq1dfNzY2hrZyaHnvAjRYkzkDHz58+Pb48eMvJgTD40oFkWuGICCnsLS05L548aL16dOnTFd1uqi4eLQxxZzCysrK7rNnz76YFgw/BCQDUxrQNKQHaXMPQpDMtAY0iVxNM6+v2Qr9GdiAJpIVGEwxCUxtQNOSgFyIKzxfNDY0oEnk2ruoICE2NaBJ1Gqut6GMbGdbA5qGqiDyB1nOxgY0Dd2kWhsQ2xvQFFwrt4OgAU3HcRy7phg0oIM5ODhoqQ1lnBQyGRrQ7GSKWSODoQHNTrKRHxsba+/v75Np0ICeHlfetrry9o0bN/7FQUMQtrq6elM3H/gtgwCeXtQuGH0qbuyPgQDOhOpNdQVBQCDsuIIwo9dkIJPjCqLnGwCNt40FArJMAD6yFVVuVUAuXbqECgIBOzs7DblVAVleXnZl1y4BdLnr6+sqD/6dMIsE0NXQC/6AYJoBrVcsegHpdDqfCYDU92FOBuTy5csNAqDjBlX0AiKNKqEPAc6AblBF+EihzwRW4+nlnf9+ICCFQuE9VnftxuMfmEUCAfGmmfcEtnrfbDYDa7MnDkblEvMPqoideBf/m/BjufADW1tb7fHxcTlb8CyBTea5evwXfjDycHbuRerk25oGxltbXV2dj3oiMiDSi3C5+QtTjRXWeKwfxT2Zi3tCppqrV68u8Jt/I5zkzlTynag/uXo0414wkvQJk5OTE1xJpHmpEphEVY7wWktYYkC0Wq02xzdzBMNO2oZ6u92u+7eYxkkdECHVhFN3k8vSfb47TTBMZAPYYtpgaAMFxK9SqZSvXLkyzWGZ5tBUeRqSwMh1UjAV/VhyLGnL+1nm7VoN2fk2SCj8MgekH6/S6KBUOURyv+xdBl5fbEeW5YKKCFQ8l46/1NbyzgYlp+tQRwDy4LfkFA1ygHGn03GT+oksziUgWUhFKhaL6gqcvnCJ3rIETS/7AqfIFcRjvj6qgxglTTj9gxSllfSYHlB9XwZWL8sA61OR6i/Sy3dis/7GAwAAAAAAAAAAAAAAAAAAAAAAAAAAXDTfAZvqTZy87JOpAAAAAElFTkSuQmCC"/>
    </defs>
    </svg>
    </span><?php break ?><?php case 'backArrow' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(250);
    // PUG_DEBUG:250
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-backArrow'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(249);
    // PUG_DEBUG:249
     ?><svg width="31" height="19" viewBox="0 0 31 19" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path fill-rule="evenodd" clip-rule="evenodd" d="M30.5 9.5C30.5 9.22009 30.3871 8.95164 30.1862 8.75372C29.9853 8.55579 29.7128 8.44459 29.4286 8.44459H4.15954L10.9027 1.80397C11.0023 1.70584 11.0813 1.58935 11.1352 1.46114C11.1891 1.33293 11.2169 1.19551 11.2169 1.05674C11.2169 0.917967 11.1891 0.780553 11.1352 0.652344C11.0813 0.524134 11.0023 0.407639 10.9027 0.309512C10.8031 0.211384 10.6848 0.133546 10.5547 0.0804397C10.4245 0.0273335 10.285 0 10.1442 0C10.0033 0 9.86379 0.0273335 9.73365 0.0804397C9.6035 0.133546 9.48524 0.211384 9.38563 0.309512L0.814752 8.75277C0.71498 8.85081 0.635822 8.96728 0.581812 9.0955C0.527801 9.22372 0.5 9.36118 0.5 9.5C0.5 9.63882 0.527801 9.77628 0.581812 9.9045C0.635822 10.0327 0.71498 10.1492 0.814752 10.2472L9.38563 18.6905C9.48524 18.7886 9.6035 18.8665 9.73365 18.9196C9.86379 18.9727 10.0033 19 10.1442 19C10.285 19 10.4245 18.9727 10.5547 18.9196C10.6848 18.8665 10.8031 18.7886 10.9027 18.6905C11.0023 18.5924 11.0813 18.4759 11.1352 18.3477C11.1891 18.2194 11.2169 18.082 11.2169 17.9433C11.2169 17.8045 11.1891 17.6671 11.1352 17.5389C11.0813 17.4107 11.0023 17.2942 10.9027 17.196L4.15954 10.5554H29.4286C29.7128 10.5554 29.9853 10.4442 30.1862 10.2463C30.3871 10.0484 30.5 9.77991 30.5 9.5Z" class="Fill" />
    </svg>
    </span><?php break ?><?php case 'inputPassword' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(252);
    // PUG_DEBUG:252
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-inputPassword'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(251);
    // PUG_DEBUG:251
     ?><svg width="12" height="16" viewBox="0 0 12 16" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M11 7H10V4C10 1.8 8.2 0 6 0C3.8 0 2 1.8 2 4V7H1C0.5 7 0 7.5 0 8V15C0 15.5 0.5 16 1 16H11C11.5 16 12 15.5 12 15V8C12 7.5 11.5 7 11 7ZM7 14H5L5.4 11.8C4.9 11.6 4.5 11 4.5 10.5C4.5 9.7 5.2 9 6 9C6.8 9 7.5 9.7 7.5 10.5C7.5 11.1 7.2 11.6 6.6 11.8L7 14ZM8 7H4V4C4 2.9 4.9 2 6 2C7.1 2 8 2.9 8 4V7Z" class="Fill" />
    </svg>
    </span><?php break ?><?php case 'modalOrderCheck' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(254);
    // PUG_DEBUG:254
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-modalOrderCheck'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(253);
    // PUG_DEBUG:253
     ?><svg width="56" height="42" viewBox="0 0 56 42" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M18.3804 31.9526L5.04742 18.6189L0.333374 23.333L18.3804 41.3807L55.0469 4.71409L50.3329 4.45048e-05L18.3804 31.9526Z" class="Fill" />
    </svg>
    </span><?php break ?><?php case 'logout' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(256);
    // PUG_DEBUG:256
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-logout'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(255);
    // PUG_DEBUG:255
     ?><svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M13.108 19.278C12.9258 19.4666 12.825 19.7192 12.8273 19.9814C12.8296 20.2436 12.9348 20.4944 13.1202 20.6798C13.3056 20.8652 13.5564 20.9704 13.8186 20.9727C14.0808 20.975 14.3334 20.8742 14.522 20.692L19.856 15.338C19.9026 15.2916 19.9395 15.2364 19.9647 15.1756C19.9899 15.1149 20.0029 15.0498 20.0029 14.984C20.0029 14.9182 19.9899 14.8531 19.9647 14.7924C19.9395 14.7316 19.9026 14.6764 19.856 14.63L14.522 9.278C14.3334 9.09584 14.0808 8.99505 13.8186 8.99733C13.5564 8.9996 13.3056 9.10477 13.1202 9.29018C12.9348 9.47559 12.8296 9.7264 12.8273 9.9886C12.825 10.2508 12.9258 10.5034 13.108 10.692L16.4 14H3C2.73478 14 2.48043 14.1054 2.29289 14.2929C2.10536 14.4804 2 14.7348 2 15C2 15.2652 2.10536 15.5196 2.29289 15.7071C2.48043 15.8946 2.73478 16 3 16H16.4L13.108 19.278ZM24 2H11C10.7348 2 10.4804 2.10536 10.2929 2.29289C10.1054 2.48043 10 2.73478 10 3C10 3.26522 10.1054 3.51957 10.2929 3.70711C10.4804 3.89464 10.7348 4 11 4H23C23.2652 4 23.5196 4.10536 23.7071 4.29289C23.8946 4.48043 24 4.73478 24 5V25C24 25.2652 23.8946 25.5196 23.7071 25.7071C23.5196 25.8946 23.2652 26 23 26H10.5C10.2348 26 9.98043 26.1054 9.79289 26.2929C9.60536 26.4804 9.5 26.7348 9.5 27C9.5 27.2652 9.60536 27.5196 9.79289 27.7071C9.98043 27.8946 10.2348 28 10.5 28H24C24.5304 28 25.0391 27.7893 25.4142 27.4142C25.7893 27.0391 26 26.5304 26 26V4C26 3.46957 25.7893 2.96086 25.4142 2.58579C25.0391 2.21071 24.5304 2 24 2Z" class="Fill" />
    </svg>
    </span><?php break ?><?php case 'clock' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(258);
    // PUG_DEBUG:258
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-clock'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(257);
    // PUG_DEBUG:257
     ?><svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M12 5.25C7.71875 5.25 4.25 8.71875 4.25 13C4.25 17.2812 7.71875 20.75 12 20.75C16.2812 20.75 19.75 17.2812 19.75 13C19.75 8.71875 16.2812 5.25 12 5.25ZM12 19.25C8.54688 19.25 5.75 16.4531 5.75 13C5.75 9.54688 8.54688 6.75 12 6.75C15.4531 6.75 18.25 9.54688 18.25 13C18.25 16.4531 15.4531 19.25 12 19.25ZM13.9312 15.9875L11.2781 14.0594C11.1812 13.9875 11.125 13.875 11.125 13.7563V8.625C11.125 8.41875 11.2937 8.25 11.5 8.25H12.5C12.7063 8.25 12.875 8.41875 12.875 8.625V13.0531L14.9625 14.5719C15.1312 14.6937 15.1656 14.9281 15.0437 15.0969L14.4563 15.9062C14.3344 16.0719 14.1 16.1094 13.9312 15.9875Z" class="Fill"/>
    </svg>
    </span><?php break ?><?php case 'cart' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(260);
    // PUG_DEBUG:260
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-cart'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(259);
    // PUG_DEBUG:259
     ?><svg width="25" height="26" viewBox="0 0 25 26" fill="none" xmlns="http://www.w3.org/2000/svg">
    <circle cx="12.4999" cy="13" r="12" class="Fill Stroke"/>
    <g clip-path="url(#clip0)">
    <path d="M17.9003 10.7359C17.8261 10.627 17.7265 10.5726 17.6015 10.5726H9.64447L9.0351 8.43145C8.98041 8.2379 8.90619 8.07258 8.81244 7.93548C8.71869 7.79839 8.61908 7.70161 8.51361 7.64516C8.40814 7.58871 8.31635 7.5504 8.23822 7.53024C8.1601 7.51008 8.08197 7.5 8.00385 7.5H6.39838C6.29681 7.5 6.21088 7.53629 6.14056 7.60887C6.07025 7.68145 6.0351 7.77419 6.0351 7.8871C6.0351 7.95161 6.05072 8.01411 6.08197 8.0746C6.11322 8.13508 6.15814 8.18145 6.21674 8.21371C6.27533 8.24597 6.33588 8.2621 6.39838 8.2621H8.00385C8.0351 8.2621 8.06439 8.26613 8.09174 8.27419C8.11908 8.28226 8.15619 8.31653 8.20306 8.37702C8.24994 8.4375 8.289 8.52823 8.32025 8.64919L10.3945 16.5121C10.4101 16.5605 10.4355 16.6069 10.4706 16.6512C10.5058 16.6956 10.5468 16.7298 10.5937 16.754C10.6406 16.7782 10.6913 16.7903 10.746 16.7903H15.8085C15.8867 16.7903 15.9589 16.7661 16.0253 16.7177C16.0917 16.6694 16.1367 16.6089 16.1601 16.5363L17.9531 11.0927C17.9921 10.9637 17.9745 10.8448 17.9003 10.7359ZM15.5507 16.0161H11.039L9.84369 11.3468H17.0624L15.5507 16.0161ZM14.8124 17.5645C14.5546 17.5645 14.3339 17.6593 14.1503 17.8488C13.9667 18.0383 13.8749 18.2661 13.8749 18.5323C13.8749 18.7984 13.9667 19.0262 14.1503 19.2157C14.3339 19.4052 14.5546 19.5 14.8124 19.5C15.0703 19.5 15.291 19.4052 15.4745 19.2157C15.6581 19.0262 15.7499 18.7984 15.7499 18.5323C15.7499 18.2661 15.6581 18.0383 15.4745 17.8488C15.291 17.6593 15.0703 17.5645 14.8124 17.5645ZM11.4374 17.5645C11.2656 17.5645 11.1074 17.6089 10.9628 17.6976C10.8183 17.7863 10.705 17.9032 10.623 18.0484C10.541 18.1935 10.4999 18.3548 10.4999 18.5323C10.4999 18.7984 10.5917 19.0262 10.7753 19.2157C10.9589 19.4052 11.1796 19.5 11.4374 19.5C11.6953 19.5 11.916 19.4052 12.0995 19.2157C12.2831 19.0262 12.3749 18.7984 12.3749 18.5323C12.3749 18.4677 12.3691 18.4032 12.3574 18.3387C12.3456 18.2742 12.3281 18.2137 12.3046 18.1573C12.2812 18.1008 12.2519 18.0464 12.2167 17.994C12.1816 17.9415 12.1425 17.8931 12.0995 17.8488C12.0566 17.8044 12.0097 17.7641 11.9589 17.7278C11.9081 17.6915 11.8554 17.6613 11.8007 17.6371C11.746 17.6129 11.6874 17.5948 11.6249 17.5827C11.5624 17.5706 11.4999 17.5645 11.4374 17.5645Z" class="Stroke" />
    </g>
    <defs>
    <clipPath id="clip0">
    <rect width="12" height="12" class="Fill" transform="translate(5.99994 7.5)"/>
    </clipPath>
    </defs>
    </svg>
    </span><?php break ?><?php case 'minus' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(262);
    // PUG_DEBUG:262
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-minus'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(261);
    // PUG_DEBUG:261
     ?><svg width="25" height="26" viewBox="0 0 25 26" fill="none" xmlns="http://www.w3.org/2000/svg">
    <circle cx="12.4999" cy="13" r="12" class="Fill Stroke" />
    <line x1="7.99994" y1="13" x2="16.9999" y2="13" class="Stroke" />
    </svg>
    </span><?php break ?><?php case 'plus' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(264);
    // PUG_DEBUG:264
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-plus'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(263);
    // PUG_DEBUG:263
     ?><svg width="25" height="26" viewBox="0 0 25 26" fill="none" xmlns="http://www.w3.org/2000/svg">
    <circle cx="12.4999" cy="13" r="12.5" class="Fill Stroke" />
    <line x1="8.99994" y1="13" x2="15.9999" y2="13" class="Stroke" />
    <line x1="12.4999" y1="9.5" x2="12.4999" y2="16.5" class="Stroke" />
    </svg>
    </span><?php break ?><?php case 'trash' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(266);
    // PUG_DEBUG:266
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-trash'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(265);
    // PUG_DEBUG:265
     ?><svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path fill-rule="evenodd" clip-rule="evenodd" d="M14 3V2C14 0.895431 13.1046 0 12 0H6C4.89543 0 4 0.89543 4 2V3H1C0.447716 3 0 3.44772 0 4C0 4.55228 0.447716 5 1 5H2V16C2 17.6569 3.34315 19 5 19H13C14.6569 19 16 17.6569 16 16V5H17C17.5523 5 18 4.55228 18 4C18 3.44772 17.5523 3 17 3H14ZM12 2H6V3H12V2ZM14 5H4V16C4 16.5523 4.44772 17 5 17H13C13.5523 17 14 16.5523 14 16V5Z" class="Fill" />
    <path d="M6 7H8V15H6V7Z" class="Fill" />
    <path d="M10 7H12V15H10V7Z" class="Fill" />
    </svg>
    </span><?php break ?><?php default ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(268);
    // PUG_DEBUG:268
     ?><p><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(267);
    // PUG_DEBUG:267
     ?>No icon</p><?php } ?></span><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(293);
    // PUG_DEBUG:293
     }  if (method_exists($_pug_temp = (isset($big) ? $big : null), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(292);
    // PUG_DEBUG:292
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-big'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(291);
    // PUG_DEBUG:291
     ?><?php switch ($name) { ?><?php case 'logistics' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(273);
    // PUG_DEBUG:273
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-logistics'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(272);
    // PUG_DEBUG:272
     ?><svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M50.5 21.5H47.5C43.0817 21.5 39.5 25.0817 39.5 29.5V34.5H42.5C46.9183 34.5 50.5 30.9183 50.5 26.5V21.5Z" fill="var(--dim)"/>
    <path d="M33 26H34C37.3137 26 40 28.6863 40 32V34H39C35.6863 34 33 31.3137 33 28V26Z" fill="var(--link)"/>
    <rect x="5" y="14" width="26" height="39" rx="2" fill="var(--dim)"/>
    <rect x="22" y="34" width="31" height="19" rx="2" fill="var(--link)"/>
    <path d="M23.5 20.5H12.5" stroke="var(--link)" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
    <path d="M29.5 40.5H44.5" stroke="var(--dim)" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
    </svg>
    </span><?php break ?><?php case 'leaf' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(275);
    // PUG_DEBUG:275
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-leaf'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(274);
    // PUG_DEBUG:274
     ?><svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M12.5 37.5C12.5 20.9314 25.9315 7.5 42.5 7.5H52.4999V17.5C52.4999 34.0685 39.0685 47.4999 22.4999 47.4999H12.5V37.5Z" fill="var(--dim)"/>
    <path d="M42.5001 17.5C42.5001 17.5 19.5 32.5 12.5002 47.5C10.5 51.7861 8.5 53.5 8.5 53.5" stroke="var(--link)" stroke-width="3"/>
    </svg>
    </span><?php break ?><?php case 'qa' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(277);
    // PUG_DEBUG:277
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-qa'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(276);
    // PUG_DEBUG:276
     ?><svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M28 52.5C41.531 52.5 52.5 41.531 52.5 28C52.5 14.469 41.531 3.5 28 3.5C14.469 3.5 3.5 14.469 3.5 28C3.5 41.531 14.469 52.5 28 52.5Z" stroke="var(--link)" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
    <path d="M54 54L46 46" stroke="var(--link)" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
    <mask class="qaClassMask8239" maskUnits="userSpaceOnUse" x="5" y="5" width="46" height="46">
    <path d="M28 51C40.7025 51 51 40.7025 51 28C51 15.2975 40.7025 5 28 5C15.2975 5 5 15.2975 5 28C5 40.7025 15.2975 51 28 51Z" fill="var(--link)"/>
    </mask>
    <g mask="url(.qaClassMask8239)">
    <path d="M43 16H29C17.9543 16 9 24.9543 9 36V55H23C34.0457 55 43 46.0457 43 35V16Z" fill="var(--dim)"/>
    <path d="M17.5 34L23 39.5L34.5 28" stroke="var(--link)" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
    </g>
    </svg>
    </span><?php break ?><?php case 'moscow' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(279);
    // PUG_DEBUG:279
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-moscow'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(278);
    // PUG_DEBUG:278
     ?><svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg">
    <circle cx="29.5" cy="30.5" r="27" stroke="#BED1A0" stroke-width="3"/>
    <path d="M13 14C13 13.4477 13.4477 13 14 13H45C45.5523 13 46 13.4477 46 14V40.8531C46 45.3525 42.3525 49 37.8531 49C37.121 49 36.3923 49.0987 35.6866 49.2933L29.5 51L23.3134 49.2934C22.6077 49.0987 21.879 49 21.1469 49C16.6475 49 13 45.3525 13 40.8531V14Z" fill="#BED1A0"/>
    <path d="M34.0189 21.2225L36.923 23.7753C37.0784 23.912 36.9493 24.1658 36.7473 24.1208L33.8964 23.4843C33.738 23.4489 33.6057 23.6071 33.6684 23.7568L37.066 31.8636L35.2925 34.1651L21.9906 37.6545L23.3208 31.8636L27.5591 30.1604C27.6654 30.1177 27.7142 29.9945 27.6659 29.8906L24.7579 23.6303C24.7034 23.5129 24.773 23.3755 24.8999 23.35L26.7438 22.9795C26.8196 22.9642 26.8798 22.9067 26.8985 22.8317L27.1979 21.6285C27.2645 21.3607 27.505 21.1727 27.781 21.1727C28.0318 21.1727 28.2563 21.3285 28.344 21.5635L29.8423 25.5777C29.903 25.7401 30.1276 25.7537 30.2073 25.5997L32.4441 21.2807C32.4784 21.2144 32.5469 21.1727 32.6217 21.1727L33.8869 21.1727C33.9355 21.1727 33.9824 21.1904 34.0189 21.2225Z" fill="#77A04C"/>
    <path d="M23.3208 31.8636V31.8636C21.83 30.8651 19.8183 31.2098 18.7449 32.6476L18 33.6454M23.3208 31.8636L27.5591 30.1604C27.6654 30.1177 27.7142 29.9945 27.6659 29.8906L24.7579 23.6303C24.7034 23.5129 24.773 23.3755 24.8999 23.35L26.7438 22.9795C26.8196 22.9642 26.8798 22.9067 26.8985 22.8317L27.1979 21.6285C27.2645 21.3607 27.505 21.1727 27.781 21.1727V21.1727C28.0318 21.1727 28.2563 21.3285 28.344 21.5635L29.8423 25.5777C29.903 25.7401 30.1276 25.7537 30.2073 25.5997L32.4441 21.2807C32.4784 21.2144 32.5469 21.1727 32.6217 21.1727L33.8869 21.1727C33.9355 21.1727 33.9824 21.1904 34.0189 21.2225L36.923 23.7753C37.0784 23.912 36.9493 24.1658 36.7473 24.1208L33.8964 23.4843C33.738 23.4489 33.6057 23.6071 33.6684 23.7568L37.066 31.8636M23.3208 31.8636L21.9906 37.6545M21.9906 37.6545L18 41.6636M21.9906 37.6545L35.2925 34.1651M40.1698 37.6545L38.8858 34.6445C38.8573 34.5778 38.7948 34.5317 38.7226 34.5241L35.2925 34.1651M37.066 31.8636L38.7127 30.6229C38.787 30.5669 38.8901 30.5695 38.9615 30.6293L41.5 32.7545M37.066 31.8636L35.2925 34.1651" stroke="#77A04C" stroke-width="2" stroke-linecap="round"/>
    <path d="M35.2924 38.5455L36.4873 39.9859C37.0341 40.6451 36.8908 41.6325 36.1792 42.1091L31.3019 43L30.4151 40.3273L29.0849 38.5455L29.3795 38.6195C31.1143 39.0552 32.0848 40.9025 31.4593 42.5782L31.3019 43L36.1792 42.1091L35.2924 38.5455Z" fill="#77A04C"/>
    <path d="M21.1038 18.5L35.2924 38.5455M35.2924 38.5455L36.4873 39.9859C37.0341 40.6451 36.8908 41.6325 36.1792 42.1091V42.1091M35.2924 38.5455L36.1792 42.1091M36.1792 42.1091L31.3019 43M31.3019 43L29.1509 41.9195C27.0666 40.8725 24.7664 40.3273 22.4339 40.3273V40.3273M31.3019 43L31.4593 42.5782C32.0848 40.9025 31.1143 39.0552 29.3795 38.6195L29.0849 38.5455L30.4151 40.3273L31.3019 43Z" stroke="#77A04C" stroke-width="2" stroke-linecap="round"/>
    <circle cx="10" cy="49" r="4" fill="#77A04C"/>
    </svg>
    </span><?php break ?><?php case 'a' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(281);
    // PUG_DEBUG:281
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-a'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(280);
    // PUG_DEBUG:280
     ?><svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg">
    <rect x="4" y="4" width="52" height="52" rx="5" fill="var(--dim)" stroke-width="2" stroke-dasharray="4 4"/>
    <path d="M25.7606 8.65826L10.4879 50.6583C10.2507 51.3104 10.7337 52 11.4277 52H20L30 22L40 52H48.5723C49.2663 52 49.7493 51.3104 49.5121 50.6583L34.2394 8.65826C34.0957 8.26307 33.7201 8 33.2996 8H26.7004C26.2799 8 25.9043 8.26307 25.7606 8.65826Z" fill="var(--link)"/>
    <rect x="20" y="37" width="20" height="9" fill="var(--link)"/>
    </svg>
    </span><?php break ?><?php case 'assort' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(283);
    // PUG_DEBUG:283
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-assort'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(282);
    // PUG_DEBUG:282
     ?><svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg">
    <g clip-path="url(#clip1assort)">
    <path d="M13 18.5C20.6 27.3 24.3333 47.5 24 52.5M24 52.5C23.6667 49.8333 28 24 37.5 18.5M24 52.5C24.1667 49 29.9 41.4 37.5 41" stroke="var(--dim)" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
    <path d="M12.6029 8.15332C14.0647 5.81519 17.6704 6.78131 17.7673 9.53711C17.8189 11.004 18.9961 12.1812 20.4629 12.2328C23.2187 12.3297 24.1849 15.9353 21.8467 17.3971C20.6022 18.1752 20.1713 19.7833 20.86 21.0795C22.154 23.5145 19.5145 26.154 17.0795 24.86C15.7833 24.1713 14.1752 24.6022 13.3971 25.8467C11.9353 28.1849 8.32968 27.2187 8.23276 24.4629C8.18117 22.9961 7.00397 21.8189 5.53711 21.7673C2.78131 21.6704 1.81519 18.0647 4.15332 16.6029C5.39787 15.8248 5.82875 14.2167 5.13999 12.9206C3.84603 10.4855 6.48553 7.84603 8.92058 9.14C10.2167 9.82875 11.8248 9.39787 12.6029 8.15332Z" fill="var(--link)"/>
    <path d="M33.8103 12.0056C34.1001 8.95386 38.2404 8.25025 39.5221 11.0349L39.9568 11.9796C40.4039 12.9509 41.334 13.6108 42.3985 13.7119L43.4337 13.8102C46.4854 14.1 47.1891 18.2404 44.4044 19.522L43.4597 19.9568C42.4884 20.4038 41.8285 21.334 41.7274 22.3984L41.6291 23.4337C41.3393 26.4854 37.199 27.189 35.9173 24.4043L35.4825 23.4596C35.0355 22.4884 34.1053 21.8284 33.0409 21.7273L32.0057 21.629C28.9539 21.3392 28.2503 17.1989 31.035 15.9172L31.9797 15.4825C32.9509 15.0354 33.6109 14.1053 33.712 13.0409L33.8103 12.0056Z" fill="var(--link)"/>
    <path d="M11 39H16C20.4183 39 24 42.5817 24 47H19C14.5817 47 11 43.4183 11 39Z" fill="var(--dim)"/>
    <circle cx="38" cy="41" r="4" fill="var(--link)"/>
    </g>
    <defs>
    <clipPath id="clip1assort">
    <rect width="60" height="60" fill="white"/>
    </clipPath>
    </defs>
    </svg>
    </span><?php break ?><?php case 'star' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(285);
    // PUG_DEBUG:285
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-star'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(284);
    // PUG_DEBUG:284
     ?><svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M29.0919 7.96866C29.4494 7.19379 30.5506 7.19379 30.9081 7.96867L36.819 20.7835C36.9646 21.0993 37.2639 21.3168 37.6093 21.3577L51.6235 23.0193C52.4709 23.1198 52.8112 24.1672 52.1847 24.7465L41.8236 34.3282C41.5683 34.5643 41.454 34.9161 41.5218 35.2572L44.2721 49.099C44.4384 49.936 43.5475 50.5833 42.8028 50.1665L30.4884 43.2734C30.185 43.1035 29.815 43.1035 29.5116 43.2734L17.1972 50.1665C16.4525 50.5833 15.5616 49.936 15.7279 49.099L18.4782 35.2572C18.546 34.9161 18.4317 34.5643 18.1764 34.3282L7.81529 24.7465C7.18879 24.1672 7.52911 23.1198 8.3765 23.0193L22.3907 21.3577C22.7361 21.3168 23.0354 21.0993 23.181 20.7835L29.0919 7.96866Z" fill="var(--dim)"/>
    <path d="M30 24.2746V32.5M30 37V36.9" stroke="var(--link)" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
    </svg>
    </span><?php break ?><?php case 'award' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(287);
    // PUG_DEBUG:287
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-award'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(286);
    // PUG_DEBUG:286
     ?><svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M29.2057 12.0386C29.6059 11.5153 30.3941 11.5153 30.7943 12.0386L32.8061 14.669C33.1056 15.0607 33.646 15.1756 34.0789 14.9396L36.9866 13.3548C37.5651 13.0395 38.2852 13.3601 38.4379 14.001L39.2059 17.2222C39.3202 17.7019 39.7671 18.0266 40.2587 17.9871L43.5596 17.7221C44.2163 17.6693 44.7437 18.255 44.6226 18.9026L44.0139 22.1578C43.9233 22.6425 44.1995 23.1209 44.6646 23.2847L47.7879 24.3852C48.4093 24.6041 48.6529 25.3537 48.2788 25.8961L46.3988 28.6222C46.1189 29.0281 46.1766 29.5775 46.5348 29.9164L48.9405 32.192C49.4192 32.6448 49.3368 33.4286 48.7745 33.772L45.9482 35.4977C45.5273 35.7547 45.3566 36.2801 45.5461 36.7354L46.8182 39.7928C47.0713 40.4011 46.6772 41.0836 46.0239 41.1686L42.74 41.5956C42.251 41.6592 41.8814 42.0697 41.8693 42.5627L41.7878 45.8732C41.7717 46.5318 41.134 46.9951 40.5026 46.807L37.329 45.8614C36.8564 45.7206 36.3517 45.9453 36.1401 46.3907L34.7193 49.3819C34.4366 49.977 33.6656 50.1409 33.1653 49.7122L30.6507 47.5575C30.2762 47.2367 29.7238 47.2367 29.3493 47.5575L26.8347 49.7122C26.3344 50.1409 25.5634 49.977 25.2807 49.3819L23.8599 46.3907C23.6483 45.9453 23.1436 45.7206 22.671 45.8614L19.4974 46.807C18.866 46.9951 18.2283 46.5318 18.2122 45.8732L18.1307 42.5627C18.1186 42.0697 17.749 41.6592 17.26 41.5956L13.9761 41.1686C13.3228 41.0836 12.9287 40.4011 13.1818 39.7928L14.4539 36.7354C14.6434 36.2801 14.4727 35.7547 14.0518 35.4977L11.2255 33.772C10.6632 33.4286 10.5808 32.6448 11.0595 32.192L13.4652 29.9164C13.8234 29.5775 13.8811 29.0281 13.6012 28.6222L11.7212 25.8961C11.3471 25.3537 11.5907 24.6041 12.2121 24.3852L15.3354 23.2847C15.8005 23.1209 16.0767 22.6425 15.9861 22.1578L15.3774 18.9026C15.2563 18.255 15.7837 17.6693 16.4404 17.7221L19.7413 17.9871C20.2329 18.0266 20.6798 17.7019 20.7941 17.2222L21.5621 14.001C21.7148 13.3601 22.4349 13.0395 23.0134 13.3548L25.9211 14.9396C26.354 15.1756 26.8944 15.0607 27.1939 14.669L29.2057 12.0386Z" fill="var(--dim)"/>
    <path d="M5.43874 28.3162C5.2229 27.6687 5.70487 27 6.38743 27H12C12.5523 27 13 27.4477 13 28V38C13 38.5523 12.5523 39 12 39H6.38743C5.70487 39 5.2229 38.3313 5.43874 37.6838L6.89459 33.3162C6.96301 33.111 6.96301 32.889 6.89459 32.6838L5.43874 28.3162Z" fill="var(--link)"/>
    <path d="M54.5613 28.3162C54.7771 27.6687 54.2951 27 53.6126 27H48C47.4477 27 47 27.4477 47 28V38C47 38.5523 47.4477 39 48 39H53.6126C54.2951 39 54.7771 38.3313 54.5613 37.6838L53.1054 33.3162C53.037 33.111 53.037 32.889 53.1054 32.6838L54.5613 28.3162Z" fill="var(--link)"/>
    <rect x="12" y="28" width="36" height="12" rx="1" fill="var(--link)"/>
    </svg>
    </span><?php break ?><?php case 'truck' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(290);
    // PUG_DEBUG:290
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Icon-truck'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(288);
    // PUG_DEBUG:288
     ?><svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M57.5 33.5V46.5H40.5V24.5H53.5L57.5 33.5Z" fill="var(--link)"/>
    <path d="M4.5 46.5H40.5M40.5 46.5H57.5V33.5L53.5 24.5H40.5V46.5Z" stroke="var(--link)" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
    <circle r="4.5" transform="matrix(-1 0 0 1 45 48)" fill="var(--link)"/>
    <circle r="4.5" transform="matrix(-1 0 0 1 23 48)" fill="var(--link)"/>
    <circle r="4.5" transform="matrix(-1 0 0 1 14 48)" fill="var(--link)"/>
    <rect x="2" y="13" width="38" height="32" rx="1" fill="var(--dim)"/>
    </svg>
    <?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(289);
    // PUG_DEBUG:289
     ?></span><?php break ?><?php } ?></span><?php } ?></span><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['RoubleCurrencySymbol'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(298);
    // PUG_DEBUG:298
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'RoubleCurrencySymbol'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(296);
    // PUG_DEBUG:296
     ?>в‚Ѕ<?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(297);
    // PUG_DEBUG:297
     ?></span><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['Modal'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(331);
    // PUG_DEBUG:331
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Modal'], ['class' => 'isHidden'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(330);
    // PUG_DEBUG:330
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Modal-wrapper'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(313);
    // PUG_DEBUG:313
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Modal-control'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(300);
    // PUG_DEBUG:300
     ?><?php $buttonClass = "" ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(302);
    // PUG_DEBUG:302
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'text'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(301);
    // PUG_DEBUG:301
     ?><?php $buttonClass = $GLOBALS['__jpv_plus_with_ref']($buttonClass, " asLink") ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(304);
    // PUG_DEBUG:304
     }  if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'button_hidden'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(303);
    // PUG_DEBUG:303
     ?><?php $buttonClass = $GLOBALS['__jpv_plus_with_ref']($buttonClass, " hidden") ?><?php } ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(312);
    // PUG_DEBUG:312
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Modal-button'], ['class' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('class', (isset($buttonClass) ? $buttonClass : null))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(306);
    // PUG_DEBUG:306
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'button'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(305);
    // PUG_DEBUG:305
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Button';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'icon' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'icon'), 'reversed' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'reversed'), 'label' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label'), 'background' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'background'), 'noIcon' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'noIcon') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(308);
    // PUG_DEBUG:308
     }  elseif (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'recipe'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(307);
    // PUG_DEBUG:307
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Recipe';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'head' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'recipeHead'), 'image' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'recipeImage') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php } else { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(311);
    // PUG_DEBUG:311
     ?><span><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(309);
    // PUG_DEBUG:309
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(310);
    // PUG_DEBUG:310
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'text')) ? var_export($_pug_temp, true) : $_pug_temp) ?></span><?php } ?></div></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(329);
    // PUG_DEBUG:329
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Modal-window'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(314);
    // PUG_DEBUG:314
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Modal-hider'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(328);
    // PUG_DEBUG:328
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Modal-frame'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(317);
    // PUG_DEBUG:317
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Modal-windowControl'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(316);
    // PUG_DEBUG:316
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Modal-close'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(315);
    // PUG_DEBUG:315
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Button';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'icon' => 'times', 'background' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(325);
    // PUG_DEBUG:325
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Modal-content'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(320);
    // PUG_DEBUG:320
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Modal-head'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(318);
    // PUG_DEBUG:318
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(319);
    // PUG_DEBUG:319
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head')) ? var_export($_pug_temp, true) : $_pug_temp) ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(324);
    // PUG_DEBUG:324
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head_text'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(323);
    // PUG_DEBUG:323
     ?><p><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(321);
    // PUG_DEBUG:321
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(322);
    // PUG_DEBUG:322
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head_text')) ? var_export($_pug_temp, true) : $_pug_temp) ?></p><?php } ?><?= (is_bool($_pug_temp = $__pug_children(get_defined_vars())) ? var_export($_pug_temp, true) : $_pug_temp) ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(327);
    // PUG_DEBUG:327
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Modal-footer'], ['tabindex' => '0'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(326);
    // PUG_DEBUG:326
     ?></div></div></div></div></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['Form'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(346);
    // PUG_DEBUG:346
     ?><form<?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(333);
    // PUG_DEBUG:333
     ?><?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment']($attributes, ['class' => 'Form'], ['novalidate' => true])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(345);
    // PUG_DEBUG:345
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Form-frame'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(334);
    // PUG_DEBUG:334
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Form-content'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?= (is_bool($_pug_temp = $__pug_children(get_defined_vars())) ? var_export($_pug_temp, true) : $_pug_temp) ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(337);
    // PUG_DEBUG:337
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'policy'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(336);
    // PUG_DEBUG:336
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Form-policy'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(335);
    // PUG_DEBUG:335
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Policy';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(341);
    // PUG_DEBUG:341
     }  if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'linkHref'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(340);
    // PUG_DEBUG:340
     ?><a<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['href' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('href', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'linkHref'))], ['class' => 'Form-link'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(338);
    // PUG_DEBUG:338
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(339);
    // PUG_DEBUG:339
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'linkText')) ? var_export($_pug_temp, true) : $_pug_temp) ?></a><?php } ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(344);
    // PUG_DEBUG:344
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Form-button'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(343);
    // PUG_DEBUG:343
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Button';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'type' => 'submit', 'icon' => 'arrowRight', 'label' => $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label'), function () { return 'Отправить'; }), 'reversed' => true, 'background' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(342);
    // PUG_DEBUG:342
    ;
    }); ?></div></div></form><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['FileInput'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(349);
    // PUG_DEBUG:349
     ?><?php if (!$GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'type')) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(348);
    // PUG_DEBUG:348
     ?><?php $dataset = $GLOBALS['__jpv_set_with_ref']($dataset, 'type', '=', 'file') ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(350);
    // PUG_DEBUG:350
     }  $additional_class = '' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(352);
    // PUG_DEBUG:352
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'disabled'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(351);
    // PUG_DEBUG:351
     ?><?php $additional_class = $GLOBALS['__jpv_plus_with_ref']($additional_class, ' FileInput--disabled') ?><?php } ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(376);
    // PUG_DEBUG:376
     ?><label<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'FileInput'], ['class' => 'Input'], ['class' => 'Input--file'], ['class' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('class', (isset($additional_class) ? $additional_class : null))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(354);
    // PUG_DEBUG:354
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Input-label'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(353);
    // PUG_DEBUG:353
     ?><?= htmlspecialchars((is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label')) ? var_export($_pug_temp, true) : $_pug_temp)) ?></span><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(375);
    // PUG_DEBUG:375
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Input-control'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(356);
    // PUG_DEBUG:356
     ?><input<?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(355);
    // PUG_DEBUG:355
     ?><?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment']($attributes, ['type' => 'hidden'], ['required' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('required', ($GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'required'), function () { return false; })))], ['tabindex' => '-1'], ['data-type' => 'file'])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(357);
    // PUG_DEBUG:357
     ?><input<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['type' => 'file'], ['multiple' => true], ['tabindex' => '-1'])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(369);
    // PUG_DEBUG:369
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'FileInput-filezone'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(358);
    // PUG_DEBUG:358
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'FileInput-files'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(366);
    // PUG_DEBUG:366
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'FileInput-template'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(365);
    // PUG_DEBUG:365
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'FileInput-fileItem'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(360);
    // PUG_DEBUG:360
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'FileInput-fileItemIcon'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(359);
    // PUG_DEBUG:359
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, 'file-clean']], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(362);
    // PUG_DEBUG:362
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'FileInput-fileItemLabel'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(361);
    // PUG_DEBUG:361
     ?>sample.jpg</div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(364);
    // PUG_DEBUG:364
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'FileInput-fileItemRemove'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(363);
    // PUG_DEBUG:363
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Button';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'icon' => 'times' )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div></div></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(368);
    // PUG_DEBUG:368
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'FileInput-add'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(367);
    // PUG_DEBUG:367
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Button';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'icon' => 'dir', 'label' => "выбрать..." )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(371);
    // PUG_DEBUG:371
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Input-error'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(370);
    // PUG_DEBUG:370
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, 'warning']], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></span><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(374);
    // PUG_DEBUG:374
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Input-valid'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(373);
    // PUG_DEBUG:373
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, 'mark']], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(372);
    // PUG_DEBUG:372
    ;
    }); ?></span></span></label><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['Input'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(379);
    // PUG_DEBUG:379
     ?><?php if (!$GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'type')) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(378);
    // PUG_DEBUG:378
     ?><?php $dataset = $GLOBALS['__jpv_set_with_ref']($dataset, 'type', '=', 'text') ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(381);
    // PUG_DEBUG:381
     }  if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'type') == 'file', "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(380);
    // PUG_DEBUG:380
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'FileInput';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, (isset($dataset) ? $dataset : null)]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(391);
    // PUG_DEBUG:391
     }  elseif (method_exists($_pug_temp = $GLOBALS['__jpv_and'](($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'type') == 'password'), function () use (&$dataset) { return $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'icon'); }), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(390);
    // PUG_DEBUG:390
     ?><label<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Input'], ['class' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('class', ($GLOBALS['__jpv_plus']('Input--', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'type'))))], ['title' => 'Обязательно для заполнения'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(384);
    // PUG_DEBUG:384
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Input-label'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(382);
    // PUG_DEBUG:382
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(383);
    // PUG_DEBUG:383
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label')) ? var_export($_pug_temp, true) : $_pug_temp) ?></span><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(389);
    // PUG_DEBUG:389
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Input-control'], ['class' => 'Input-control--password'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(386);
    // PUG_DEBUG:386
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Input-iconPassword'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(385);
    // PUG_DEBUG:385
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, 'inputPassword']], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></span><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(388);
    // PUG_DEBUG:388
     ?><input<?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(387);
    // PUG_DEBUG:387
     ?><?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment']($attributes, ['type' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('type', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'type'))], ['placeholder' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('placeholder', $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'placeholder'), function () { return ''; }))], ['value' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('value', $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'value'), function () { return ''; }))], ['size' => '1'], ['required' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('required', $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'required'), function () { return false; }))], ['disabled' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('disabled', $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'disabled'), function () { return false; }))])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /></span></label><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(393);
    // PUG_DEBUG:393
     }  elseif (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'type') == 'checkbox', "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(392);
    // PUG_DEBUG:392
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'CheckBox';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($pugModule, 'Phug\Formatter\Format\BasicFormat::merge_attributes')(array(  ), (isset($attributes) ? $attributes : null)), [[false, (isset($dataset) ? $dataset : null)]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php } else { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(427);
    // PUG_DEBUG:427
     ?><label<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Input'], ['class' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('class', ($GLOBALS['__jpv_plus']('Input--', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'type'))))], ['title' => 'Обязательно для заполнения'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(395);
    // PUG_DEBUG:395
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Input-label'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(394);
    // PUG_DEBUG:394
     ?><?= htmlspecialchars((is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label')) ? var_export($_pug_temp, true) : $_pug_temp)) ?></span><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(426);
    // PUG_DEBUG:426
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Input-control'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(398);
    // PUG_DEBUG:398
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'type') == 'hidden', "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(397);
    // PUG_DEBUG:397
     ?><input<?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(396);
    // PUG_DEBUG:396
     ?><?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment']($attributes, ['name' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('name', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'name'))], ['type' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('type', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'type'))], ['value' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('value', $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'value'), function () { return ''; }))], ['size' => '1'], ['required' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('required', $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'required'), function () { return false; }))], ['disabled' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('disabled', $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'disabled'), function () { return false; }))])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(401);
    // PUG_DEBUG:401
     }  elseif (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'type') == 'password', "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(400);
    // PUG_DEBUG:400
     ?><input<?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(399);
    // PUG_DEBUG:399
     ?><?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment']($attributes, ['type' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('type', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'type'))], ['placeholder' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('placeholder', $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'placeholder'), function () { return ''; }))], ['value' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('value', $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'value'), function () { return ''; }))], ['size' => '1'], ['required' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('required', $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'required'), function () { return false; }))], ['disabled' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('disabled', $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'disabled'), function () { return false; }))])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(404);
    // PUG_DEBUG:404
     }  elseif (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'type') == 'email', "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(403);
    // PUG_DEBUG:403
     ?><input<?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(402);
    // PUG_DEBUG:402
     ?><?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment']($attributes, ['type' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('type', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'type'))], ['placeholder' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('placeholder', $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'placeholder'), function () { return 'ваша@почта'; }))], ['value' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('value', $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'value'), function () { return ''; }))], ['size' => '1'], ['required' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('required', $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'required'), function () { return false; }))], ['disabled' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('disabled', $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'disabled'), function () { return false; }))])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(407);
    // PUG_DEBUG:407
     }  elseif (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'type') == 'tel', "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(406);
    // PUG_DEBUG:406
     ?><input<?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(405);
    // PUG_DEBUG:405
     ?><?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment']($attributes, ['type' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('type', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'type'))], ['placeholder' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('placeholder', $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'placeholder'), function () { return '+7 ...'; }))], ['value' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('value', $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'value'), function () { return ''; }))], ['size' => '1'], ['required' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('required', $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'required'), function () { return false; }))], ['disabled' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('disabled', $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'disabled'), function () { return false; }))])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(414);
    // PUG_DEBUG:414
     }  elseif (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'type') == 'fake', "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(413);
    // PUG_DEBUG:413
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Input-fake'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(410);
    // PUG_DEBUG:410
     ?><a<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['href' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('href', $GLOBALS['__jpv_plus']("mailto:", $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'clipboard')))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(408);
    // PUG_DEBUG:408
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(409);
    // PUG_DEBUG:409
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'clipboard')) ? var_export($_pug_temp, true) : $_pug_temp) ?></a><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(412);
    // PUG_DEBUG:412
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Input-copy'], ['data-clipboard-text' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('data-clipboard-text', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'clipboard'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(411);
    // PUG_DEBUG:411
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, 'copy']], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></span></span><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(417);
    // PUG_DEBUG:417
     }  elseif (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'type') == 'textarea', "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(416);
    // PUG_DEBUG:416
     ?><textarea<?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(415);
    // PUG_DEBUG:415
     ?><?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment']($attributes, ['placeholder' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('placeholder', $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'placeholder'), function () { return ''; }))], ['value' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('value', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'value'))], ['rows' => '5'], ['required' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('required', $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'required'), function () { return false; }))], ['disabled' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('disabled', $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'disabled'), function () { return false; }))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>></textarea><?php } else { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(419);
    // PUG_DEBUG:419
     ?><input<?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(418);
    // PUG_DEBUG:418
     ?><?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment']($attributes, ['type' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('type', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'type'))], ['placeholder' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('placeholder', $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'placeholder'), function () { return ''; }))], ['value' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('value', $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'value'), function () { return ''; }))], ['size' => '1'], ['required' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('required', $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'required'), function () { return false; }))], ['disabled' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('disabled', $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'disabled'), function () { return false; }))])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(425);
    // PUG_DEBUG:425
     }  if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'type') != 'fake', "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(421);
    // PUG_DEBUG:421
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Input-error'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(420);
    // PUG_DEBUG:420
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, 'warning']], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></span><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(424);
    // PUG_DEBUG:424
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Input-valid'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(423);
    // PUG_DEBUG:423
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, 'mark']], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(422);
    // PUG_DEBUG:422
    ;
    }); ?></span><?php } ?></span></label><?php } ?><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['Policy'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(437);
    // PUG_DEBUG:437
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Policy'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(436);
    // PUG_DEBUG:436
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Policy-text'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(432);
    // PUG_DEBUG:432
     ?><span><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(429);
    // PUG_DEBUG:429
     ?>Оставляя свои данные, вы даете согласие на обработку<?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(431);
    // PUG_DEBUG:431
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Policy-button'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(430);
    // PUG_DEBUG:430
     ?>персональных данных</span></span><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(435);
    // PUG_DEBUG:435
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Policy-modal'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(434);
    // PUG_DEBUG:434
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Modal';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'text' => '', 'head' => '' )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(433);
    // PUG_DEBUG:433
    ;
    }); ?></div></div></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['Callback'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(455);
    // PUG_DEBUG:455
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Callback'], ['data-logged-in' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('data-logged-in', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'logged_in'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(454);
    // PUG_DEBUG:454
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Modal';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'button' => true, 'icon' => ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'icon') ? $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'icon') : 'phone'), 'background' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'background'), 'head' => ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'title') ? $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'title') : 'Заказать звонок'), 'label' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label'), 'head_text' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head_text') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(446);
    // PUG_DEBUG:446
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Form';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'label' => ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'title') ? $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'title') : 'Заказать звонок'), 'policy' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(441);
    // PUG_DEBUG:441
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'SwitchOfTabs';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['name' => 'Callback']), [[false, array( 'name' => 'CallbackDepartment' )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(439);
    // PUG_DEBUG:439
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Tab';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'head' => 'Отдел ритейл', 'value' => 'retail' )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(440);
    // PUG_DEBUG:440
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Tab';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'head' => 'Отдел horeca', 'value' => 'horeca' )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    });;
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(442);
    // PUG_DEBUG:442
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Input';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'type' => 'hidden', 'name' => "EmailType", 'value' => "nofilter" )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(443);
    // PUG_DEBUG:443
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Input';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['name' => 'CallbackName']), [[false, array( 'label' => 'Имя', 'placeholder' => 'Введите имя', 'required' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(444);
    // PUG_DEBUG:444
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Input';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['name' => 'CallbackPhone']), [[false, array( 'type' => 'tel', 'label' => 'Телефон', 'placeholder' => '+7...', 'required' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(445);
    // PUG_DEBUG:445
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Input';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['name' => 'CallbackComment']), [[false, array( 'label' => 'Комментарий', 'type' => 'textarea', 'required' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    });;
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(453);
    // PUG_DEBUG:453
     ?><?php $__eachScopeVariables = ['phone' => isset($phone) ? $phone : null, 'state' => isset($state) ? $state : null];foreach ($modal_phones as $state => $phone) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(452);
    // PUG_DEBUG:452
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Callback-message'], ['class' => 'Callback-hidden'], ['data-type' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('data-type', (isset($state) ? $state : null))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(447);
    // PUG_DEBUG:447
     ?>Или позвоните нам<?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(451);
    // PUG_DEBUG:451
     ?><a<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['href' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('href', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($phone, 'link'))], ['title' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('title', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($phone, 'label'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(448);
    // PUG_DEBUG:448
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(449);
    // PUG_DEBUG:449
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($phone, 'label')) ? var_export($_pug_temp, true) : $_pug_temp) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(450);
    // PUG_DEBUG:450
     ?></a></div><?php }extract($__eachScopeVariables); ?><?php
    }); ?></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['B2BRequestPasswordReset'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(483);
    // PUG_DEBUG:483
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'B2BRequestPasswordReset'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(482);
    // PUG_DEBUG:482
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Modal';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'button' => true, 'icon' => false, 'background' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'background'), 'head' => ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'title') ? $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'title') : 'Восстановление пароля'), 'label' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label'), 'head_text' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head_text') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(474);
    // PUG_DEBUG:474
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Form';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['class' => 'B2BRequestPasswordReset']), [[false, array( 'label' => ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'title') ? $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'title') : 'Запросить') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(473);
    // PUG_DEBUG:473
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Input';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['name' => 'email']), [[false, array( 'label' => 'Email', 'placeholder' => 'Введите ваш email', 'required' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    });;
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(481);
    // PUG_DEBUG:481
     ?><?php $__eachScopeVariables = ['phone' => isset($phone) ? $phone : null, 'state' => isset($state) ? $state : null];foreach ($modal_phones as $state => $phone) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(480);
    // PUG_DEBUG:480
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'B2BRequestPasswordReset-message'], ['class' => 'B2BRequestPasswordReset-hidden'], ['data-type' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('data-type', (isset($state) ? $state : null))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(475);
    // PUG_DEBUG:475
     ?>Или позвоните нам<?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(479);
    // PUG_DEBUG:479
     ?><a<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['href' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('href', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($phone, 'link'))], ['title' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('title', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($phone, 'label'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(476);
    // PUG_DEBUG:476
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(477);
    // PUG_DEBUG:477
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($phone, 'label')) ? var_export($_pug_temp, true) : $_pug_temp) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(478);
    // PUG_DEBUG:478
     ?></a></div><?php }extract($__eachScopeVariables); ?><?php
    }); ?></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['B2BPasswordReset'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(495);
    // PUG_DEBUG:495
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'B2BPasswordReset'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(494);
    // PUG_DEBUG:494
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Modal';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'button' => true, 'icon' => false, 'background' => true, 'head' => ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'title') ? $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'title') : 'Восстановление пароля'), 'label' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label'), 'head_text' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head_text'), 'button_hidden' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(486);
    // PUG_DEBUG:486
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Form';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['class' => 'B2BPasswordReset']), [[false, array( 'label' => ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'title') ? $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'title') : 'Обновить') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(485);
    // PUG_DEBUG:485
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Input';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['name' => 'password'], ['type' => 'password']), [[false, array( 'label' => 'Новый пароль', 'placeholder' => 'Введите ваш новый пароль', 'required' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    });;
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(493);
    // PUG_DEBUG:493
     ?><?php $__eachScopeVariables = ['phone' => isset($phone) ? $phone : null, 'state' => isset($state) ? $state : null];foreach ($modal_phones as $state => $phone) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(492);
    // PUG_DEBUG:492
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'B2BPasswordReset-message'], ['class' => 'B2BPasswordReset-hidden'], ['data-type' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('data-type', (isset($state) ? $state : null))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(487);
    // PUG_DEBUG:487
     ?>Или позвоните нам<?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(491);
    // PUG_DEBUG:491
     ?><a<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['href' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('href', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($phone, 'link'))], ['title' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('title', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($phone, 'label'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(488);
    // PUG_DEBUG:488
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(489);
    // PUG_DEBUG:489
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($phone, 'label')) ? var_export($_pug_temp, true) : $_pug_temp) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(490);
    // PUG_DEBUG:490
     ?></a></div><?php }extract($__eachScopeVariables); ?><?php
    }); ?></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['Search'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(521);
    // PUG_DEBUG:521
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Search'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(520);
    // PUG_DEBUG:520
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Modal';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'button' => true, 'icon' => 'search', 'background' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'background') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(516);
    // PUG_DEBUG:516
     ?><label<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Search-label'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(515);
    // PUG_DEBUG:515
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Search-control'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(514);
    // PUG_DEBUG:514
     ?><input<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['type' => 'text'], ['placeholder' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('placeholder', $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'placeholder'), function () { return ''; }))], ['value' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('value', $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'value'), function () { return ''; }))], ['size' => '1'])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /></span></label><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(519);
    // PUG_DEBUG:519
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Search-frame'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(518);
    // PUG_DEBUG:518
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Search-content'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(517);
    // PUG_DEBUG:517
     ?><!-- a(href= dataset.href).Search-item !{dataset.item}
     --></div></div><?php
    }); ?></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['Write'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(542);
    // PUG_DEBUG:542
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Write'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(541);
    // PUG_DEBUG:541
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Modal';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'button' => true, 'icon' => ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'icon') ? $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'icon') : 'message'), 'background' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'background'), 'head' => 'Написать', 'label' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label'), 'head_text' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head_text') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(540);
    // PUG_DEBUG:540
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Form';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['name' => 'Write']), [[false, array( 'label' => 'Отправить запрос', 'policy' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(525);
    // PUG_DEBUG:525
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'SwitchOfTabs';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'name' => 'WriteDepartment', 'label' => "Отдел" )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(523);
    // PUG_DEBUG:523
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Tab';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'head' => 'Отдел ритейл', 'value' => 'retail' )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(524);
    // PUG_DEBUG:524
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Tab';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'head' => 'Отдел horeca', 'value' => 'horeca' )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    });;
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(526);
    // PUG_DEBUG:526
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Input';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'type' => 'fake', 'label' => 'РљРѕРјСѓ', 'clipboard' => (isset($to_email) ? $to_email : null) )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(527);
    // PUG_DEBUG:527
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Input';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'type' => 'hidden', 'name' => "WriteEmailType", 'value' => "nofilter" )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(528);
    // PUG_DEBUG:528
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Input';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['name' => 'WriteEmail'], ['pattern' => true]), [[false, array( 'type' => 'email', 'label' => 'От кого', 'placeholder' => 'ваша@почта.com', 'required' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(529);
    // PUG_DEBUG:529
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Input';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['name' => 'WritePhone']), [[false, array( 'type' => 'tel', 'label' => 'Телефон', 'placeholder' => '+7...', 'required' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(530);
    // PUG_DEBUG:530
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Input';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['name' => 'WriteComment']), [[false, array( 'label' => 'Комментарий', 'type' => 'textarea', 'required' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(531);
    // PUG_DEBUG:531
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Input';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['name' => 'WriteFiles']), [[false, array( 'label' => 'Прикрепить файлы', 'type' => 'file' )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(539);
    // PUG_DEBUG:539
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_and']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'product'), function () use (&$dataset) { return $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'product', 'id'); }), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(534);
    // PUG_DEBUG:534
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'product', 'head'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(533);
    // PUG_DEBUG:533
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Input-h'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(532);
    // PUG_DEBUG:532
     ?><input<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['type' => 'hidden'], ['data-label' => 'Название товара'], ['value' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('value', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'product', 'head'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(538);
    // PUG_DEBUG:538
     }  if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'product', 'id'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(537);
    // PUG_DEBUG:537
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Input-h'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(535);
    // PUG_DEBUG:535
     ?><input<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['type' => 'hidden'], ['data-label' => 'Id товара'], ['value' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('value', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'product', 'id'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(536);
    // PUG_DEBUG:536
     ?></div><?php } ?><?php } ?><?php
    }); ?><?php
    }); ?></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['SwitchOfTabs'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(550);
    // PUG_DEBUG:550
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'SwitchOfTabs'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(544);
    // PUG_DEBUG:544
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'SwitchOfTabs-emails'], ['data-email' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('data-email', (isset($modal_emails) ? $modal_emails : null))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(547);
    // PUG_DEBUG:547
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'SwitchOfTabs-frame'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?= (is_bool($_pug_temp = $__pug_children(get_defined_vars())) ? var_export($_pug_temp, true) : $_pug_temp) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(546);
    // PUG_DEBUG:546
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'SwitchOfTabs-icon'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(545);
    // PUG_DEBUG:545
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, 'warning']], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(548);
    // PUG_DEBUG:548
     ?><input<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['type' => 'hidden'], ['name' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('name', ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'name') ? $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'name') : "Отдел"))], ['data-label' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('data-label', ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label') ? $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label') : 'Отдел'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(549);
    // PUG_DEBUG:549
     ?></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['Tab'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(552);
    // PUG_DEBUG:552
     ?><?php $tabClass = '' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(554);
    // PUG_DEBUG:554
     ?><?php if (method_exists($_pug_temp = isset($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset)['hidden']), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(553);
    // PUG_DEBUG:553
     ?><?php $tabClass = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'hidden') ? '' : 'isSelect' ?><?php } else { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(555);
    // PUG_DEBUG:555
     ?><?php $tabClass = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'value') == $filter ? 'isSelect' : '' ?><?php } ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(561);
    // PUG_DEBUG:561
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Tab'], ['class' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('class', (isset($tabClass) ? $tabClass : null))], ['data-v' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('data-v', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'value'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(560);
    // PUG_DEBUG:560
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Tab-frame'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(559);
    // PUG_DEBUG:559
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Tab-header'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(556);
    // PUG_DEBUG:556
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(557);
    // PUG_DEBUG:557
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head')) ? var_export($_pug_temp, true) : $_pug_temp) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(558);
    // PUG_DEBUG:558
     ?></div></div></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['Button'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(578);
    // PUG_DEBUG:578
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'type') == 'submit', "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(577);
    // PUG_DEBUG:577
     ?><button<?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(563);
    // PUG_DEBUG:563
     ?><?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment']($attributes, ['class' => 'Button'], ['type' => 'submit'], ['class' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('class', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'background') ? 'isBackground' : '')])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(568);
    // PUG_DEBUG:568
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_and']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'reversed'), function () use (&$dataset) { return $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label'); }), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(567);
    // PUG_DEBUG:567
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Button-segment'], ['class' => 'asLabel'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(566);
    // PUG_DEBUG:566
     ?><span><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(564);
    // PUG_DEBUG:564
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(565);
    // PUG_DEBUG:565
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label')) ? var_export($_pug_temp, true) : $_pug_temp) ?></span></span><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(572);
    // PUG_DEBUG:572
     }  if (!$GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'noIcon')) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(571);
    // PUG_DEBUG:571
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Button-segment'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(570);
    // PUG_DEBUG:570
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Button-icon'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(569);
    // PUG_DEBUG:569
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'icon'), function () { return 'arrowRight'; })]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></span></span><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(576);
    // PUG_DEBUG:576
     }  if (!$GLOBALS['__jpv_and']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'reversed'), function () use (&$dataset) { return $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label'); })) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(575);
    // PUG_DEBUG:575
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Button-segment'], ['class' => 'asLabel'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(573);
    // PUG_DEBUG:573
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(574);
    // PUG_DEBUG:574
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label')) ? var_export($_pug_temp, true) : $_pug_temp) ?></span><?php } ?></button><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(598);
    // PUG_DEBUG:598
     }  elseif (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'href'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(597);
    // PUG_DEBUG:597
     ?><a<?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(579);
    // PUG_DEBUG:579
     ?><?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment']($attributes, ['class' => 'Button'], ['href' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('href', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'href'))], ['class' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('class', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'background') ? 'isBackground' : '')])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(584);
    // PUG_DEBUG:584
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_and']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'reversed'), function () use (&$dataset) { return $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label'); }), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(583);
    // PUG_DEBUG:583
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Button-segment'], ['class' => 'asLabel'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(582);
    // PUG_DEBUG:582
     ?><span><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(580);
    // PUG_DEBUG:580
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(581);
    // PUG_DEBUG:581
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label')) ? var_export($_pug_temp, true) : $_pug_temp) ?></span></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(588);
    // PUG_DEBUG:588
     }  if (!$GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'noIcon')) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(587);
    // PUG_DEBUG:587
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Button-segment'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(586);
    // PUG_DEBUG:586
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Button-icon'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(585);
    // PUG_DEBUG:585
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'icon'), function () { return 'arrowRight'; })]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(592);
    // PUG_DEBUG:592
     }  if (!$GLOBALS['__jpv_and']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'reversed'), function () use (&$dataset) { return $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label'); })) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(591);
    // PUG_DEBUG:591
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Button-segment'], ['class' => 'asLabel'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(589);
    // PUG_DEBUG:589
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(590);
    // PUG_DEBUG:590
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label')) ? var_export($_pug_temp, true) : $_pug_temp) ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(596);
    // PUG_DEBUG:596
     }  if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'backSegment'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(595);
    // PUG_DEBUG:595
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Button-segment'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(594);
    // PUG_DEBUG:594
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Button-icon'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(593);
    // PUG_DEBUG:593
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, 'arrowRight']], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div></div><?php } ?></a><?php } else { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(615);
    // PUG_DEBUG:615
     ?><div<?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(599);
    // PUG_DEBUG:599
     ?><?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment']($attributes, ['class' => 'Button'], ['class' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('class', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'background') ? 'isBackground' : '')])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(604);
    // PUG_DEBUG:604
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_and']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'reversed'), function () use (&$dataset) { return $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label'); }), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(603);
    // PUG_DEBUG:603
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Button-segment'], ['class' => 'asLabel'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(602);
    // PUG_DEBUG:602
     ?><span><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(600);
    // PUG_DEBUG:600
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(601);
    // PUG_DEBUG:601
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label')) ? var_export($_pug_temp, true) : $_pug_temp) ?></span></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(608);
    // PUG_DEBUG:608
     }  if (!$GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'noIcon')) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(607);
    // PUG_DEBUG:607
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Button-segment'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(606);
    // PUG_DEBUG:606
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Button-icon'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(605);
    // PUG_DEBUG:605
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'icon'), function () { return 'arrowRight'; })]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(614);
    // PUG_DEBUG:614
     }  if (method_exists($_pug_temp = $GLOBALS['__jpv_and']((!$GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'reversed')), function () use (&$dataset) { return $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label'); }), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(613);
    // PUG_DEBUG:613
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Button-segment'], ['class' => 'asLabel'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(612);
    // PUG_DEBUG:612
     ?><span><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(609);
    // PUG_DEBUG:609
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(610);
    // PUG_DEBUG:610
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label')) ? var_export($_pug_temp, true) : $_pug_temp) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(611);
    // PUG_DEBUG:611
     ?></span></div><?php } ?></div><?php } ?><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['Item'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(636);
    // PUG_DEBUG:636
     ?><a<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['href' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('href', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'href'))], ['class' => 'Item'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(635);
    // PUG_DEBUG:635
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Item-frame'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(619);
    // PUG_DEBUG:619
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(618);
    // PUG_DEBUG:618
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Item-image'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(617);
    // PUG_DEBUG:617
     ?><img<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['src' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('src', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image', 'link'))], ['alt' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('alt', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image', 'alt'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /></div><?php } ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(630);
    // PUG_DEBUG:630
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Item-content'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(629);
    // PUG_DEBUG:629
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Item-text'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(622);
    // PUG_DEBUG:622
     ?><h3<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Item-head'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(620);
    // PUG_DEBUG:620
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(621);
    // PUG_DEBUG:621
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head')) ? var_export($_pug_temp, true) : $_pug_temp) ?></h3><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(625);
    // PUG_DEBUG:625
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'premium'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(624);
    // PUG_DEBUG:624
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Item-premium'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(623);
    // PUG_DEBUG:623
     ?>Премиум</span><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(628);
    // PUG_DEBUG:628
     }  if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'exclusive'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(627);
    // PUG_DEBUG:627
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Item-exclusive'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(626);
    // PUG_DEBUG:626
     ?>Эксклюзив</span><?php } ?></div></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(634);
    // PUG_DEBUG:634
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'new'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(633);
    // PUG_DEBUG:633
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Item-new'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(632);
    // PUG_DEBUG:632
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'NewFlag';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'text' => 'РќРѕРІРёРЅРєР°' )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(631);
    // PUG_DEBUG:631
    ;
    }); ?></div><?php } ?></div></a><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['Proof'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(675);
    // PUG_DEBUG:675
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Proof'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(661);
    // PUG_DEBUG:661
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Proof-frame'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(660);
    // PUG_DEBUG:660
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_and']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image'), function () use (&$dataset) { return $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image', 'link'); }), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(659);
    // PUG_DEBUG:659
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Proof-image'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(658);
    // PUG_DEBUG:658
     ?><img<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['src' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('src', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image', 'link'))], ['alt' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('alt', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image', 'alt'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /></div><?php } ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(674);
    // PUG_DEBUG:674
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Proof-content'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(665);
    // PUG_DEBUG:665
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'banner'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(664);
    // PUG_DEBUG:664
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Proof-text'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(662);
    // PUG_DEBUG:662
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(663);
    // PUG_DEBUG:663
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'banner')) ? var_export($_pug_temp, true) : $_pug_temp) ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(669);
    // PUG_DEBUG:669
     }  if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(668);
    // PUG_DEBUG:668
     ?><h3<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Proof-head'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(666);
    // PUG_DEBUG:666
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(667);
    // PUG_DEBUG:667
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head')) ? var_export($_pug_temp, true) : $_pug_temp) ?></h3><?php } ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(673);
    // PUG_DEBUG:673
     ?><p><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(670);
    // PUG_DEBUG:670
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(671);
    // PUG_DEBUG:671
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label')) ? var_export($_pug_temp, true) : $_pug_temp) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(672);
    // PUG_DEBUG:672
     ?></p></div></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['CatalogueProof'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(696);
    // PUG_DEBUG:696
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'CatalogueProof'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(687);
    // PUG_DEBUG:687
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'CatalogueProof-frame'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(683);
    // PUG_DEBUG:683
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_and']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image'), function () use (&$dataset) { return $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image', 'link'); }), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(682);
    // PUG_DEBUG:682
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'CatalogueProof-image'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(677);
    // PUG_DEBUG:677
     ?><img<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['src' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('src', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image', 'link'))], ['alt' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('alt', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image', 'alt'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(681);
    // PUG_DEBUG:681
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'banner'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(680);
    // PUG_DEBUG:680
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'CatalogueProof-text'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(678);
    // PUG_DEBUG:678
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(679);
    // PUG_DEBUG:679
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'banner')) ? var_export($_pug_temp, true) : $_pug_temp) ?></div><?php } ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(686);
    // PUG_DEBUG:686
     }  if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'icon'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(685);
    // PUG_DEBUG:685
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'CatalogueProof-icon'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(684);
    // PUG_DEBUG:684
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'icon')], [false, true]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div><?php } ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(691);
    // PUG_DEBUG:691
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(690);
    // PUG_DEBUG:690
     ?><h3<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'CatalogueProof-head'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(688);
    // PUG_DEBUG:688
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(689);
    // PUG_DEBUG:689
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head')) ? var_export($_pug_temp, true) : $_pug_temp) ?></h3><?php } ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(695);
    // PUG_DEBUG:695
     ?><p><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(692);
    // PUG_DEBUG:692
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(693);
    // PUG_DEBUG:693
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label')) ? var_export($_pug_temp, true) : $_pug_temp) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(694);
    // PUG_DEBUG:694
     ?></p></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['SimpleProof'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(725);
    // PUG_DEBUG:725
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'SimpleProof'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(720);
    // PUG_DEBUG:720
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'SimpleProof-label'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(718);
    // PUG_DEBUG:718
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(719);
    // PUG_DEBUG:719
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label')) ? var_export($_pug_temp, true) : $_pug_temp) ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(724);
    // PUG_DEBUG:724
     ?><p><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(721);
    // PUG_DEBUG:721
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(722);
    // PUG_DEBUG:722
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'text')) ? var_export($_pug_temp, true) : $_pug_temp) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(723);
    // PUG_DEBUG:723
     ?></p></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['StoreLink'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(732);
    // PUG_DEBUG:732
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'href'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(731);
    // PUG_DEBUG:731
     ?><a<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['href' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('href', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'href'))], ['title' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('title', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'title'))], ['class' => 'StoreLink'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(730);
    // PUG_DEBUG:730
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'StoreLink-frame'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(729);
    // PUG_DEBUG:729
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(728);
    // PUG_DEBUG:728
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'StoreLink-image'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(727);
    // PUG_DEBUG:727
     ?><img<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['src' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('src', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image', 'link'))], ['alt' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('alt', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image', 'alt'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /></div><?php } ?></div></a><?php } else { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(738);
    // PUG_DEBUG:738
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'StoreLink'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(737);
    // PUG_DEBUG:737
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'StoreLink-frame'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(736);
    // PUG_DEBUG:736
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(735);
    // PUG_DEBUG:735
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'StoreLink-image'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(733);
    // PUG_DEBUG:733
     ?><img<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['src' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('src', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image', 'link'))], ['alt' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('alt', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image', 'alt'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(734);
    // PUG_DEBUG:734
     ?></div><?php } ?></div></div><?php } ?><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['MainLink'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(788);
    // PUG_DEBUG:788
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'MainLink'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(787);
    // PUG_DEBUG:787
     ?><a<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['href' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('href', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'href'))], ['class' => 'MainLink-frame'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(782);
    // PUG_DEBUG:782
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'MainLink-content'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(776);
    // PUG_DEBUG:776
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'icon'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(775);
    // PUG_DEBUG:775
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'MainLink-icon'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(774);
    // PUG_DEBUG:774
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'icon')]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(780);
    // PUG_DEBUG:780
     }  if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(779);
    // PUG_DEBUG:779
     ?><h2<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'MainLink-head'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(777);
    // PUG_DEBUG:777
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(778);
    // PUG_DEBUG:778
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head')) ? var_export($_pug_temp, true) : $_pug_temp) ?></h2><?php } ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(781);
    // PUG_DEBUG:781
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'MainLink-text'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?= (is_bool($_pug_temp = $__pug_children(get_defined_vars())) ? var_export($_pug_temp, true) : $_pug_temp) ?></div></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(786);
    // PUG_DEBUG:786
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(785);
    // PUG_DEBUG:785
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'MainLink-image'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(783);
    // PUG_DEBUG:783
     ?><img<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['src' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('src', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image', 'link'))], ['alt' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('alt', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image', 'alt'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(784);
    // PUG_DEBUG:784
     ?></div><?php } ?></a></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['MainSlider'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(800);
    // PUG_DEBUG:800
     ?><?php $dataLen = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'data', 'length') ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(801);
    // PUG_DEBUG:801
     ?><?php $idx = 0 ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(829);
    // PUG_DEBUG:829
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'MainSlider'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(828);
    // PUG_DEBUG:828
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'MainSlider-frame'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(822);
    // PUG_DEBUG:822
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'MainSlider-slides'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(821);
    // PUG_DEBUG:821
     ?><?php $__eachScopeVariables = ['item' => isset($item) ? $item : null, 'i' => isset($i) ? $i : null];foreach ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'data') as $i => $item) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(820);
    // PUG_DEBUG:820
     ?><<?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(802);
    // PUG_DEBUG:802
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'link') ? 'a' : 'div') ? var_export($_pug_temp, true) : $_pug_temp) ?><?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'MainSlider-slide'], ['class' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('class', ((isset($i) ? $i : null) == 0 ? 'isSelect' : ''))], ['data-i' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('data-i', (isset($i) ? $i : null))], ['href' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('href', ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'link') ? $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'link') : false))], ['title' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('title', ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'link') ? $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'title') : false))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(805);
    // PUG_DEBUG:805
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'image'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(804);
    // PUG_DEBUG:804
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'MainSlider-image'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(803);
    // PUG_DEBUG:803
     ?><img<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['src' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('src', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'image', 'link'))], ['alt' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('alt', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'image', 'alt'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(819);
    // PUG_DEBUG:819
     }  if (method_exists($_pug_temp = $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'title'), function () use (&$item) { return $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'text'), function () use (&$item) { return $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'link'); }); }), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(818);
    // PUG_DEBUG:818
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'MainSlider-content'], ['class' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('class', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'hide_background') ? "MainSlider-content--no-background" : "")], ['style' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('style', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'hide_background') ? false : $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'background_style'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(817);
    // PUG_DEBUG:817
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'MainSlider-contentInside'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(809);
    // PUG_DEBUG:809
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'title'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(808);
    // PUG_DEBUG:808
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'MainSlider-contentHead'], ['style' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('style', (function_exists('sprintf') ? sprintf('color: %s', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'color_title')) : (isset($sprintf) ? $sprintf : null)('color: %s', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'color_title'))))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(806);
    // PUG_DEBUG:806
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(807);
    // PUG_DEBUG:807
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'title')) ? var_export($_pug_temp, true) : $_pug_temp) ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(813);
    // PUG_DEBUG:813
     }  if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'text'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(812);
    // PUG_DEBUG:812
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'MainSlider-contentText'], ['style' => $pugModule['Phug\Formatter\Format\BasicFormat::array_escape']('style', (function_exists('sprintf') ? sprintf('color: %s', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'color_text')) : (isset($sprintf) ? $sprintf : null)('color: %s', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'color_text'))))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(810);
    // PUG_DEBUG:810
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(811);
    // PUG_DEBUG:811
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'text')) ? var_export($_pug_temp, true) : $_pug_temp) ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(816);
    // PUG_DEBUG:816
     }  if (method_exists($_pug_temp = $GLOBALS['__jpv_and']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'link'), function () use (&$item) { return $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'show_button'); }), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(815);
    // PUG_DEBUG:815
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'MainSlider-contentButton'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(814);
    // PUG_DEBUG:814
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Button';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, $pugModule['Phug\Formatter\Format\BasicFormat::merge_attributes'](['type' => 'button']), [[false, array( 'label' => ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'label') ? $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'label') : 'Подробнее'), 'background' => true, 'reversed' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div><?php } ?></div></div><?php } ?></<?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(802);
    // PUG_DEBUG:802
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'link') ? 'a' : 'div') ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php }extract($__eachScopeVariables); ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(827);
    // PUG_DEBUG:827
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'MainSlider-dots'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(825);
    // PUG_DEBUG:825
     ?><?php while (method_exists($_pug_temp = $idx < $dataLen, "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(823);
    // PUG_DEBUG:823
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['data-i' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('data-i', (isset($idx) ? $idx : null))], ['class' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('class', ((isset($idx) ? $idx : null) == 0 ? 'isSelect' : ''))], ['class' => 'MainSlider-dot'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>></span><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(824);
    // PUG_DEBUG:824
     ?><?php $idx = $GLOBALS['__jpv_plus_with_ref']($idx, 1) ?><?php } ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(826);
    // PUG_DEBUG:826
     ?></div></div></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['FeedBackControls'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(836);
    // PUG_DEBUG:836
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'FeedBackControls'], ['class' => 'isFixed'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(832);
    // PUG_DEBUG:832
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'FeedBackControls-phone'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(831);
    // PUG_DEBUG:831
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Callback';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'background' => true, 'number' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'phone'), 'head_text' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($modal_texts, 'callback') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(835);
    // PUG_DEBUG:835
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'FeedBackControls-message'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(834);
    // PUG_DEBUG:834
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Write';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'background' => true, 'head_text' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($modal_texts, 'write') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(833);
    // PUG_DEBUG:833
    ;
    }); ?></div></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['BreadCrumbs'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(846);
    // PUG_DEBUG:846
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'BreadCrumbs'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(845);
    // PUG_DEBUG:845
     ?><?php $__eachScopeVariables = ['item' => isset($item) ? $item : null];foreach ($dataset as $item) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(844);
    // PUG_DEBUG:844
     ?><a<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['href' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('href', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'href'))], ['class' => 'BreadCrumbs-item'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(840);
    // PUG_DEBUG:840
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'BreadCrumbs-label'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(838);
    // PUG_DEBUG:838
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(839);
    // PUG_DEBUG:839
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'label')) ? var_export($_pug_temp, true) : $_pug_temp) ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(843);
    // PUG_DEBUG:843
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'BreadCrumbs-separator'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(841);
    // PUG_DEBUG:841
     ?>/<?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(842);
    // PUG_DEBUG:842
     ?></div></a><?php }extract($__eachScopeVariables); ?></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['SmallSlider'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(848);
    // PUG_DEBUG:848
     ?><?php $dataLen = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'data', 'length') ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(849);
    // PUG_DEBUG:849
     ?><?php $idx = 0 ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(881);
    // PUG_DEBUG:881
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'SmallSlider'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(880);
    // PUG_DEBUG:880
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'SmallSlider-frame'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(853);
    // PUG_DEBUG:853
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'SmallSlider-dots'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(852);
    // PUG_DEBUG:852
     ?><?php while (method_exists($_pug_temp = $idx < $dataLen, "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(850);
    // PUG_DEBUG:850
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['data-i' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('data-i', (isset($idx) ? $idx : null))], ['class' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('class', (isset($idx) ? $idx : null) == 0 ? 'isSelect' : '')], ['class' => 'SmallSlider-dot'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>></span><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(851);
    // PUG_DEBUG:851
     ?><?php $idx = $GLOBALS['__jpv_plus_with_ref']($idx, 1) ?><?php } ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(879);
    // PUG_DEBUG:879
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'SmallSlider-slides'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(878);
    // PUG_DEBUG:878
     ?><?php $__eachScopeVariables = ['item' => isset($item) ? $item : null, 'i' => isset($i) ? $i : null];foreach ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'data') as $i => $item) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(865);
    // PUG_DEBUG:865
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'link'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(864);
    // PUG_DEBUG:864
     ?><a<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'SmallSlider-slide'], ['class' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('class', ((isset($i) ? $i : null) == 0) ? 'isSelect' : '')], ['data-i' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('data-i', (isset($i) ? $i : null))], ['href' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('href', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'link'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(855);
    // PUG_DEBUG:855
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'SmallSlider-img'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(854);
    // PUG_DEBUG:854
     ?><img<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['src' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('src', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'image', 'link'))], ['alt' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('alt', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'image', 'alt'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(863);
    // PUG_DEBUG:863
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'SmallSlider-content'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(859);
    // PUG_DEBUG:859
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'title'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(858);
    // PUG_DEBUG:858
     ?><h3<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'SmallSlider-head'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(856);
    // PUG_DEBUG:856
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(857);
    // PUG_DEBUG:857
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'title')) ? var_export($_pug_temp, true) : $_pug_temp) ?></h3><?php } ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(862);
    // PUG_DEBUG:862
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'SmallSlider-text'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(860);
    // PUG_DEBUG:860
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(861);
    // PUG_DEBUG:861
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'content')) ? var_export($_pug_temp, true) : $_pug_temp) ?></div></div></a><?php } else { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(877);
    // PUG_DEBUG:877
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'SmallSlider-slide'], ['class' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('class', ((isset($i) ? $i : null) == 0) ? 'isSelect' : '')], ['data-i' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('data-i', (isset($i) ? $i : null))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(867);
    // PUG_DEBUG:867
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'SmallSlider-img'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(866);
    // PUG_DEBUG:866
     ?><img<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['src' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('src', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'image', 'link'))], ['alt' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('alt', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'image', 'alt'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(876);
    // PUG_DEBUG:876
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'SmallSlider-content'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(871);
    // PUG_DEBUG:871
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'title'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(870);
    // PUG_DEBUG:870
     ?><h3<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'SmallSlider-head'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(868);
    // PUG_DEBUG:868
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(869);
    // PUG_DEBUG:869
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'title')) ? var_export($_pug_temp, true) : $_pug_temp) ?></h3><?php } ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(875);
    // PUG_DEBUG:875
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'SmallSlider-text'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(872);
    // PUG_DEBUG:872
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(873);
    // PUG_DEBUG:873
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'content')) ? var_export($_pug_temp, true) : $_pug_temp) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(874);
    // PUG_DEBUG:874
     ?></div></div></div><?php } ?><?php }extract($__eachScopeVariables); ?></div></div></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['CatItem'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(893);
    // PUG_DEBUG:893
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'CatItem'], ['class' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('class', ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'small') ? "CatItem--small" : ""))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(892);
    // PUG_DEBUG:892
     ?><a<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['href' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('href', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'href'))], ['class' => 'CatItem-frame'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(887);
    // PUG_DEBUG:887
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'CatItem-content'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(886);
    // PUG_DEBUG:886
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(885);
    // PUG_DEBUG:885
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'CatItem-head'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(883);
    // PUG_DEBUG:883
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(884);
    // PUG_DEBUG:884
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head')) ? var_export($_pug_temp, true) : $_pug_temp) ?></div><?php } ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(891);
    // PUG_DEBUG:891
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(890);
    // PUG_DEBUG:890
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'CatItem-image'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(888);
    // PUG_DEBUG:888
     ?><img<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['src' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('src', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image', 'link'))], ['alt' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('alt', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image', 'alt'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(889);
    // PUG_DEBUG:889
     ?></div><?php } ?></a></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['CatalogueProofs'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(921);
    // PUG_DEBUG:921
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'CatalogueProofs'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(908);
    // PUG_DEBUG:908
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(907);
    // PUG_DEBUG:907
     ?><h1<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'CatalogueProofs-head'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(905);
    // PUG_DEBUG:905
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(906);
    // PUG_DEBUG:906
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head')) ? var_export($_pug_temp, true) : $_pug_temp) ?></h1><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(912);
    // PUG_DEBUG:912
     }  if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'title'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(911);
    // PUG_DEBUG:911
     ?><h2<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'CatalogueProofs-title'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(909);
    // PUG_DEBUG:909
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(910);
    // PUG_DEBUG:910
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'title')) ? var_export($_pug_temp, true) : $_pug_temp) ?></h2><?php } ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(916);
    // PUG_DEBUG:916
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'CatalogueProofs-frame'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(915);
    // PUG_DEBUG:915
     ?><?php $__eachScopeVariables = ['item' => isset($item) ? $item : null];foreach ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'data') as $item) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(914);
    // PUG_DEBUG:914
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'CatalogueProofs-item'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(913);
    // PUG_DEBUG:913
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'CatalogueProof';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'icon' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'icon'), 'label' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'text'), 'head' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'title') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div><?php }extract($__eachScopeVariables); ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(920);
    // PUG_DEBUG:920
     ?><?php if (!$GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'hiddenButton')) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(919);
    // PUG_DEBUG:919
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'CatalogueProofs-button'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(918);
    // PUG_DEBUG:918
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Callback';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'icon' => 'request', 'title' => "Отправить запрос", 'label' => 'Отправить запрос', 'background' => true, 'number' => (isset($phone) ? $phone : null), 'head_text' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($modal_texts, 'callback') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(917);
    // PUG_DEBUG:917
    ;
    }); ?></div><?php } ?></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['CatalogueItems'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(939);
    // PUG_DEBUG:939
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'CatalogueItems'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(938);
    // PUG_DEBUG:938
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'CatalogueItems-frame'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(924);
    // PUG_DEBUG:924
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'CatalogueItems-item'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(923);
    // PUG_DEBUG:923
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'SmallSlider';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'data' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'slider') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(928);
    // PUG_DEBUG:928
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'categories'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(927);
    // PUG_DEBUG:927
     ?><?php $__eachScopeVariables = ['item' => isset($item) ? $item : null];foreach ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'categories') as $item) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(926);
    // PUG_DEBUG:926
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'CatalogueItems-item'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(925);
    // PUG_DEBUG:925
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'CatItem';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'head' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'title'), 'image' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'image'), 'href' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'href') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div><?php }extract($__eachScopeVariables); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(937);
    // PUG_DEBUG:937
     }  if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'extra_block'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(936);
    // PUG_DEBUG:936
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'CatalogueItems-item'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(935);
    // PUG_DEBUG:935
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'ItemAd';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'link' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'extra_block', 'link'), 'head' => ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'extra_block', 'title') ? $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'extra_block', 'title') : 'И ещё 1500 наименований'), 'img' => ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'extra_block', 'image', 'link') ? $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'extra_block', 'image') : array( 'link' => $GLOBALS['__jpv_plus_with_ref']($template_directory, '/assets/img/itemAd.png'), 'alt' => "additional_link" )) )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(931);
    // PUG_DEBUG:931
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'extra_block', 'content'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(929);
    // PUG_DEBUG:929
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(930);
    // PUG_DEBUG:930
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'extra_block', 'content')) ? var_export($_pug_temp, true) : $_pug_temp) ?><?php } else { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(934);
    // PUG_DEBUG:934
     ?><p><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(932);
    // PUG_DEBUG:932
     ?>Для полноценного обеспечения производства всеми необходимыми продуктами.<?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(933);
    // PUG_DEBUG:933
     ?></p><?php } ?><?php
    }); ?></div><?php } ?></div></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['ItemAd'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(952);
    // PUG_DEBUG:952
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ItemAd'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(951);
    // PUG_DEBUG:951
     ?><a<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ItemAd-frame'], ['href' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('href', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'link'))], ['title' => 'additional'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(943);
    // PUG_DEBUG:943
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ItemAd-slide'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(942);
    // PUG_DEBUG:942
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ItemAd-img'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(941);
    // PUG_DEBUG:941
     ?><img<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['src' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('src', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'img', 'link'))], ['alt' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('alt', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'img', 'alt'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /></div></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(950);
    // PUG_DEBUG:950
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ItemAd-content'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(947);
    // PUG_DEBUG:947
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(946);
    // PUG_DEBUG:946
     ?><h3<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ItemAd-head'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(944);
    // PUG_DEBUG:944
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(945);
    // PUG_DEBUG:945
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head')) ? var_export($_pug_temp, true) : $_pug_temp) ?></h3><?php } ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(949);
    // PUG_DEBUG:949
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ItemAd-text'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?= (is_bool($_pug_temp = $__pug_children(get_defined_vars())) ? var_export($_pug_temp, true) : $_pug_temp) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(948);
    // PUG_DEBUG:948
     ?></div></div></a></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['Pagination__container'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', null]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(955);
    // PUG_DEBUG:955
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Pagination'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(954);
    // PUG_DEBUG:954
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Pagination-frame'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?= (is_bool($_pug_temp = $__pug_children(get_defined_vars())) ? var_export($_pug_temp, true) : $_pug_temp) ?></div></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['Pagination__prevButton'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'isDisabled', null], [false, 'href', null], [false, 'index', null]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(958);
    // PUG_DEBUG:958
     ?><?php if (method_exists($_pug_temp = (isset($isDisabled) ? $isDisabled : null), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(957);
    // PUG_DEBUG:957
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Pagination-button'], ['class' => 'asBack'], ['class' => 'isSelect'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(956);
    // PUG_DEBUG:956
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, 'arrowLeft']], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div><?php } else { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(960);
    // PUG_DEBUG:960
     ?><a<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Pagination-button'], ['class' => 'asBack'], ['href' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('href', (isset($href) ? $href : null))], ['rel' => 'prev'], ['data-i' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('data-i', (isset($index) ? $index : null))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(959);
    // PUG_DEBUG:959
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, 'arrowLeft']], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></a><?php } ?><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['Pagination__nextButton'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'isDisabled', null], [false, 'href', null], [false, 'index', null]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(963);
    // PUG_DEBUG:963
     ?><?php if (method_exists($_pug_temp = (isset($isDisabled) ? $isDisabled : null), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(962);
    // PUG_DEBUG:962
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Pagination-button'], ['class' => 'asNext'], ['class' => 'isSelect'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(961);
    // PUG_DEBUG:961
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, 'arrowRight']], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div><?php } else { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(965);
    // PUG_DEBUG:965
     ?><a<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Pagination-button'], ['class' => 'asNext'], ['href' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('href', (isset($href) ? $href : null))], ['rel' => 'next'], ['data-i' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('data-i', (isset($index) ? $index : null))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(964);
    // PUG_DEBUG:964
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, 'arrowRight']], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></a><?php } ?><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['Pagination__separator'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(967);
    // PUG_DEBUG:967
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Pagination-button'], ['class' => 'isMore'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(966);
    // PUG_DEBUG:966
     ?>...</div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['Pagination__item'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'isSelected', null], [false, 'href', null], [false, 'rel', null], [false, 'label', null]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(970);
    // PUG_DEBUG:970
     ?><a<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Pagination-button'], ['class' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('class', ((isset($isSelected) ? $isSelected : null) ? 'isSelect' : ''))], ['href' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('href', (isset($href) ? $href : null))], ['rel' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('rel', (isset($rel) ? $rel : null))], ['data-i' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('data-i', (isset($label) ? $label : null))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(969);
    // PUG_DEBUG:969
     ?><span><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(968);
    // PUG_DEBUG:968
     ?><?= htmlspecialchars((is_bool($_pug_temp = (isset($label) ? $label : null)) ? var_export($_pug_temp, true) : $_pug_temp)) ?></span></a><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['Pagination__currentItem'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'page_url', null], [false, 'current_page', null], [false, 'i', null], [false, 'page_param', null]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(972);
    // PUG_DEBUG:972
     ?><?php if (method_exists($_pug_temp = (isset($i) ? $i : null) === 1, "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(971);
    // PUG_DEBUG:971
     ?><?php $c_page_url = (function_exists('substr') ? substr($page_url, 0, -1) : $substr($page_url, 0, -1)) ?><?php } else { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(973);
    // PUG_DEBUG:973
     ?><?php $c_page_url = $GLOBALS['__jpv_plus_with_ref']($page_url, $page_param, $i) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(975);
    // PUG_DEBUG:975
     }  if (method_exists($_pug_temp = (isset($current_page) ? $current_page : null) === (isset($i) ? $i : null), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(974);
    // PUG_DEBUG:974
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Pagination__item';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, true], [false, (isset($c_page_url) ? $c_page_url : null)], [false, false], [false, (isset($i) ? $i : null)]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(977);
    // PUG_DEBUG:977
     }  elseif (method_exists($_pug_temp = ((isset($current_page) ? $current_page : null) - 1) === (isset($i) ? $i : null), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(976);
    // PUG_DEBUG:976
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Pagination__item';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, false], [false, (isset($c_page_url) ? $c_page_url : null)], [false, 'prev'], [false, (isset($i) ? $i : null)]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(979);
    // PUG_DEBUG:979
     }  elseif (method_exists($_pug_temp = ($GLOBALS['__jpv_plus_with_ref']($current_page, 1)) === (isset($i) ? $i : null), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(978);
    // PUG_DEBUG:978
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Pagination__item';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, false], [false, (isset($c_page_url) ? $c_page_url : null)], [false, 'next'], [false, (isset($i) ? $i : null)]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php } else { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(980);
    // PUG_DEBUG:980
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Pagination__item';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, false], [false, (isset($c_page_url) ? $c_page_url : null)], [false, false], [false, (isset($i) ? $i : null)]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php };
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['Pagination'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', null]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(981);
    // PUG_DEBUG:981
     ?><?php $page_url = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'page_url') ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(982);
    // PUG_DEBUG:982
     ?><?php $number_pages = (function_exists('intval') ? intval($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'number_pages')) : $intval($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'number_pages'))) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(983);
    // PUG_DEBUG:983
     ?><?php $current_page = (function_exists('intval') ? intval($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'current_page')) : $intval($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'current_page'))) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(984);
    // PUG_DEBUG:984
     ?><?php $page_param = 'page' ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(986);
    // PUG_DEBUG:986
     ?><?php if (method_exists($_pug_temp = isset($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset)['page_param']), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(985);
    // PUG_DEBUG:985
     ?><?php $page_param = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'page_param') ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(987);
    // PUG_DEBUG:987
     }  $page_param = $GLOBALS['__jpv_plus_with_ref']($page_param, '=') ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(989);
    // PUG_DEBUG:989
     ?><?php if (method_exists($_pug_temp = isset($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset)['sort']), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(988);
    // PUG_DEBUG:988
     ?><?php $page_url = $GLOBALS['__jpv_plus_with_ref']($page_url, '?sort=', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'sort'), '&') ?><?php } else { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(990);
    // PUG_DEBUG:990
     ?><?php $page_url = $GLOBALS['__jpv_plus_with_ref']($page_url, '?') ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1030);
    // PUG_DEBUG:1030
     }  if (method_exists($_pug_temp = (isset($number_pages) ? $number_pages : null) > 1, "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1029);
    // PUG_DEBUG:1029
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Pagination__container';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, (isset($dataset) ? $dataset : null)]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(992);
    // PUG_DEBUG:992
     ?><?php if (method_exists($_pug_temp = (isset($current_page) ? $current_page : null) === 1, "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(991);
    // PUG_DEBUG:991
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Pagination__prevButton';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, true]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php } else { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(993);
    // PUG_DEBUG:993
     ?><?php $i = $current_page - 1 ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(995);
    // PUG_DEBUG:995
     ?><?php if (method_exists($_pug_temp = (isset($i) ? $i : null) === 1, "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(994);
    // PUG_DEBUG:994
     ?><?php $c_page_url = (function_exists('substr') ? substr($page_url, 0, -1) : $substr($page_url, 0, -1)) ?><?php } else { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(996);
    // PUG_DEBUG:996
     ?><?php $c_page_url = $GLOBALS['__jpv_plus_with_ref']($page_url, $page_param, $i) ?><?php } ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(997);
    // PUG_DEBUG:997
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Pagination__prevButton';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, false], [false, (isset($c_page_url) ? $c_page_url : null)], [false, (isset($i) ? $i : null)]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(998);
    // PUG_DEBUG:998
     }  $i = 1 ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(999);
    // PUG_DEBUG:999
     ?><?php $offset = 3 ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1002);
    // PUG_DEBUG:1002
     ?><?php while (method_exists($_pug_temp = $GLOBALS['__jpv_and'](($i <= $offset), function () use (&$i, &$number_pages) { return ($i <= $number_pages); }), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1000);
    // PUG_DEBUG:1000
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Pagination__currentItem';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, (isset($page_url) ? $page_url : null)], [false, (isset($current_page) ? $current_page : null)], [false, (isset($i) ? $i : null)], [false, (isset($page_param) ? $page_param : null)]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1001);
    // PUG_DEBUG:1001
     ?><?php $i += 1 ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1003);
    // PUG_DEBUG:1003
     }  $right_i = ($number_pages - $offset) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1006);
    // PUG_DEBUG:1006
     ?><?php if (method_exists($_pug_temp = (isset($current_page) ? $current_page : null) > ($GLOBALS['__jpv_plus_with_ref']($i, 1)), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1005);
    // PUG_DEBUG:1005
     ?><?php if (method_exists($_pug_temp = (isset($number_pages) ? $number_pages : null) > (2 * (isset($offset) ? $offset : null)), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1004);
    // PUG_DEBUG:1004
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Pagination__separator';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php } ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1008);
    // PUG_DEBUG:1008
     }  if (method_exists($_pug_temp = $GLOBALS['__jpv_and'](((isset($current_page) ? $current_page : null) > (isset($i) ? $i : null)), function () use (&$current_page, &$right_i) { return ((isset($current_page) ? $current_page : null) < ($GLOBALS['__jpv_plus_with_ref']($right_i, 2))); }), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1007);
    // PUG_DEBUG:1007
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Pagination__currentItem';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, (isset($page_url) ? $page_url : null)], [false, (isset($current_page) ? $current_page : null)], [false, (isset($current_page) ? $current_page : null) - 1], [false, (isset($page_param) ? $page_param : null)]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1010);
    // PUG_DEBUG:1010
     }  if (method_exists($_pug_temp = $GLOBALS['__jpv_and'](((isset($current_page) ? $current_page : null) >= (isset($i) ? $i : null)), function () use (&$current_page, &$right_i) { return ((isset($current_page) ? $current_page : null) < ($GLOBALS['__jpv_plus_with_ref']($right_i, 1))); }), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1009);
    // PUG_DEBUG:1009
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Pagination__currentItem';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, (isset($page_url) ? $page_url : null)], [false, (isset($current_page) ? $current_page : null)], [false, (isset($current_page) ? $current_page : null)], [false, (isset($page_param) ? $page_param : null)]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1012);
    // PUG_DEBUG:1012
     }  if (method_exists($_pug_temp = $GLOBALS['__jpv_and'](((isset($current_page) ? $current_page : null) >= ((isset($i) ? $i : null) - 1)), function () use (&$current_page, &$right_i) { return ((isset($current_page) ? $current_page : null) < (isset($right_i) ? $right_i : null)); }), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1011);
    // PUG_DEBUG:1011
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Pagination__currentItem';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, (isset($page_url) ? $page_url : null)], [false, (isset($current_page) ? $current_page : null)], [false, $GLOBALS['__jpv_plus_with_ref']($current_page, 1)], [false, (isset($page_param) ? $page_param : null)]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1015);
    // PUG_DEBUG:1015
     }  if (method_exists($_pug_temp = (isset($current_page) ? $current_page : null) < ((isset($right_i) ? $right_i : null) - 1), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1014);
    // PUG_DEBUG:1014
     ?><?php if (method_exists($_pug_temp = (isset($right_i) ? $right_i : null) > (isset($offset) ? $offset : null), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1013);
    // PUG_DEBUG:1013
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Pagination__separator';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php } ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1016);
    // PUG_DEBUG:1016
     }  $i = $GLOBALS['__jpv_plus_with_ref']($right_i, 1) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1020);
    // PUG_DEBUG:1020
     ?><?php while (method_exists($_pug_temp = $i <= $number_pages, "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1018);
    // PUG_DEBUG:1018
     ?><?php if (method_exists($_pug_temp = (isset($i) ? $i : null) > (isset($offset) ? $offset : null), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1017);
    // PUG_DEBUG:1017
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Pagination__currentItem';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, (isset($page_url) ? $page_url : null)], [false, (isset($current_page) ? $current_page : null)], [false, (isset($i) ? $i : null)], [false, (isset($page_param) ? $page_param : null)]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1019);
    // PUG_DEBUG:1019
     }  $i += 1 ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1022);
    // PUG_DEBUG:1022
     }  if (method_exists($_pug_temp = (isset($current_page) ? $current_page : null) === (isset($number_pages) ? $number_pages : null), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1021);
    // PUG_DEBUG:1021
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Pagination__nextButton';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, true]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php } else { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1023);
    // PUG_DEBUG:1023
     ?><?php $i = $GLOBALS['__jpv_plus_with_ref']($current_page, 1) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1025);
    // PUG_DEBUG:1025
     ?><?php if (method_exists($_pug_temp = (isset($i) ? $i : null) === 1, "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1024);
    // PUG_DEBUG:1024
     ?><?php $c_page_url = (function_exists('substr') ? substr($page_url, 0, -1) : $substr($page_url, 0, -1)) ?><?php } else { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1026);
    // PUG_DEBUG:1026
     ?><?php $c_page_url = $GLOBALS['__jpv_plus_with_ref']($page_url, $page_param, $i) ?><?php } ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1028);
    // PUG_DEBUG:1028
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Pagination__nextButton';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, false], [false, (isset($c_page_url) ? $c_page_url : null)], [false, (isset($i) ? $i : null)]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1027);
    // PUG_DEBUG:1027
    ;
    }); ?><?php };
    }); ?><?php };
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['Recipe'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1181);
    // PUG_DEBUG:1181
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Recipe'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1180);
    // PUG_DEBUG:1180
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Recipe-frame'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1174);
    // PUG_DEBUG:1174
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Recipe-image'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1171);
    // PUG_DEBUG:1171
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Recipe-img'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1170);
    // PUG_DEBUG:1170
     ?><img<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['src' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('src', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image', 'link'))], ['alt' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('alt', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image', 'alt'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1173);
    // PUG_DEBUG:1173
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Recipe-icon'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1172);
    // PUG_DEBUG:1172
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, 'recipe']], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1179);
    // PUG_DEBUG:1179
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Recipe-text'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1178);
    // PUG_DEBUG:1178
     ?><h3<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Recipe-head'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1175);
    // PUG_DEBUG:1175
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1176);
    // PUG_DEBUG:1176
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head')) ? var_export($_pug_temp, true) : $_pug_temp) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1177);
    // PUG_DEBUG:1177
     ?></h3></div></div></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['NewsCard'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1245);
    // PUG_DEBUG:1245
     ?><a<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['href' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('href', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'href'))], ['class' => 'NewsCard'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1244);
    // PUG_DEBUG:1244
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'NewsCard-frame'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1234);
    // PUG_DEBUG:1234
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1233);
    // PUG_DEBUG:1233
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'NewsCard-image'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1232);
    // PUG_DEBUG:1232
     ?><img<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['src' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('src', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image', 'link'))], ['alt' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('alt', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image', 'alt'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1238);
    // PUG_DEBUG:1238
     }  if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1237);
    // PUG_DEBUG:1237
     ?><h3<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'NewsCard-head'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1235);
    // PUG_DEBUG:1235
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1236);
    // PUG_DEBUG:1236
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head')) ? var_export($_pug_temp, true) : $_pug_temp) ?></h3><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1243);
    // PUG_DEBUG:1243
     }  if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'date'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1242);
    // PUG_DEBUG:1242
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'NewsCard-date'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1239);
    // PUG_DEBUG:1239
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1240);
    // PUG_DEBUG:1240
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'date')) ? var_export($_pug_temp, true) : $_pug_temp) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1241);
    // PUG_DEBUG:1241
     ?></div><?php } ?></div></a><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['ProofSet'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1271);
    // PUG_DEBUG:1271
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ProofSet'], ['class' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('class', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'margin') ? 'isMargin' : '')])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1265);
    // PUG_DEBUG:1265
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1264);
    // PUG_DEBUG:1264
     ?><h3<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ProofSet-head'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1262);
    // PUG_DEBUG:1262
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1263);
    // PUG_DEBUG:1263
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head')) ? var_export($_pug_temp, true) : $_pug_temp) ?></h3><?php } ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1270);
    // PUG_DEBUG:1270
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ProofSet-content'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1269);
    // PUG_DEBUG:1269
     ?><?php $__eachScopeVariables = ['item' => isset($item) ? $item : null];foreach ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'data') as $item) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1268);
    // PUG_DEBUG:1268
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ProofSet-item'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1267);
    // PUG_DEBUG:1267
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Proof';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'image' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'image'), 'banner' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'title'), 'label' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'text'), 'head' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'head'), 'icon' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'icon') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1266);
    // PUG_DEBUG:1266
    ;
    }); ?></div><?php }extract($__eachScopeVariables); ?></div></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['IconedProofSet'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1282);
    // PUG_DEBUG:1282
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'IconedProofSet'], ['class' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('class', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'margin') ? 'isMargin' : '')])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1276);
    // PUG_DEBUG:1276
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1275);
    // PUG_DEBUG:1275
     ?><h3<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'IconedProofSet-head'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1273);
    // PUG_DEBUG:1273
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1274);
    // PUG_DEBUG:1274
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head')) ? var_export($_pug_temp, true) : $_pug_temp) ?></h3><?php } ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1281);
    // PUG_DEBUG:1281
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'IconedProofSet-content'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1280);
    // PUG_DEBUG:1280
     ?><?php $__eachScopeVariables = ['item' => isset($item) ? $item : null];foreach ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'data') as $item) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1279);
    // PUG_DEBUG:1279
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'IconedProofSet-item'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1278);
    // PUG_DEBUG:1278
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'CatalogueProof';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'image' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'image'), 'banner' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'title'), 'label' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'text'), 'head' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'head'), 'icon' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'icon') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1277);
    // PUG_DEBUG:1277
    ;
    }); ?></div><?php }extract($__eachScopeVariables); ?></div></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['SimpleProofSet'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1293);
    // PUG_DEBUG:1293
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'SimpleProofSet'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1292);
    // PUG_DEBUG:1292
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'SimpleProofSet-content'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1287);
    // PUG_DEBUG:1287
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1286);
    // PUG_DEBUG:1286
     ?><h2<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'SimpleProofSet-head'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1284);
    // PUG_DEBUG:1284
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1285);
    // PUG_DEBUG:1285
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head')) ? var_export($_pug_temp, true) : $_pug_temp) ?></h2><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1291);
    // PUG_DEBUG:1291
     }  $__eachScopeVariables = ['item' => isset($item) ? $item : null];foreach ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'data') as $item) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1290);
    // PUG_DEBUG:1290
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\Formatter\Format\BasicFormat::attributes_assignment'](array(  ), ['class' => 'SimpleProofSet-item'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1289);
    // PUG_DEBUG:1289
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'SimpleProof';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'label' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'title'), 'text' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'text') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1288);
    // PUG_DEBUG:1288
    ;
    }); ?></div><?php }extract($__eachScopeVariables); ?></div></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['PictureWithCaption'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1302);
    // PUG_DEBUG:1302
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'PictureWithCaption'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1296);
    // PUG_DEBUG:1296
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'PictureWithCaption-image'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1295);
    // PUG_DEBUG:1295
     ?><img<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['src' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('src', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image', 'link'))], ['alt' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('alt', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'image', 'alt'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1301);
    // PUG_DEBUG:1301
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'PictureWithCaption-content'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1300);
    // PUG_DEBUG:1300
     ?><p><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1297);
    // PUG_DEBUG:1297
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1298);
    // PUG_DEBUG:1298
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'text')) ? var_export($_pug_temp, true) : $_pug_temp) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1299);
    // PUG_DEBUG:1299
     ?></p></div></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['NewFlag'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1370);
    // PUG_DEBUG:1370
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'NewFlag'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1365);
    // PUG_DEBUG:1365
     ?><svg<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'NewFlag-flag'], ['fill' => 'none'], ['xmlns' => 'http://www.w3.org/2000/svg'])
    ) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1364);
    // PUG_DEBUG:1364
     ?><path<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['d' => 'M0 2C0 0.89543 0.895431 0 2 0H112.253C113.61 0 114.573 1.32289 114.156 2.6144L110.356 14.3856C110.227 14.7851 110.227 15.2149 110.356 15.6144L114.156 27.3856C114.573 28.6771 113.61 30 112.253 30H2C0.895433 30 0 29.1046 0 28V2Z'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>></path></svg><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1369);
    // PUG_DEBUG:1369
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'NewFlag-text'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1366);
    // PUG_DEBUG:1366
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1367);
    // PUG_DEBUG:1367
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'text')) ? var_export($_pug_temp, true) : $_pug_temp) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1368);
    // PUG_DEBUG:1368
     ?></div></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['B2BCatalogCategoryWithSubs'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'category', null]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1613);
    // PUG_DEBUG:1613
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'B2BCatalog-categoriesItem'], ['class' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('class', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($category, 'opened') ? "B2BCatalog-categoriesItem--opened" : "")])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1603);
    // PUG_DEBUG:1603
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($category, 'image', 'link'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1602);
    // PUG_DEBUG:1602
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'B2BCatalog-categoriesItemImage'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1601);
    // PUG_DEBUG:1601
     ?><img<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['src' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('src', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($category, 'image', 'link'))], ['alt' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('alt', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($category, 'image', 'alt'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /></div><?php } ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1606);
    // PUG_DEBUG:1606
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'B2BCatalog-categoriesItemTitle'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1604);
    // PUG_DEBUG:1604
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1605);
    // PUG_DEBUG:1605
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($category, 'title')) ? var_export($_pug_temp, true) : $_pug_temp) ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1608);
    // PUG_DEBUG:1608
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'B2BCatalog-categoriesItemIcon'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1607);
    // PUG_DEBUG:1607
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, 'arrowRight']], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1612);
    // PUG_DEBUG:1612
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'B2BCatalog-categoriesItemSubs'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1611);
    // PUG_DEBUG:1611
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'B2BCatalog-categoriesItemSubsWrapper'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1610);
    // PUG_DEBUG:1610
     ?><?php $__eachScopeVariables = ['category' => isset($category) ? $category : null];foreach ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($category, 'childs') as $category) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1609);
    // PUG_DEBUG:1609
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'B2BCatalogCategory';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, (isset($category) ? $category : null)]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php }extract($__eachScopeVariables); ?></div></div></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['B2BCatalogCategoryTerminal'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'category', null]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1617);
    // PUG_DEBUG:1617
     ?><a<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'B2BCatalog-categoriesItem'], ['class' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('class', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($category, 'current') ? "B2BCatalog-categoriesItem--current" : "")], ['href' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('href', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($category, 'link'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1616);
    // PUG_DEBUG:1616
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'B2BCatalog-categoriesItemTitle'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1614);
    // PUG_DEBUG:1614
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1615);
    // PUG_DEBUG:1615
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($category, 'title')) ? var_export($_pug_temp, true) : $_pug_temp) ?></div></a><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['B2BCatalogCategory'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'category', null]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1619);
    // PUG_DEBUG:1619
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($category, 'childs'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1618);
    // PUG_DEBUG:1618
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'B2BCatalogCategoryWithSubs';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, (isset($category) ? $category : null)]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php } else { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1620);
    // PUG_DEBUG:1620
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'B2BCatalogCategoryTerminal';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, (isset($category) ? $category : null)]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php };
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['B2BCartCountControl'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )], [false, 'no_zero', false]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1712);
    // PUG_DEBUG:1712
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'B2BCartCountControl'], ['class' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('class', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'cart_count') < 1 ? "B2BCartCountControl--not-in-cart" : "")], ['data-product-id' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('data-product-id', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'post_id'))], ['data-no-zero' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('data-no-zero', (isset($no_zero) ? $no_zero : null))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1704);
    // PUG_DEBUG:1704
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'B2BCartCountControl-cartButton'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1703);
    // PUG_DEBUG:1703
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, 'cart']], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1706);
    // PUG_DEBUG:1706
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'B2BCartCountControl-minusButton'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1705);
    // PUG_DEBUG:1705
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, 'minus']], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1708);
    // PUG_DEBUG:1708
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'B2BCartCountControl-input'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1707);
    // PUG_DEBUG:1707
     ?><input<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['type' => 'number'], ['min' => '0'], ['step' => '1'], ['value' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('value', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'cart_count'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1711);
    // PUG_DEBUG:1711
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'B2BCartCountControl-plusButton'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1710);
    // PUG_DEBUG:1710
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, 'plus']], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1709);
    // PUG_DEBUG:1709
    ;
    }); ?></div></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['IconText'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1804);
    // PUG_DEBUG:1804
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'IconText'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1801);
    // PUG_DEBUG:1801
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'IconText-icon'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1800);
    // PUG_DEBUG:1800
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'icon')], [false, $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'big')]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1803);
    // PUG_DEBUG:1803
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'IconText-content'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?= (is_bool($_pug_temp = $__pug_children(get_defined_vars())) ? var_export($_pug_temp, true) : $_pug_temp) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1802);
    // PUG_DEBUG:1802
     ?></div></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['Map'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1811);
    // PUG_DEBUG:1811
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Map'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1810);
    // PUG_DEBUG:1810
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Map-card'], ['id' => 'map'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1806);
    // PUG_DEBUG:1806
     ?><script<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['src' => 'https://api-maps.yandex.ru/2.1/?lang=ru_RU'], ['type' => 'text/javascript'])
    ) ? var_export($_pug_temp, true) : $_pug_temp) ?>></script><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1808);
    // PUG_DEBUG:1808
     ?><script><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1807);
    // PUG_DEBUG:1807
     ?>ymaps.ready(function init() {
    	const myMap = new ymaps.Map("map", {
    			center: [61.820135, 98.315579],
    			zoom: 2
    		});
    		myMap.behaviors.disable(['scrollZoom'])
    		myMap.controls.remove('geolocationControl');
    		myMap.controls.remove('searchControl');
    		myMap.controls.remove('trafficControl');
    		myMap.controls.remove('typeSelector');
    		myMap.controls.remove('fullscreenControl');
    		myMap.controls.remove('rulerControl');
    		window.mapInstance = myMap;
    });
    
    </script><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1809);
    // PUG_DEBUG:1809
     ?></div></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['ContactsMap'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'placemarks', null]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1821);
    // PUG_DEBUG:1821
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ContactsMap'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1820);
    // PUG_DEBUG:1820
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ContactsMap-card'], ['id' => 'contacts_map'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1813);
    // PUG_DEBUG:1813
     ?><script<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['src' => 'https://api-maps.yandex.ru/2.1/?lang=ru_RU'], ['type' => 'text/javascript'])
    ) ? var_export($_pug_temp, true) : $_pug_temp) ?>></script><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1814);
    // PUG_DEBUG:1814
     ?><?php $places = (function_exists('json_encode') ? json_encode($placemarks, JSON_UNESCAPED_UNICODE) : $json_encode($placemarks, JSON_UNESCAPED_UNICODE)) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1818);
    // PUG_DEBUG:1818
     ?><script><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1815);
    // PUG_DEBUG:1815
     ?>ymaps.ready(function() {
    	const myContactsMap = new ymaps.Map("contacts_map", {
    			center: [55.603095, 37.347417],
    			zoom: 14
    		});
    		const places = JSON.parse('<?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1816);
    // PUG_DEBUG:1816
     ?><?= (is_bool($_pug_temp = (isset($places) ? $places : null)) ? var_export($_pug_temp, true) : $_pug_temp) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1817);
    // PUG_DEBUG:1817
     ?>');
    		places.forEach(function(place) {
    			var myPlacemark = new ymaps.Placemark([place.longitude, place.latitude]);
    			myContactsMap.geoObjects.add(myPlacemark);
    		});
    		myContactsMap.setBounds(
    			myContactsMap.geoObjects.getBounds(),
    			{checkZoomRange:true, zoomMargin:9}
    		).then(function() {
    			if (places.length == 1) {
    				setTimeout(function() {
    								myContactsMap.setZoom(17);
    				}, 250);
    			}
    		});
    		myContactsMap.behaviors.disable(['scrollZoom'])
    		myContactsMap.controls.remove('geolocationControl');
    		myContactsMap.controls.remove('searchControl');
    		myContactsMap.controls.remove('trafficControl');
    		myContactsMap.controls.remove('typeSelector');
    		myContactsMap.controls.remove('fullscreenControl');
    		myContactsMap.controls.remove('rulerControl');
    });
    </script><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1819);
    // PUG_DEBUG:1819
     ?></div></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['ContactsRoznica'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1842);
    // PUG_DEBUG:1842
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ContactsRoznica'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1825);
    // PUG_DEBUG:1825
     ?><h2><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1823);
    // PUG_DEBUG:1823
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1824);
    // PUG_DEBUG:1824
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head')) ? var_export($_pug_temp, true) : $_pug_temp) ?></h2><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1830);
    // PUG_DEBUG:1830
     ?><?php $__eachScopeVariables = ['number' => isset($number) ? $number : null];foreach ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'numbers') as $number) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1829);
    // PUG_DEBUG:1829
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ContactsRoznica-number'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1828);
    // PUG_DEBUG:1828
     ?><a<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['href' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('href', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($number, 'link'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1826);
    // PUG_DEBUG:1826
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1827);
    // PUG_DEBUG:1827
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($number, 'label')) ? var_export($_pug_temp, true) : $_pug_temp) ?></a></div><?php }extract($__eachScopeVariables); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1841);
    // PUG_DEBUG:1841
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ContactsRoznica-button'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1840);
    // PUG_DEBUG:1840
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Modal';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'button' => true, 'icon' => $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'icon'), function () { return 'message'; }), 'background' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'background'), 'head' => 'Написать', 'label' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1839);
    // PUG_DEBUG:1839
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Form';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'label' => 'Отправить запрос' )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1833);
    // PUG_DEBUG:1833
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'SwitchOfTabs';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1831);
    // PUG_DEBUG:1831
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Tab';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'head' => 'Отдел ритейл', 'hidden' => false, 'value' => 'retail' )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1832);
    // PUG_DEBUG:1832
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Tab';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'head' => 'Отдел horeca', 'hidden' => true, 'value' => 'horeca' )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    });;
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1834);
    // PUG_DEBUG:1834
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Input';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'type' => 'fake', 'label' => 'РљРѕРјСѓ', 'clipboard' => 'info@mosagro.ru' )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1835);
    // PUG_DEBUG:1835
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Input';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['name' => 'WriteEmail'], ['pattern' => true]), [[false, array( 'type' => 'email', 'label' => 'От кого', 'placeholder' => 'ваша@почта.com', 'required' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1836);
    // PUG_DEBUG:1836
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Input';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['name' => 'WritePhone']), [[false, array( 'type' => 'tel', 'label' => 'Телефон', 'placeholder' => '+7...', 'required' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1838);
    // PUG_DEBUG:1838
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Input';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['name' => 'WriteComment']), [[false, array( 'label' => 'Комментарий', 'type' => 'textarea', 'required' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1837);
    // PUG_DEBUG:1837
    ;
    });;
    });;
    }); ?></div></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['ContactsHoreca'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1863);
    // PUG_DEBUG:1863
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ContactsHoreca'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1846);
    // PUG_DEBUG:1846
     ?><h2><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1844);
    // PUG_DEBUG:1844
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1845);
    // PUG_DEBUG:1845
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head')) ? var_export($_pug_temp, true) : $_pug_temp) ?></h2><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1851);
    // PUG_DEBUG:1851
     ?><?php $__eachScopeVariables = ['number' => isset($number) ? $number : null];foreach ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'numbers') as $number) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1850);
    // PUG_DEBUG:1850
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ContactsHoreca-number'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1849);
    // PUG_DEBUG:1849
     ?><a<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['href' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('href', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($number, 'link'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1847);
    // PUG_DEBUG:1847
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1848);
    // PUG_DEBUG:1848
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($number, 'label')) ? var_export($_pug_temp, true) : $_pug_temp) ?></a></div><?php }extract($__eachScopeVariables); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1862);
    // PUG_DEBUG:1862
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ContactsHoreca-button'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1861);
    // PUG_DEBUG:1861
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Modal';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'button' => true, 'icon' => $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'icon'), function () { return 'message'; }), 'background' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'background'), 'head' => 'Написать', 'label' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1860);
    // PUG_DEBUG:1860
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Form';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'label' => 'Отправить запрос' )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1854);
    // PUG_DEBUG:1854
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'SwitchOfTabs';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1852);
    // PUG_DEBUG:1852
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Tab';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'head' => 'Отдел ритейл', 'hidden' => true, 'value' => 'retail' )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1853);
    // PUG_DEBUG:1853
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Tab';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'head' => 'Отдел horeca', 'hidden' => false, 'value' => 'horeca' )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    });;
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1855);
    // PUG_DEBUG:1855
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Input';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'type' => 'fake', 'label' => 'РљРѕРјСѓ', 'clipboard' => 'info@mosagro.ru' )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1856);
    // PUG_DEBUG:1856
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Input';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['name' => 'WriteEmail'], ['pattern' => true]), [[false, array( 'type' => 'email', 'label' => 'От кого', 'placeholder' => 'ваша@почта.com', 'required' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1857);
    // PUG_DEBUG:1857
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Input';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['name' => 'WritePhone']), [[false, array( 'type' => 'tel', 'label' => 'Телефон', 'placeholder' => '+7...', 'required' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1859);
    // PUG_DEBUG:1859
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Input';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['name' => 'WriteComment']), [[false, array( 'label' => 'Комментарий', 'type' => 'textarea', 'required' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1858);
    // PUG_DEBUG:1858
    ;
    });;
    });;
    }); ?></div></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['CheckBox'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1919);
    // PUG_DEBUG:1919
     ?><label<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'CheckBox'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1914);
    // PUG_DEBUG:1914
     ?><input<?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1913);
    // PUG_DEBUG:1913
     ?><?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment']($attributes, ['type' => 'checkbox'], ['name' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('name', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'name'))], ['checked' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('checked', ! !$GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'value'))], ['class' => 'CheckBox-input'])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1918);
    // PUG_DEBUG:1918
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'CheckBox-label'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1915);
    // PUG_DEBUG:1915
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1916);
    // PUG_DEBUG:1916
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label')) ? var_export($_pug_temp, true) : $_pug_temp) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1917);
    // PUG_DEBUG:1917
     ?></span></label><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['VacanciesItem'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1991);
    // PUG_DEBUG:1991
     ?><a<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['href' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('href', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'link'))], ['class' => 'VacanciesItem'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1983);
    // PUG_DEBUG:1983
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'VacanciesItem-top'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1979);
    // PUG_DEBUG:1979
     ?><h2<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'VacanciesItem-head'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1977);
    // PUG_DEBUG:1977
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1978);
    // PUG_DEBUG:1978
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'title')) ? var_export($_pug_temp, true) : $_pug_temp) ?></h2><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1982);
    // PUG_DEBUG:1982
     ?><p<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'VacanciesItem-salary'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1980);
    // PUG_DEBUG:1980
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1981);
    // PUG_DEBUG:1981
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'salary')) ? var_export($_pug_temp, true) : $_pug_temp) ?></p></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1990);
    // PUG_DEBUG:1990
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'VacanciesItem-bottom'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1986);
    // PUG_DEBUG:1986
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'VacanciesItem-shortDescription'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1984);
    // PUG_DEBUG:1984
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1985);
    // PUG_DEBUG:1985
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'shortDescription')) ? var_export($_pug_temp, true) : $_pug_temp) ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1989);
    // PUG_DEBUG:1989
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'VacanciesItem-more'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1988);
    // PUG_DEBUG:1988
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Button';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'label' => 'подробнее', 'background' => true, 'icon' => 'arrowRight', 'reversed' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1987);
    // PUG_DEBUG:1987
    ;
    }); ?></div></div></a><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['MapLink'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1999);
    // PUG_DEBUG:1999
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'MapLink'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1998);
    // PUG_DEBUG:1998
     ?><a<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['href' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('href', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'link'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1993);
    // PUG_DEBUG:1993
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, 'location']], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1997);
    // PUG_DEBUG:1997
     ?><span<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'MapLink-text'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1994);
    // PUG_DEBUG:1994
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1995);
    // PUG_DEBUG:1995
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'address')) ? var_export($_pug_temp, true) : $_pug_temp) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1996);
    // PUG_DEBUG:1996
     ?></span></a></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['FormContacts'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2084);
    // PUG_DEBUG:2084
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'FormContacts'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2074);
    // PUG_DEBUG:2074
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'FormContacts-phone'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2067);
    // PUG_DEBUG:2067
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, 'phone']], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2073);
    // PUG_DEBUG:2073
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'FormContacts-phones'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2072);
    // PUG_DEBUG:2072
     ?><?php $__eachScopeVariables = ['item' => isset($item) ? $item : null];foreach ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'phones') as $item) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2071);
    // PUG_DEBUG:2071
     ?><a<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['href' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('href', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'link'))], ['class' => 'FormContacts-phonesItem'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2070);
    // PUG_DEBUG:2070
     ?><span><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2068);
    // PUG_DEBUG:2068
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2069);
    // PUG_DEBUG:2069
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'text')) ? var_export($_pug_temp, true) : $_pug_temp) ?></span></a><?php }extract($__eachScopeVariables); ?></div></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2083);
    // PUG_DEBUG:2083
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'FormContacts-email'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2075);
    // PUG_DEBUG:2075
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, 'message']], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2082);
    // PUG_DEBUG:2082
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'FormContacts-emails'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2081);
    // PUG_DEBUG:2081
     ?><?php $__eachScopeVariables = ['item' => isset($item) ? $item : null];foreach ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'emails') as $item) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2080);
    // PUG_DEBUG:2080
     ?><a<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['href' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('href', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'link'))], ['class' => 'FormContacts-emailsItem'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2079);
    // PUG_DEBUG:2079
     ?><span><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2076);
    // PUG_DEBUG:2076
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2077);
    // PUG_DEBUG:2077
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'text')) ? var_export($_pug_temp, true) : $_pug_temp) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2078);
    // PUG_DEBUG:2078
     ?></span></a><?php }extract($__eachScopeVariables); ?></div></div></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['ModalAuthorization'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2097);
    // PUG_DEBUG:2097
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ModalAuthorization'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2096);
    // PUG_DEBUG:2096
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Modal';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'button' => true, 'icon' => $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'icon'), function () { return 'user'; }), 'background' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'background'), 'head' => 'Вход в личный кабинет', 'label' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label'), 'head_text' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head_text') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2088);
    // PUG_DEBUG:2088
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Form';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['class' => 'FormAuthorization']), [[false, array( 'label' => 'войти', 'policy' => false, 'linkHref' => '#', 'linkText' => 'Забыли пароль?' )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2086);
    // PUG_DEBUG:2086
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Input';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['name' => 'email']), [[false, array( 'type' => 'email', 'label' => 'email', 'placeholder' => 'ваша@почта.com', 'required' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2087);
    // PUG_DEBUG:2087
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Input';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['name' => 'password']), [[false, array( 'label' => 'пароль', 'placeholder' => 'Введите пароль', 'type' => 'password', 'required' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    });;
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2092);
    // PUG_DEBUG:2092
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ModalAuthorization-additional'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2089);
    // PUG_DEBUG:2089
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'ModalPasswordRecovery';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'background' => true, 'contacts' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'contacts') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2090);
    // PUG_DEBUG:2090
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'ModalWaitingActivation';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'background' => true, 'contacts' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'contacts') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2091);
    // PUG_DEBUG:2091
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'ModalAccessBlocked';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'background' => true, 'contacts' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'contacts') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2095);
    // PUG_DEBUG:2095
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'contacts'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2094);
    // PUG_DEBUG:2094
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'FormContacts';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'contacts')]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2093);
    // PUG_DEBUG:2093
    ;
    }); ?><?php } ?><?php
    }); ?></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['ModalPasswordRecovery'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2112);
    // PUG_DEBUG:2112
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ModalPasswordRecovery'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2111);
    // PUG_DEBUG:2111
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Modal';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'button' => true, 'icon' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'icon'), 'background' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'background'), 'head' => 'Восстановление пароля', 'label' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label'), 'head_text' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head_text') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2101);
    // PUG_DEBUG:2101
     ?><p<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ModalPasswordRecovery-text'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2099);
    // PUG_DEBUG:2099
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2100);
    // PUG_DEBUG:2100
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'text'), function () { return "Мы отправим ссылку, перейдя по которой вы сможете задать новый пароль"; })) ? var_export($_pug_temp, true) : $_pug_temp) ?></p><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2103);
    // PUG_DEBUG:2103
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Form';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['class' => 'FormPasswordRecovery']), [[false, array( 'label' => 'получить ссылку', 'policy' => false, 'linkHref' => '#', 'linkText' => 'Авторизация' )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2102);
    // PUG_DEBUG:2102
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Input';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['name' => 'email']), [[false, array( 'type' => 'email', 'placeholder' => 'Email', 'required' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    });;
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2107);
    // PUG_DEBUG:2107
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ModalPasswordRecovery-additional'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2104);
    // PUG_DEBUG:2104
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'ModalPasswordRecoveryAnswer';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'background' => true, 'contacts' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'contacts') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2105);
    // PUG_DEBUG:2105
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'ModalWaitingActivation';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'background' => true, 'contacts' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'contacts') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2106);
    // PUG_DEBUG:2106
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'ModalAccessBlocked';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'background' => true, 'contacts' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'contacts') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2110);
    // PUG_DEBUG:2110
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'contacts'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2109);
    // PUG_DEBUG:2109
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'FormContacts';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'contacts')]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2108);
    // PUG_DEBUG:2108
    ;
    }); ?><?php } ?><?php
    }); ?></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['ModalPasswordRecoveryAnswer'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2121);
    // PUG_DEBUG:2121
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ModalPasswordRecoveryAnswer'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2120);
    // PUG_DEBUG:2120
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Modal';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'button' => true, 'icon' => $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'icon'), function () { return 'user'; }), 'background' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'background'), 'head' => 'Восстановление пароля', 'label' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label'), 'head_text' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head_text') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2116);
    // PUG_DEBUG:2116
     ?><p<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ModalPasswordRecovery-text'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2114);
    // PUG_DEBUG:2114
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2115);
    // PUG_DEBUG:2115
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'text'), function () { return "На вашу почту отправлена инструкция для сброса пароля."; })) ? var_export($_pug_temp, true) : $_pug_temp) ?></p><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2119);
    // PUG_DEBUG:2119
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'contacts'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2118);
    // PUG_DEBUG:2118
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'FormContacts';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'contacts')]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2117);
    // PUG_DEBUG:2117
    ;
    }); ?><?php } ?><?php
    }); ?></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['ModalWaitingActivation'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2130);
    // PUG_DEBUG:2130
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ModalWaitingActivation'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2129);
    // PUG_DEBUG:2129
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Modal';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'button' => true, 'icon' => $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'icon'), function () { return 'user'; }), 'background' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'background'), 'head' => 'Ожидание активации', 'label' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label'), 'head_text' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head_text') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2125);
    // PUG_DEBUG:2125
     ?><p><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2123);
    // PUG_DEBUG:2123
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2124);
    // PUG_DEBUG:2124
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'text'), function () { return "Доступ в ваш личный кабинет будет предоставлен после активации. Детали можно узнать по телефону или email."; })) ? var_export($_pug_temp, true) : $_pug_temp) ?></p><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2128);
    // PUG_DEBUG:2128
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'contacts'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2127);
    // PUG_DEBUG:2127
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'FormContacts';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'contacts')]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2126);
    // PUG_DEBUG:2126
    ;
    }); ?><?php } ?><?php
    }); ?></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['ModalAccessBlocked'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2139);
    // PUG_DEBUG:2139
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ModalAccessBlocked'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2138);
    // PUG_DEBUG:2138
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Modal';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'button' => true, 'icon' => $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'icon'), function () { return 'user'; }), 'background' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'background'), 'head' => 'Доступ заблокирован', 'label' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label'), 'head_text' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head_text') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2134);
    // PUG_DEBUG:2134
     ?><p><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2132);
    // PUG_DEBUG:2132
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2133);
    // PUG_DEBUG:2133
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'text'), function () { return "Доступ в ваш личный кабинет заблокирован. Детали можно узнать по телефону или email."; })) ? var_export($_pug_temp, true) : $_pug_temp) ?></p><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2137);
    // PUG_DEBUG:2137
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'contacts'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2136);
    // PUG_DEBUG:2136
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'FormContacts';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'contacts')]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2135);
    // PUG_DEBUG:2135
    ;
    }); ?><?php } ?><?php
    }); ?></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['ModalAccountInformation'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2149);
    // PUG_DEBUG:2149
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ModalAccountInformation'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2148);
    // PUG_DEBUG:2148
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Modal';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'button' => true, 'icon' => $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'icon'), function () { return 'user'; }), 'background' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'background'), 'head' => 'Информация об аккаунте', 'label' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label'), 'head_text' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head_text'), 'noIcon' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'noIcon') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2147);
    // PUG_DEBUG:2147
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Form';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['class' => 'FormUserUpdate']), [[false, array( 'label' => 'Сохранить данные', 'policy' => false )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2141);
    // PUG_DEBUG:2141
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Input';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['name' => 'organization']), [[false, array( 'type' => 'text', 'label' => 'Организация', 'placeholder' => 'Наименование', 'required' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2142);
    // PUG_DEBUG:2142
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Input';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['name' => 'first_name']), [[false, array( 'type' => 'text', 'label' => 'Имя', 'placeholder' => 'Введите имя', 'required' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2143);
    // PUG_DEBUG:2143
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Input';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['name' => 'last_name']), [[false, array( 'type' => 'text', 'label' => 'Фамилия', 'placeholder' => 'Введите фамилию', 'required' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2144);
    // PUG_DEBUG:2144
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Input';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['name' => 'phone']), [[false, array( 'type' => 'tel', 'label' => 'Номер телефона', 'placeholder' => 'Телефон', 'required' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2146);
    // PUG_DEBUG:2146
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Input';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, $pugModule['Phug\\Formatter\\Format\\BasicFormat::merge_attributes'](['name' => 'email']), [[false, array( 'type' => 'email', 'label' => 'email', 'placeholder' => 'Введите email', 'required' => true )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2145);
    // PUG_DEBUG:2145
    ;
    });;
    });;
    }); ?></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['OrderProcessedContent'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2165);
    // PUG_DEBUG:2165
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'OrderProcessedContent'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2152);
    // PUG_DEBUG:2152
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'OrderProcessedContent-image'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2151);
    // PUG_DEBUG:2151
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, 'modalOrderCheck']], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2155);
    // PUG_DEBUG:2155
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Modal-head'], ['class' => 'OrderProcessedContent-head'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2153);
    // PUG_DEBUG:2153
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2154);
    // PUG_DEBUG:2154
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head')) ? var_export($_pug_temp, true) : $_pug_temp) ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2158);
    // PUG_DEBUG:2158
     ?><p<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'OrderProcessedContent-text'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2156);
    // PUG_DEBUG:2156
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2157);
    // PUG_DEBUG:2157
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'text')) ? var_export($_pug_temp, true) : $_pug_temp) ?></p><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2164);
    // PUG_DEBUG:2164
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'OrderProcessedContent-link'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2159);
    // PUG_DEBUG:2159
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Icon';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, 'backArrow']], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2163);
    // PUG_DEBUG:2163
     ?><a<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['href' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('href', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'linkHref'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2160);
    // PUG_DEBUG:2160
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2161);
    // PUG_DEBUG:2161
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'linkText')) ? var_export($_pug_temp, true) : $_pug_temp) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2162);
    // PUG_DEBUG:2162
     ?></a></div></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['ModalOrderProcessed'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2170);
    // PUG_DEBUG:2170
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ModalOrderProcessed'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2169);
    // PUG_DEBUG:2169
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Modal';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'button' => true, 'icon' => $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'icon'), function () { return 'user'; }), 'background' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'background'), 'head' => '', 'label' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label'), 'head_text' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head_text') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2168);
    // PUG_DEBUG:2168
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'OrderProcessedContent';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'content')]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2167);
    // PUG_DEBUG:2167
    ;
    });;
    }); ?></div><?php
    }; ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['ModalProductInfo'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2200);
    // PUG_DEBUG:2200
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ModalProductInfo'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2199);
    // PUG_DEBUG:2199
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Modal';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'button' => true, 'icon' => $GLOBALS['__jpv_or']($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'icon'), function () { return 'user'; }), 'background' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'background'), 'head' => "", 'label' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'label'), 'head_text' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head_text') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2195);
    // PUG_DEBUG:2195
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ModalProductInfo-info'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2178);
    // PUG_DEBUG:2178
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ModalProductInfo-content'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2174);
    // PUG_DEBUG:2174
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ModalProductInfo-infoTitle'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2172);
    // PUG_DEBUG:2172
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2173);
    // PUG_DEBUG:2173
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'product', 'title')) ? var_export($_pug_temp, true) : $_pug_temp) ?></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2177);
    // PUG_DEBUG:2177
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ModalProductInfo-infoContent'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2175);
    // PUG_DEBUG:2175
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2176);
    // PUG_DEBUG:2176
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'product', 'content')) ? var_export($_pug_temp, true) : $_pug_temp) ?></div></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2185);
    // PUG_DEBUG:2185
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ModalProductInfo-features'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2181);
    // PUG_DEBUG:2181
     ?><p><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2179);
    // PUG_DEBUG:2179
     ?>Вес: <?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2180);
    // PUG_DEBUG:2180
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'product', 'weight')) ? var_export($_pug_temp, true) : $_pug_temp) ?></p><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2184);
    // PUG_DEBUG:2184
     ?><p><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2182);
    // PUG_DEBUG:2182
     ?>Количество в упаковке: <?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2183);
    // PUG_DEBUG:2183
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'product', 'packing_count')) ? var_export($_pug_temp, true) : $_pug_temp) ?></p></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2190);
    // PUG_DEBUG:2190
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ModalProductInfo-price'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2189);
    // PUG_DEBUG:2189
     ?><p><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2186);
    // PUG_DEBUG:2186
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2187);
    // PUG_DEBUG:2187
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'product', 'price')) ? var_export($_pug_temp, true) : $_pug_temp) ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2188);
    // PUG_DEBUG:2188
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'RoubleCurrencySymbol';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></p></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2194);
    // PUG_DEBUG:2194
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ModalProductInfo-cart'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2192);
    // PUG_DEBUG:2192
     ?><?php if (method_exists($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'fixed_cart'), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2191);
    // PUG_DEBUG:2191
     ?><!--  p !{dataset.product.cart_count} --><?php } else { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2193);
    // PUG_DEBUG:2193
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'B2BCartCountControl';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'product')], [false, $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'no_zero')]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php } ?></div></div><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2198);
    // PUG_DEBUG:2198
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'ModalProductInfo-image'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2196);
    // PUG_DEBUG:2196
     ?><img<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['src' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('src', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'product', 'thumbnail', 'link'))], ['alt' => $pugModule['Phug\\Formatter\\Format\\BasicFormat::array_escape']('alt', $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'product', 'thumbnail', 'alt'))])) ? var_export($_pug_temp, true) : $_pug_temp) ?> /><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2197);
    // PUG_DEBUG:2197
     ?></div><?php
    }); ?></div><?php
    }; ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2214);
    // PUG_DEBUG:2214
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2202);
    // PUG_DEBUG:2202
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(51);
    // PUG_DEBUG:51
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(73);
    // PUG_DEBUG:73
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(109);
    // PUG_DEBUG:109
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(118);
    // PUG_DEBUG:118
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(123);
    // PUG_DEBUG:123
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(152);
    // PUG_DEBUG:152
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(164);
    // PUG_DEBUG:164
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(295);
    // PUG_DEBUG:295
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(299);
    // PUG_DEBUG:299
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(332);
    // PUG_DEBUG:332
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(347);
    // PUG_DEBUG:347
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(377);
    // PUG_DEBUG:377
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(428);
    // PUG_DEBUG:428
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(438);
    // PUG_DEBUG:438
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(456);
    // PUG_DEBUG:456
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(472);
    // PUG_DEBUG:472
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(484);
    // PUG_DEBUG:484
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(496);
    // PUG_DEBUG:496
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(506);
    // PUG_DEBUG:506
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(513);
    // PUG_DEBUG:513
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(522);
    // PUG_DEBUG:522
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(543);
    // PUG_DEBUG:543
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(551);
    // PUG_DEBUG:551
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(562);
    // PUG_DEBUG:562
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(616);
    // PUG_DEBUG:616
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(637);
    // PUG_DEBUG:637
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(657);
    // PUG_DEBUG:657
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(676);
    // PUG_DEBUG:676
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(697);
    // PUG_DEBUG:697
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(707);
    // PUG_DEBUG:707
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(717);
    // PUG_DEBUG:717
     ?><?php if (isset($__pug_mixins, $__pug_mixins['Products'])) {
        $__pug_save_9406605 = $__pug_mixins['Products'];
    }
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixins['Products'] = function ($block, $attributes, $__pug_arguments, $__pug_mixin_vars, $__pug_children) use (&$__pug_mixins, &$pugModule) {
        $__pug_values = [];
        foreach ($__pug_arguments as $__pug_argument) {
            if ($__pug_argument[0]) {
                foreach ($__pug_argument[1] as $__pug_value) {
                    $__pug_values[] = $__pug_value;
                }
                continue;
            }
            $__pug_values[] = $__pug_argument[1];
        }
        $__pug_attributes = [[false, 'dataset', array(  )]];
        $__pug_names = [];
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            ${$__pug_name} = null;
        }
        foreach ($__pug_attributes as $__pug_argument) {
            $__pug_name = ltrim($__pug_argument[1], "$");
            $__pug_names[] = $__pug_name;
            if ($__pug_argument[0]) {
                ${$__pug_name} = $__pug_values;
                break;
            }
            ${$__pug_name} = array_shift($__pug_values);
            if (is_null(${$__pug_name}) && isset($__pug_argument[2])) {
                ${$__pug_name} = $__pug_argument[2];
            }
        }
        foreach ($__pug_mixin_vars as $__pug_key => &$__pug_value) {
            if (!in_array($__pug_key, $__pug_names)) {
                $$__pug_key = &$__pug_value;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(716);
    // PUG_DEBUG:716
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Products'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(710);
    // PUG_DEBUG:710
     ?><h2<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Products-head'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(708);
    // PUG_DEBUG:708
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(709);
    // PUG_DEBUG:709
     ?><?= (is_bool($_pug_temp = $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'head')) ? var_export($_pug_temp, true) : $_pug_temp) ?></h2><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(715);
    // PUG_DEBUG:715
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Products-frame'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(714);
    // PUG_DEBUG:714
     ?><?php $__eachScopeVariables = ['item' => isset($item) ? $item : null];foreach ($GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($dataset, 'data') as $item) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(713);
    // PUG_DEBUG:713
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'Products-item'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(712);
    // PUG_DEBUG:712
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Item';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [[false, array( 'image' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'thumbnail'), 'new' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'new'), 'head' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'title'), 'premium' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'premium'), 'href' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($item, 'href') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(711);
    // PUG_DEBUG:711
    ;
    }); ?></div><?php }extract($__eachScopeVariables); ?></div></div><?php
    }; ?><?php if (isset($__pug_save_9406605)) {
        $__pug_mixins['Products'] = $__pug_save_9406605;
    }
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(726);
    // PUG_DEBUG:726
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(739);
    // PUG_DEBUG:739
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(751);
    // PUG_DEBUG:751
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(773);
    // PUG_DEBUG:773
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(789);
    // PUG_DEBUG:789
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(799);
    // PUG_DEBUG:799
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(830);
    // PUG_DEBUG:830
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(837);
    // PUG_DEBUG:837
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(847);
    // PUG_DEBUG:847
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(882);
    // PUG_DEBUG:882
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(894);
    // PUG_DEBUG:894
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(904);
    // PUG_DEBUG:904
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(922);
    // PUG_DEBUG:922
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(940);
    // PUG_DEBUG:940
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(953);
    // PUG_DEBUG:953
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1031);
    // PUG_DEBUG:1031
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1044);
    // PUG_DEBUG:1044
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1095);
    // PUG_DEBUG:1095
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1133);
    // PUG_DEBUG:1133
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1169);
    // PUG_DEBUG:1169
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1182);
    // PUG_DEBUG:1182
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1212);
    // PUG_DEBUG:1212
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1231);
    // PUG_DEBUG:1231
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1246);
    // PUG_DEBUG:1246
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1261);
    // PUG_DEBUG:1261
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1272);
    // PUG_DEBUG:1272
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1283);
    // PUG_DEBUG:1283
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1294);
    // PUG_DEBUG:1294
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1303);
    // PUG_DEBUG:1303
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1310);
    // PUG_DEBUG:1310
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1354);
    // PUG_DEBUG:1354
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1363);
    // PUG_DEBUG:1363
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1371);
    // PUG_DEBUG:1371
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1399);
    // PUG_DEBUG:1399
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1440);
    // PUG_DEBUG:1440
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1511);
    // PUG_DEBUG:1511
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1600);
    // PUG_DEBUG:1600
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1702);
    // PUG_DEBUG:1702
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1713);
    // PUG_DEBUG:1713
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1799);
    // PUG_DEBUG:1799
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1805);
    // PUG_DEBUG:1805
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1812);
    // PUG_DEBUG:1812
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1822);
    // PUG_DEBUG:1822
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1843);
    // PUG_DEBUG:1843
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1864);
    // PUG_DEBUG:1864
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1912);
    // PUG_DEBUG:1912
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1920);
    // PUG_DEBUG:1920
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1933);
    // PUG_DEBUG:1933
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1961);
    // PUG_DEBUG:1961
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1976);
    // PUG_DEBUG:1976
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(1992);
    // PUG_DEBUG:1992
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2000);
    // PUG_DEBUG:2000
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2052);
    // PUG_DEBUG:2052
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2066);
    // PUG_DEBUG:2066
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2085);
    // PUG_DEBUG:2085
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2098);
    // PUG_DEBUG:2098
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2113);
    // PUG_DEBUG:2113
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2122);
    // PUG_DEBUG:2122
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2131);
    // PUG_DEBUG:2131
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2140);
    // PUG_DEBUG:2140
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2150);
    // PUG_DEBUG:2150
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2166);
    // PUG_DEBUG:2166
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2171);
    // PUG_DEBUG:2171
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2201);
    // PUG_DEBUG:2201
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2213);
    // PUG_DEBUG:2213
     ?><div<?= (is_bool($_pug_temp = $pugModule['Phug\\Formatter\\Format\\BasicFormat::attributes_assignment'](array(  ), ['class' => 'content'])) ? var_export($_pug_temp, true) : $_pug_temp) ?>><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2204);
    // PUG_DEBUG:2204
     ?><section><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2203);
    // PUG_DEBUG:2203
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'CatalogueProofs';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'head' => (isset($title) ? $title : null), 'data' => (isset($socials) ? $socials : null) )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></section><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2206);
    // PUG_DEBUG:2206
     ?><section><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2205);
    // PUG_DEBUG:2205
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'CatalogueItems';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'categories' => (isset($categories) ? $categories : null), 'slider' => (isset($info) ? $info : null), 'extra_block' => (isset($extra_block) ? $extra_block : null) )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?></section><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2212);
    // PUG_DEBUG:2212
     ?><section><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2211);
    // PUG_DEBUG:2211
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Article';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](true, array(  ), [], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2209);
    // PUG_DEBUG:2209
     ?><?php if (method_exists($_pug_temp = (isset($seo_text) ? $seo_text : null), "__toBoolean")
            ? $_pug_temp->__toBoolean()
            : $_pug_temp) { ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2207);
    // PUG_DEBUG:2207
     ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2208);
    // PUG_DEBUG:2208
     ?><?= (is_bool($_pug_temp = (isset($seo_text) ? $seo_text : null)) ? var_export($_pug_temp, true) : $_pug_temp) ?><?php } ?><?php 
    \Phug\Renderer\Profiler\ProfilerModule::recordProfilerDisplayEvent(2210);
    // PUG_DEBUG:2210
     ?><?php if (!isset($__pug_mixins)) {
        $__pug_mixins = [];
    }
    $__pug_mixin_vars = [];
    foreach (array_keys(get_defined_vars()) as $__local_pug_key) {
        if (mb_substr($__local_pug_key, 0, 6) === '__pug_' || in_array($__local_pug_key, ['attributes', 'block', 'pug_vars'])) {
            continue;
        }
        $pug_vars[$__local_pug_key] = &$$__local_pug_key;
        $__local_pug_ref = &$GLOBALS[$__local_pug_key];
        $__local_pug_value = &$$__local_pug_key;
        if($__local_pug_ref !== $__local_pug_value){
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
            continue;
        }
        $__local_pug_savedValue = $__local_pug_value;
        $__local_pug_value = ($__local_pug_value === true) ? false : true;
        $__local_pug_isGlobalReference = ($__local_pug_value === $__local_pug_ref);
        $__local_pug_value = $__local_pug_savedValue;
        if (!$__local_pug_isGlobalReference) {
            $__pug_mixin_vars[$__local_pug_key] = &$__local_pug_value;
        }
    }
    if (!isset($__pug_children)) {
        $__pug_children = null;
    }
    $__pug_mixin_name = 'Write';
    if (!isset($__pug_mixins[$__pug_mixin_name])) {
        throw new \InvalidArgumentException("Unknown $__pug_mixin_name mixin called.");
    }
    
    $__pug_mixins[$__pug_mixin_name](false, array(  ), [[false, array( 'icon' => 'request', 'label' => 'Написать', 'background' => true, 'head_text' => $GLOBALS['__jpv_dotWithArrayPrototype_with_ref']($modal_texts, 'write') )]], $__pug_mixin_vars, function ($__pug_children_vars) use (&$__pug_mixins, $__pug_children, $pug_vars, &$pugModule) {
        foreach (array_keys($__pug_children_vars) as $__local_pug_key) {
            if (mb_substr($__local_pug_key, 0, 6) === '__pug_') {
                continue;
            }
            if(isset($pug_vars[$__local_pug_key])){
                $$__local_pug_key = &$pug_vars[$__local_pug_key];
                continue;
            }
            $__local_pug_ref = &$GLOBALS[$__local_pug_key];
            $__local_pug_value = &$__pug_children_vars[$__local_pug_key];
            if($__local_pug_ref !== $__local_pug_value){
                $$__local_pug_key = &$__local_pug_value;
                continue;
            }
        }
        ?><?php
    }); ?><?php
    }); ?></section></div>
  • Тема «обфусцированнsq код в файлах кэша» закрыта для новых ответов.