2020-01-18 11:38:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2019-09-25 12:36:44 +03:00
|
|
|
#include <AK/StringBuilder.h>
|
2019-10-03 16:20:13 +03:00
|
|
|
#include <AK/Utf8View.h>
|
2020-02-06 17:04:03 +03:00
|
|
|
#include <LibCore/DirIterator.h>
|
2020-02-06 22:33:02 +03:00
|
|
|
#include <LibGUI/Painter.h>
|
2020-05-24 10:49:02 +03:00
|
|
|
#include <LibGfx/Font.h>
|
2020-03-07 12:32:51 +03:00
|
|
|
#include <LibWeb/DOM/Document.h>
|
|
|
|
#include <LibWeb/Layout/LayoutBlock.h>
|
|
|
|
#include <LibWeb/Layout/LayoutText.h>
|
2020-08-02 12:52:35 +03:00
|
|
|
#include <LibWeb/Page/Frame.h>
|
2019-06-16 00:17:08 +03:00
|
|
|
#include <ctype.h>
|
2019-06-15 23:49:44 +03:00
|
|
|
|
2020-03-07 12:27:02 +03:00
|
|
|
namespace Web {
|
|
|
|
|
2020-07-28 20:48:57 +03:00
|
|
|
LayoutText::LayoutText(DOM::Document& document, DOM::Text& text)
|
2020-06-24 20:41:12 +03:00
|
|
|
: LayoutNode(document, &text)
|
2019-06-15 23:49:44 +03:00
|
|
|
{
|
2019-10-06 12:09:38 +03:00
|
|
|
set_inline(true);
|
2019-06-15 23:49:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
LayoutText::~LayoutText()
|
|
|
|
{
|
|
|
|
}
|
2019-06-16 00:17:08 +03:00
|
|
|
|
2020-06-13 15:59:17 +03:00
|
|
|
static bool is_all_whitespace(const StringView& string)
|
2019-06-16 00:17:08 +03:00
|
|
|
{
|
2019-12-09 19:45:40 +03:00
|
|
|
for (size_t i = 0; i < string.length(); ++i) {
|
2019-06-16 00:17:08 +03:00
|
|
|
if (!isspace(string[i]))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-07-26 21:01:35 +03:00
|
|
|
const String& LayoutText::text_for_style(const CSS::StyleProperties& style) const
|
2019-06-16 00:17:08 +03:00
|
|
|
{
|
|
|
|
static String one_space = " ";
|
2020-11-22 16:46:36 +03:00
|
|
|
if (is_all_whitespace(dom_node().data())) {
|
2020-06-24 22:44:11 +03:00
|
|
|
if (style.white_space().value_or(CSS::WhiteSpace::Normal) == CSS::WhiteSpace::Normal)
|
2019-09-25 12:36:44 +03:00
|
|
|
return one_space;
|
2019-10-04 13:12:39 +03:00
|
|
|
}
|
2020-11-22 16:46:36 +03:00
|
|
|
return dom_node().data();
|
2019-06-16 00:17:08 +03:00
|
|
|
}
|
2019-06-21 00:00:26 +03:00
|
|
|
|
2020-06-29 00:07:44 +03:00
|
|
|
void LayoutText::paint_fragment(PaintContext& context, const LineBoxFragment& fragment) const
|
2019-09-25 12:36:44 +03:00
|
|
|
{
|
2019-10-03 16:20:13 +03:00
|
|
|
auto& painter = context.painter();
|
2020-06-24 14:51:14 +03:00
|
|
|
painter.set_font(specified_style().font());
|
2019-09-25 12:36:44 +03:00
|
|
|
|
2020-06-24 14:51:14 +03:00
|
|
|
auto background_color = specified_style().property(CSS::PropertyID::BackgroundColor);
|
2019-11-21 15:14:03 +03:00
|
|
|
if (background_color.has_value() && background_color.value()->is_color())
|
2020-06-10 11:42:29 +03:00
|
|
|
painter.fill_rect(enclosing_int_rect(fragment.absolute_rect()), background_color.value()->to_color(document()));
|
2019-11-21 15:14:03 +03:00
|
|
|
|
2020-06-24 14:51:14 +03:00
|
|
|
auto color = specified_style().color_or_fallback(CSS::PropertyID::Color, document(), context.palette().base_text());
|
|
|
|
auto text_decoration = specified_style().string_or_fallback(CSS::PropertyID::TextDecoration, "none");
|
2019-09-25 12:36:44 +03:00
|
|
|
|
2020-11-22 16:46:36 +03:00
|
|
|
if (document().inspected_node() == &dom_node())
|
2020-06-10 11:42:29 +03:00
|
|
|
context.painter().draw_rect(enclosing_int_rect(fragment.absolute_rect()), Color::Magenta);
|
2019-11-09 13:58:50 +03:00
|
|
|
|
2019-10-03 16:20:13 +03:00
|
|
|
bool is_underline = text_decoration == "underline";
|
|
|
|
if (is_underline)
|
2020-06-10 11:42:29 +03:00
|
|
|
painter.draw_line(enclosing_int_rect(fragment.absolute_rect()).bottom_left().translated(0, 1), enclosing_int_rect(fragment.absolute_rect()).bottom_right().translated(0, 1), color);
|
2019-09-25 12:36:44 +03:00
|
|
|
|
2020-06-29 01:09:32 +03:00
|
|
|
// FIXME: text-transform should be done already in layout, since uppercase glyphs may be wider than lowercase, etc.
|
2020-05-09 00:02:27 +03:00
|
|
|
auto text = m_text_for_rendering;
|
2020-06-24 14:51:14 +03:00
|
|
|
auto text_transform = specified_style().string_or_fallback(CSS::PropertyID::TextTransform, "none");
|
2020-05-09 00:02:27 +03:00
|
|
|
if (text_transform == "uppercase")
|
|
|
|
text = m_text_for_rendering.to_uppercase();
|
|
|
|
if (text_transform == "lowercase")
|
|
|
|
text = m_text_for_rendering.to_lowercase();
|
|
|
|
|
2020-06-10 11:42:29 +03:00
|
|
|
painter.draw_text(enclosing_int_rect(fragment.absolute_rect()), text.substring_view(fragment.start(), fragment.length()), Gfx::TextAlignment::TopLeft, color);
|
2020-06-29 01:09:32 +03:00
|
|
|
|
|
|
|
auto selection_rect = fragment.selection_rect(specified_style().font());
|
|
|
|
if (!selection_rect.is_empty()) {
|
|
|
|
painter.fill_rect(enclosing_int_rect(selection_rect), context.palette().selection());
|
|
|
|
Gfx::PainterStateSaver saver(painter);
|
|
|
|
painter.add_clip_rect(enclosing_int_rect(selection_rect));
|
|
|
|
painter.draw_text(enclosing_int_rect(fragment.absolute_rect()), text.substring_view(fragment.start(), fragment.length()), Gfx::TextAlignment::TopLeft, context.palette().selection_text());
|
|
|
|
}
|
2020-08-02 12:52:35 +03:00
|
|
|
|
|
|
|
paint_cursor_if_needed(context, fragment);
|
|
|
|
}
|
|
|
|
|
|
|
|
void LayoutText::paint_cursor_if_needed(PaintContext& context, const LineBoxFragment& fragment) const
|
|
|
|
{
|
2020-08-14 12:45:46 +03:00
|
|
|
if (!frame().is_focused_frame())
|
|
|
|
return;
|
|
|
|
|
2020-08-02 12:52:35 +03:00
|
|
|
if (!frame().cursor_blink_state())
|
|
|
|
return;
|
|
|
|
|
2020-11-22 16:46:36 +03:00
|
|
|
if (frame().cursor_position().node() != &dom_node())
|
2020-08-02 12:52:35 +03:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (!(frame().cursor_position().offset() >= (unsigned)fragment.start() && frame().cursor_position().offset() < (unsigned)(fragment.start() + fragment.length())))
|
|
|
|
return;
|
|
|
|
|
2020-11-22 16:46:36 +03:00
|
|
|
if (!fragment.layout_node().dom_node() || !fragment.layout_node().dom_node()->is_editable())
|
2020-08-02 17:05:59 +03:00
|
|
|
return;
|
|
|
|
|
2020-08-02 12:52:35 +03:00
|
|
|
auto fragment_rect = fragment.absolute_rect();
|
|
|
|
|
|
|
|
float cursor_x = fragment_rect.x() + specified_style().font().width(fragment.text().substring_view(0, frame().cursor_position().offset() - fragment.start()));
|
|
|
|
float cursor_top = fragment_rect.top();
|
|
|
|
float cursor_height = fragment_rect.height();
|
|
|
|
Gfx::IntRect cursor_rect(cursor_x, cursor_top, 1, cursor_height);
|
|
|
|
context.painter().draw_rect(cursor_rect, context.palette().text_cursor());
|
2019-09-25 12:36:44 +03:00
|
|
|
}
|
|
|
|
|
2019-10-03 16:20:13 +03:00
|
|
|
template<typename Callback>
|
2020-05-27 20:20:49 +03:00
|
|
|
void LayoutText::for_each_chunk(Callback callback, LayoutMode layout_mode, bool do_wrap_lines, bool do_wrap_breaks) const
|
2019-06-21 00:00:26 +03:00
|
|
|
{
|
2019-10-09 17:29:23 +03:00
|
|
|
Utf8View view(m_text_for_rendering);
|
2019-10-03 16:20:13 +03:00
|
|
|
if (view.is_empty())
|
2019-09-25 12:36:44 +03:00
|
|
|
return;
|
|
|
|
|
2020-05-24 10:49:02 +03:00
|
|
|
auto start_of_chunk = view.begin();
|
2019-10-03 16:20:13 +03:00
|
|
|
|
2020-05-26 22:53:10 +03:00
|
|
|
auto commit_chunk = [&](auto it, bool has_breaking_newline, bool must_commit = false) {
|
2020-05-27 20:20:49 +03:00
|
|
|
if (layout_mode == LayoutMode::OnlyRequiredLineBreaks && !must_commit)
|
2020-05-26 22:53:10 +03:00
|
|
|
return;
|
|
|
|
|
2020-05-24 10:49:02 +03:00
|
|
|
int start = view.byte_offset_of(start_of_chunk);
|
|
|
|
int length = view.byte_offset_of(it) - view.byte_offset_of(start_of_chunk);
|
2019-10-03 16:20:13 +03:00
|
|
|
|
2020-05-24 10:49:02 +03:00
|
|
|
if (has_breaking_newline || length > 0) {
|
2020-06-13 15:59:17 +03:00
|
|
|
auto chunk_view = view.substring_view(start, length);
|
|
|
|
callback(chunk_view, start, length, has_breaking_newline, is_all_whitespace(chunk_view.as_string()));
|
2019-09-25 12:36:44 +03:00
|
|
|
}
|
|
|
|
|
2020-05-24 10:49:02 +03:00
|
|
|
start_of_chunk = it;
|
2019-10-03 16:20:13 +03:00
|
|
|
};
|
2019-09-25 12:36:44 +03:00
|
|
|
|
2019-10-03 16:20:13 +03:00
|
|
|
bool last_was_space = isspace(*view.begin());
|
2019-12-18 14:44:09 +03:00
|
|
|
bool last_was_newline = false;
|
2019-10-03 16:20:13 +03:00
|
|
|
for (auto it = view.begin(); it != view.end();) {
|
2020-05-27 20:20:49 +03:00
|
|
|
if (layout_mode == LayoutMode::AllPossibleLineBreaks) {
|
2020-05-26 22:53:10 +03:00
|
|
|
commit_chunk(it, false);
|
|
|
|
}
|
2020-05-24 10:49:02 +03:00
|
|
|
if (last_was_newline) {
|
2019-12-18 14:44:09 +03:00
|
|
|
last_was_newline = false;
|
2020-05-24 10:49:02 +03:00
|
|
|
commit_chunk(it, true);
|
|
|
|
}
|
|
|
|
if (do_wrap_breaks && *it == '\n') {
|
|
|
|
last_was_newline = true;
|
|
|
|
commit_chunk(it, false);
|
|
|
|
}
|
|
|
|
if (do_wrap_lines) {
|
|
|
|
bool is_space = isspace(*it);
|
|
|
|
if (is_space != last_was_space) {
|
|
|
|
last_was_space = is_space;
|
|
|
|
commit_chunk(it, false);
|
|
|
|
}
|
2019-10-03 17:49:32 +03:00
|
|
|
}
|
2019-10-03 16:20:13 +03:00
|
|
|
++it;
|
2019-09-29 12:32:00 +03:00
|
|
|
}
|
2020-05-24 10:49:02 +03:00
|
|
|
if (last_was_newline)
|
|
|
|
commit_chunk(view.end(), true);
|
|
|
|
if (start_of_chunk != view.end())
|
2020-05-26 22:53:10 +03:00
|
|
|
commit_chunk(view.end(), false, true);
|
2019-09-29 12:32:00 +03:00
|
|
|
}
|
|
|
|
|
2020-05-27 20:20:49 +03:00
|
|
|
void LayoutText::split_into_lines_by_rules(LayoutBlock& container, LayoutMode layout_mode, bool do_collapse, bool do_wrap_lines, bool do_wrap_breaks)
|
2019-09-25 12:40:37 +03:00
|
|
|
{
|
2020-06-24 14:51:14 +03:00
|
|
|
auto& font = specified_style().font();
|
2019-11-18 18:25:38 +03:00
|
|
|
float space_width = font.glyph_width(' ') + font.glyph_spacing();
|
2019-10-03 16:20:13 +03:00
|
|
|
|
|
|
|
auto& line_boxes = container.line_boxes();
|
2020-08-08 16:07:15 +03:00
|
|
|
container.ensure_last_line_box();
|
2019-11-18 18:25:38 +03:00
|
|
|
float available_width = container.width() - line_boxes.last().width();
|
2019-10-03 16:20:13 +03:00
|
|
|
|
2019-10-09 17:29:23 +03:00
|
|
|
// Collapse whitespace into single spaces
|
2020-05-24 10:49:02 +03:00
|
|
|
if (do_collapse) {
|
2020-11-22 16:46:36 +03:00
|
|
|
auto utf8_view = Utf8View(dom_node().data());
|
|
|
|
StringBuilder builder(dom_node().data().length());
|
2020-06-13 15:59:17 +03:00
|
|
|
auto it = utf8_view.begin();
|
|
|
|
auto skip_over_whitespace = [&] {
|
|
|
|
auto prev = it;
|
|
|
|
while (it != utf8_view.end() && isspace(*it)) {
|
|
|
|
prev = it;
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
it = prev;
|
|
|
|
};
|
|
|
|
if (line_boxes.last().ends_in_whitespace())
|
|
|
|
skip_over_whitespace();
|
|
|
|
for (; it != utf8_view.end(); ++it) {
|
2020-05-24 10:49:02 +03:00
|
|
|
if (!isspace(*it)) {
|
2020-08-05 23:31:20 +03:00
|
|
|
builder.append(utf8_view.as_string().characters_without_null_termination() + utf8_view.byte_offset_of(it), it.code_point_length_in_bytes());
|
2020-05-24 10:49:02 +03:00
|
|
|
} else {
|
|
|
|
builder.append(' ');
|
2020-06-13 15:59:17 +03:00
|
|
|
skip_over_whitespace();
|
2019-10-18 23:50:44 +03:00
|
|
|
}
|
2019-10-09 17:29:23 +03:00
|
|
|
}
|
2020-05-24 10:49:02 +03:00
|
|
|
m_text_for_rendering = builder.to_string();
|
|
|
|
} else {
|
2020-11-22 16:46:36 +03:00
|
|
|
m_text_for_rendering = dom_node().data();
|
2019-10-09 17:29:23 +03:00
|
|
|
}
|
|
|
|
|
2020-05-24 10:49:02 +03:00
|
|
|
// do_wrap_lines => chunks_are_words
|
|
|
|
// !do_wrap_lines => chunks_are_lines
|
|
|
|
struct Chunk {
|
2019-10-03 16:20:13 +03:00
|
|
|
Utf8View view;
|
2020-06-13 15:59:17 +03:00
|
|
|
int start { 0 };
|
|
|
|
int length { 0 };
|
|
|
|
bool is_break { false };
|
|
|
|
bool is_all_whitespace { false };
|
2019-10-03 16:20:13 +03:00
|
|
|
};
|
2020-11-21 14:49:58 +03:00
|
|
|
Vector<Chunk, 128> chunks;
|
2019-09-28 23:18:19 +03:00
|
|
|
|
2020-05-26 22:53:10 +03:00
|
|
|
for_each_chunk(
|
2020-06-13 15:59:17 +03:00
|
|
|
[&](const Utf8View& view, int start, int length, bool is_break, bool is_all_whitespace) {
|
|
|
|
chunks.append({ Utf8View(view), start, length, is_break, is_all_whitespace });
|
2020-05-26 22:53:10 +03:00
|
|
|
},
|
2020-05-27 20:20:49 +03:00
|
|
|
layout_mode, do_wrap_lines, do_wrap_breaks);
|
2019-09-29 12:32:00 +03:00
|
|
|
|
2020-05-24 10:49:02 +03:00
|
|
|
for (size_t i = 0; i < chunks.size(); ++i) {
|
|
|
|
auto& chunk = chunks[i];
|
2019-10-03 16:20:13 +03:00
|
|
|
|
2020-06-13 15:59:17 +03:00
|
|
|
// Collapse entire fragment into non-existence if previous fragment on line ended in whitespace.
|
|
|
|
if (do_collapse && line_boxes.last().ends_in_whitespace() && chunk.is_all_whitespace)
|
|
|
|
continue;
|
|
|
|
|
2020-05-24 10:49:02 +03:00
|
|
|
float chunk_width;
|
|
|
|
bool need_collapse = false;
|
|
|
|
if (do_wrap_lines) {
|
2020-06-13 15:59:17 +03:00
|
|
|
need_collapse = do_collapse && isspace(*chunk.view.begin()) && line_boxes.last().ends_in_whitespace();
|
2019-10-03 16:55:18 +03:00
|
|
|
|
2020-05-24 10:49:02 +03:00
|
|
|
if (need_collapse)
|
|
|
|
chunk_width = space_width;
|
|
|
|
else
|
|
|
|
chunk_width = font.width(chunk.view) + font.glyph_spacing();
|
2019-10-03 16:20:13 +03:00
|
|
|
|
2020-05-24 10:49:02 +03:00
|
|
|
if (line_boxes.last().width() > 0 && chunk_width > available_width) {
|
2020-08-08 16:07:15 +03:00
|
|
|
container.add_line_box();
|
2020-05-24 10:49:02 +03:00
|
|
|
available_width = container.width();
|
|
|
|
}
|
|
|
|
if (need_collapse & line_boxes.last().fragments().is_empty())
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
chunk_width = font.width(chunk.view);
|
2019-09-29 12:32:00 +03:00
|
|
|
}
|
2019-10-03 16:20:13 +03:00
|
|
|
|
2020-05-24 10:49:02 +03:00
|
|
|
line_boxes.last().add_fragment(*this, chunk.start, need_collapse ? 1 : chunk.length, chunk_width, font.glyph_height());
|
|
|
|
available_width -= chunk_width;
|
2019-10-03 16:55:18 +03:00
|
|
|
|
2020-05-24 10:49:02 +03:00
|
|
|
if (do_wrap_lines) {
|
|
|
|
if (available_width < 0) {
|
2020-08-08 16:07:15 +03:00
|
|
|
container.add_line_box();
|
2020-05-24 10:49:02 +03:00
|
|
|
available_width = container.width();
|
|
|
|
}
|
|
|
|
}
|
2019-10-03 16:55:18 +03:00
|
|
|
|
2020-05-24 10:49:02 +03:00
|
|
|
if (do_wrap_breaks) {
|
|
|
|
if (chunk.is_break) {
|
2020-08-08 16:07:15 +03:00
|
|
|
container.add_line_box();
|
2020-05-24 10:49:02 +03:00
|
|
|
available_width = container.width();
|
|
|
|
}
|
2019-10-03 16:55:18 +03:00
|
|
|
}
|
2019-10-03 16:20:13 +03:00
|
|
|
}
|
2019-09-25 12:40:37 +03:00
|
|
|
}
|
2020-03-07 12:27:02 +03:00
|
|
|
|
2020-05-27 20:20:49 +03:00
|
|
|
void LayoutText::split_into_lines(LayoutBlock& container, LayoutMode layout_mode)
|
2020-05-24 10:49:02 +03:00
|
|
|
{
|
|
|
|
bool do_collapse = true;
|
|
|
|
bool do_wrap_lines = true;
|
|
|
|
bool do_wrap_breaks = false;
|
|
|
|
|
2020-06-24 17:37:44 +03:00
|
|
|
if (style().white_space() == CSS::WhiteSpace::Nowrap) {
|
2020-05-24 10:49:02 +03:00
|
|
|
do_collapse = true;
|
|
|
|
do_wrap_lines = false;
|
|
|
|
do_wrap_breaks = false;
|
2020-06-24 17:37:44 +03:00
|
|
|
} else if (style().white_space() == CSS::WhiteSpace::Pre) {
|
2020-05-24 10:49:02 +03:00
|
|
|
do_collapse = false;
|
|
|
|
do_wrap_lines = false;
|
|
|
|
do_wrap_breaks = true;
|
2020-06-24 17:37:44 +03:00
|
|
|
} else if (style().white_space() == CSS::WhiteSpace::PreLine) {
|
2020-05-24 10:49:02 +03:00
|
|
|
do_collapse = true;
|
|
|
|
do_wrap_lines = true;
|
|
|
|
do_wrap_breaks = true;
|
2020-06-24 17:37:44 +03:00
|
|
|
} else if (style().white_space() == CSS::WhiteSpace::PreWrap) {
|
2020-05-24 10:49:02 +03:00
|
|
|
do_collapse = false;
|
|
|
|
do_wrap_lines = true;
|
|
|
|
do_wrap_breaks = true;
|
|
|
|
}
|
|
|
|
|
2020-05-27 20:20:49 +03:00
|
|
|
split_into_lines_by_rules(container, layout_mode, do_collapse, do_wrap_lines, do_wrap_breaks);
|
2020-05-24 10:49:02 +03:00
|
|
|
}
|
|
|
|
|
2020-03-07 12:27:02 +03:00
|
|
|
}
|