-
Notifications
You must be signed in to change notification settings - Fork 0
/
site.html
683 lines (589 loc) · 31.5 KB
/
site.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
<html>
<head>
<meta charset='utf-8'>
<title>Site</title>
<style>
table.t1 {
border-top: 1px #990000 dotted;
border-bottom: 1px #990000 dotted;
}
th.t1 {
border-left: 1px #990000 dotted;
border-right: 1px #990000 dotted;
}
td.t1 {
border-top: 1px #009900 dotted;
border-left: 1px #009900 dotted;
border-right: 1px #009900 dotted;
}
table.t2 {
border-top: 1px #6311C6 dotted;
border-bottom: 1px #6311C6 dotted;
}
th.t2 {
border-left: 1px #6311C6 dotted;
border-right: 1px #6311C6 dotted;
}
td.t2 {
border-top: 1px #01ACBA dotted;
border-left: 1px #01ACBA dotted;
border-right: 1px #01ACBA dotted;
}
</style>
</head>
<!-- js: code run 848 beta-gun -->
<body>
<table width="300" class="t1">
<tr>
<th class="t1">1</th>
<th class="t1">2</th>
<th class="t1">3</th>
</tr>
<tr>
<td class="t1">Vasya</td>
<td class="t1">28.34</td>
<td class="t1">-15.48</td>
</tr>
<tr>
<td class="t1">Petya</td>
<td class="t1">140.02</td>
<td class="t1">29</td>
</tr>
<tr>
<td class="t1">Masha</td>
<td class="t1">-2.09</td>
<td class="t1">-37.03</td>
</tr>
</table>
<div id="allButtons">
<button id="b1" type="button"> появится копия исходной таблицы, но с порядком полей: 1, 3, 2. Применить для новой таблицы стили t2</button>
<br />
<button id="b2" type="button">появится копия исходной таблицы, но с дополнительным полем 4, в котором будет сумма полей 2 и 3. Применить для новой таблицы стили t2</button>
<br />
<button id="b3" type="button"> сохранится в cookie ключ bbb со значением, равным 43</button>
<br />
<button id="b4" type="button"> сформируется XMLHttp-запрос на сайт «http://domain.com»,</button>
<br />
<input type="button" style="display: block" id="b5" value="появится iframe, внутри которого будет загружен site.html(без каких-либо параметров) с исходной таблицей, у которой будут невидимыми строки с отрицательными числами в поле 3." >
<br />
<input type="button" style="display: block" id="b6" value="появится iframe, внутри которого будет загружен site.html(без каких-либо параметров) с исходной таблицей, у которой будут невидимыми строки, у которых поле 1 равно «Petya»." >
<br />
<button id="b7" type="button">будет найден комментарий, начинающийся</button>
<br /> <br /> <br />
<button id="b8" type="button">Удалить из cookie значение 43</button>
<br /><br /><br /><br /><br /><br />
</div>
<div id="task_1"></div>
<div id="task_2"></div>
<div id="task_3"></div>
<div id="task_4"></div>
<div id="task_5"></div>
<div id="task_6"></div>
<div id="task_7"></div>
<script type="text/javascript">
var APP = {
//объект для внутренних временных нужд
tmp : {},
//число - сумма 2 и 3 полей таблицы
tmpAmount : 0,
//для таска 4 для условия
filterTaskFour : 5,
classT2 : 't2',
domain : '#',
cookieInt : 43,
currentURL : document.URL,
nameForHidden : 'Petya',
localCookieValue : 0,
alreadyDecrisedTableValue : false,
MainTable : document.getElementsByTagName('table')[0],
allButtons : document.getElementById('allButtons'),
button_1 : document.getElementById('b1'),
button_2 : document.getElementById('b2'),
button_3 : document.getElementById('b3'),
button_4 : document.getElementById('b4'),
button_5 : document.getElementById('b5'),
button_6 : document.getElementById('b6'),
button_7 : document.getElementById('b7'),
button_8 : document.getElementById('b8'),
task_1 : document.getElementById('task_1'),
task_2 : document.getElementById('task_2'),
task_3 : document.getElementById('task_3'),
task_4 : document.getElementById('task_4'),
task_5 : document.getElementById('task_5'),
task_6 : document.getElementById('task_6'),
task_7 : document.getElementById('task_7'),
initialize : function () {
this.setUpListeners();
this.decreaseEachValueFromTable();
},
setUpListeners : function () {
var self = this;
this.button_1.onclick = function() { self.clickedButtonOne(); }
this.button_2.onclick = function() { self.clickedButtonTwo(); }
this.button_3.onclick = function() { self.clickedButtonThree(); }
this.button_4.onclick = function() { self.clickedButtonFour(); }
this.button_5.onclick = function() { self.clickedButtonFive(); }
this.button_6.onclick = function() { self.clickedButtonSix(); }
this.button_7.onclick = function() { self.clickedButtonSeven(); }
this.button_8.onclick = function() { self.deleteCookie('bbb'); }
},
decreaseEachValueFromTable : function () {
var decreaseValue = 0;
if ( this.alreadyDecrisedTableValue ) { // мы уже уменьшили данные таблицы
// decreaseValue = 0;
} else {
//если нажали f5 то this.alreadyDecrisedTableValue = false и я тут
decreaseValue = this.getCookie('bbb'); //взять значение из куки
if ( typeof decreaseValue !== 'undefined' && decreaseValue != 0 ) {
//утановить в true для того чтобы при клике не уменьшать заново
this.alreadyDecrisedTableValue = true;
}
}
var table = this.MainTable;
var rows = table.rows;
//цикл по строкам
for ( var i = 0 , rowsCount = rows.length; i < rowsCount; i++) {
//цикл по столбцам
var cellsCount = rows[i].cells.length;
for (var j = 0; j < cellsCount; j++) {
//преготоыим переменные для ajax
var obj = {
i: i,
j:j,
rows:rows
};
this.preparedataForAjaxHelper(obj);
// конец преготоыим переменные для ajax
if ( typeof decreaseValue === 'undefined' || decreaseValue == 0 ) {
continue;
}
if (i != 0 && j != 0) {
//уменьшаем значение на то которое в куках
rows[i].cells[j].innerHTML = (parseInt(rows[i].cells[j].innerHTML*100) - decreaseValue*100)/100;
}
}
}
},
clickedButtonOne : function () {
// появится копия исходной таблицы, но с порядком полей: 1, 3, 2. Применить для новой таблицы стили t2
//уменьшить табличные значения
this.decreaseEachValueFromTable();
//удалить все из дива
this.task_1.innerHTML = '';
// создать таблицу
var myclass = this.classT2;
var newTable = document.createElement("table");
var tblBody = document.createElement("tbody");
newTable.className = myclass;
//искомая таблица
var table = this.MainTable;
var rows = table.rows;
//цикл по строкам
var rowsCount = rows.length;
for ( var i = 0; i < rowsCount; i++) {
//таблиц из пунктов 1, 2 и 4 не должны содержать невидимую строку исходной таблицы START
if ( rows[i].style.display == 'none' ) {
continue;
}
//таблиц из пунктов 1, 2 и 4 не должны содержать невидимую строку исходной таблицы END
//here need to create tr
var newRow = document.createElement("tr");
//цикл по столбцам
var cellsCount = rows[i].cells.length;
for (var j = 0 ;j < cellsCount; j++) {
if (i == 0 ) {
// если первая строка в таблице
var newCell = document.createElement("th");
} else {
var newCell = document.createElement("td");
}
//добавляем класс
newCell.className = myclass;
//создаем текстовый узел
var newCellText = document.createTextNode(rows[i].cells[j].innerHTML);
//цепляем его а также цепляем весь узел к строке
newCell.appendChild(newCellText);
if (j == cellsCount - 1) { //это последний элемент и мы должны его поставить предпоследним
newRow.insertBefore(newCell, newRow.lastChild);
} else {
newRow.appendChild(newCell);
}
}
tblBody.appendChild(newRow);
}
//добавляем все что сгенерировали к таблице
newTable.appendChild(tblBody);
//цепляем таблицу к диву
this.task_1.appendChild(newTable);
},
clickedButtonTwo : function () {
//появится копия исходной таблицы, но с дополнительным полем 4, в котором будет сумма полей 2 и 3.
// Применить для новой таблицы стили t2
//уменьшить табличные значения
this.decreaseEachValueFromTable();
//удалить все из дива
this.task_2.innerHTML = '';
var myclass = this.classT2;
var newTable = document.createElement("table");
var tblBody = document.createElement("tbody");
newTable.className = myclass;
//искомая таблица
var table = this.MainTable;
var rows = table.rows;
//цикл по строкам
for ( var i = 0 , rowsCount = rows.length; i < rowsCount; i++) {
//таблиц из пунктов 1, 2 и 4 не должны содержать невидимую строку исходной таблицы START
if ( rows[i].style.display == 'none' ) {
continue;
}
//таблиц из пунктов 1, 2 и 4 не должны содержать невидимую строку исходной таблицы END
//here need to create tr
var newRow = document.createElement("tr");
//иницилизируем переменную для подсчета второй и третьей колонки
var amount = 0;
//цикл по столбцам
for (var j = 0 , cellsCount = rows[i].cells.length; j <= cellsCount; j++) {
if (i == 0 ) {
// если первая строка в таблице
var newCell = document.createElement("th");
} else {
var newCell = document.createElement("td");
}
//добавляем класс
newCell.className = myclass;
//считаем сумму второго и третьего полей
if (i != 0 && j != 0 && j < cellsCount) {
// console.log(rows[i].cells[j].innerHTML);
amount = (amount *100 + (rows[i].cells[j].innerHTML)*100)/100;
}
//создаем текстовый узел
if (j != cellsCount) {
var newCellText = document.createTextNode(rows[i].cells[j].innerHTML);
} else {
if (i == 0) {
amount = 4; //это th и мы должны вывести цифру 4
}
var newCellText = document.createTextNode(amount);
}
//цепляем его а также цепляем весь узел к строке
newCell.appendChild(newCellText);
newRow.appendChild(newCell);
}
tblBody.appendChild(newRow);
}
//добавляем все что сгенерировали к таблице
newTable.appendChild(tblBody);
//цепляем таблицу к диву
this.task_2.appendChild(newTable);
},
clickedButtonThree : function () {
//сохранится в cookie ключ bbb со значением, равным 43
//при последующем обновлении html в исходной таблице и в таблицах из пунктов 1, 2, 5 и 6
//все числа должны быть уменьшены на это значение и все операции должны производиться
//уже с этим новым уменьшенным числом
this.setCookie('bbb', this.cookieInt);
// метод decreaseEachValueFromTable уменьшает все значения таблицы на 43
// таблицы 1,2 формируются из исхлдной т.е при клике на кнопки 1 и 2 данные исходной таблицы будут уменьшины и автоматическм будут уменьшины в таблицах по таску 1 и 2
},
clickedButtonFour : function () {
//сформируется XMLHttp-запрос на сайт «http://domain.com»,
//в котором параметрами будут переданы поле 1 и сумма полей 2 и 3 исходной таблицы,
// при условии что сумма больше 5.
// Перед отправкой вывести alert с этими параметрами.
// Имя параметра формируется так: p1 – поле 1, ps – сумма полей 2 и 3.
// Если под условие подходит несколько строк, то объединить это в один запрос
// Создадим объект
var dataObject = this.getDataForAjax();
var myString = "";
for(prop in dataObject) {
myString += prop+"=" + dataObject[prop] + "&";
}
var newMyString = myString.substring(0, myString.length - 1);
alert(newMyString);
// Запрос к серверу
var req = this.getXmlHttpRequest();
if ( req === null ) {
return false;
}
req.onreadystatechange = function() {
if (req.readyState != 4) return;
var responseText = new String(req.responseText);
alert(responseText);
}
// Метод POST
if (this.domain == '#') {
alert('Вы можете указать куда отправить аякс, переменная domain');
} else {
req.open("POST", this.domain, true);
// Установка заголовков
req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
req.setRequestHeader("Content-Length", newMyString.length);
// Отправка данных
req.send(newMyString);
}
},
clickedButtonFive : function () {
//появится iframe, внутри которого будет загружен site.html(без каких-либо параметров) с исходной таблицей,
// у которой будут невидимыми строки с отрицательными числами в поле 3.
// В загруженном ифрейме копии исходных таблиц из пунктов 1, 2 и 4 не должны содержать
// невидимую строку исходной таблицы
// удалить все из дива
this.task_5.innerHTML = '';
var currentURL = this.currentURL;
var self = this;
var myIframe = this.createIframeHelper('alex', '', this.task_5, true);
myIframe.onload = function () {
self.iframeOneOnload(self);
}
return false;
},
clickedButtonSix : function () {
// появится iframe, внутри которого будет загружен site.html(без каких-либо параметров)
// с исходной таблицей, у которой будут невидимыми строки,
// у которых поле 1 равно «Petya».
// Это значение должно задаваться отдельной переменной.
// В загруженном ифрейме копии исходных таблиц из пунктов 1, 2 и 4 не должны содержать невидимую строку
// исходной таблицы
// удалить все из дива
this.task_6.innerHTML = '';
var currentURL = this.currentURL;
var self = this;
var myIframe = this.createIframeHelper('alex2', '', this.task_6, true);
myIframe.onload = function () {
self.iframeTwoOnload(self);
}
return false;
},
clickedButtonSeven : function () {
// будет найден комментарий, начинающийся с <!— js: и вывести alert с текстом, идущим после двоеточия
var childNodes = document.documentElement.childNodes;
if (childNodes.length > 2) { // here we have comment node
var comment = this.searchCommentNodeHelper(childNodes);
alert('work if 1 - comment = ' + comment );
return ;
}
var childNodes = document.documentElement.children; //ie < 9
if (childNodes.length > 2) { // here we have comment node
var comment = this.searchCommentNodeHelper(childNodes);
alert('work if 2 - comment = ' + comment );
return ;
}
//comment included to head node as a lastchild
var childNodes = document.documentElement.children;
var comment = this.searchCommentNodeHelper(childNodes[0].children);
if (comment !== null) {
alert('work if 3 - comment = ' + comment );
return;
}
alert('error - could not find comment node');
},
///////////////////////////////////////////////////////
// HELPERS ///////////
///////////////////////////////////////////////////////
iframeOneOnload : function ( self) {
var currentURL = this.currentURL;
self = self || APP;
if ( window.frames.alex.location == 'javascript:false' || window.frames.alex.location == 'about:blank' ) {
//тут я перенаправляю на ту страницу которая мне нужна (те текущая страница)
window.frames.alex.location.replace(currentURL);
} else {
self.alexIframe.openCurrentPageInIframeTask5();
}
},
iframeTwoOnload : function ( self) {
var currentURL = this.currentURL;
self = self || APP;
if ( window.frames.alex2.location == 'javascript:false' || window.frames.alex2.location == 'about:blank' ) {
//тут я перенаправляю на ту страницу которая мне нужна (те текущая страница)
window.frames.alex2.location.replace(currentURL);
} else {
self.alexIframe2.openCurrentPageInIframeTask6();
}
},
searchCommentNodeHelper : function (childNodes) {
for(var i = 0; i < childNodes.length; i++) {
if (childNodes[i].nodeType !== 8 ) {
continue;
}
//comment node
var text = childNodes[i].nodeValue;
var nospaceText = this.nospace(text);
//должны проверить js:
if ( (nospaceText.search('js:') === 0) ) {
var returnStr = nospaceText.substring(3);
return returnStr;
}
}
return null;
},
// возвращает cookie с именем name, если есть, если нет, то undefined
getCookie : function(name) {
var matches = document.cookie.match(new RegExp(
"(?:^|; )" + name.replace(/([\.$?*|{}\(\)\[\]\\\/\+^])/g, '\\$1') + "=([^;]*)"
));
return matches ? decodeURIComponent(matches[1]) : this.localCookieValue;
},
// устанавливает cookie c именем name и значением value
// options - объект с свойствами cookie (expires, path, domain, secure)
setCookie : function (name, value, options) {
// установить это значение в переменную чтобы при необновлении страницы у нас была возможность определить значение куки
this.localCookieValue = value;
options = options || {};
var expires = options.expires;
if (typeof expires == "number" && expires) {
var d = new Date();
d.setTime(d.getTime() + expires*1000);
expires = options.expires = d;
}
if (expires && expires.toUTCString) {
options.expires = expires.toUTCString();
}
value = encodeURIComponent(value);
var updatedCookie = name + "=" + value;
for(var propName in options) {
updatedCookie += "; " + propName;
var propValue = options[propName];
if (propValue !== true) {
updatedCookie += "=" + propValue;
}
}
document.cookie = updatedCookie;
},
// удаляет cookie с именем name
deleteCookie : function (name) {
this.setCookie(name, "", { expires: -1 });
this.localCookieValue = 0;
this.alreadyDecrisedTableValue = false;
},
getXmlHttpRequest : function() {
if (window.XMLHttpRequest) {
try {
return new XMLHttpRequest();
} catch (e){
alert('error 1');
}
} else if (window.ActiveXObject) {
try {
return new ActiveXObject('Msxml2.XMLHTTP');
} catch (e){
alert('error 2');
}
try {
return new ActiveXObject('Microsoft.XMLHTTP');
}catch (e){
alert('error 3');
}
}
return null;
},
preparedataForAjaxHelper : function (obj) {
if( obj.i !== 0 ) { //пропускаем самую верхнюю строку где просто идет нумерация - 1 2 3
if ( obj.j == 0 ) { // это имена
this.setDataForAjaxBeforeDecreaseTableValue('p'+obj.i,obj.rows[obj.i].cells[obj.j].innerHTML );
} else {
if ( obj.j == 1 ) {
this.tmpAmount = obj.rows[obj.i].cells[obj.j].innerHTML;
} else {
var total = (this.tmpAmount*100 + obj.rows[obj.i].cells[obj.j].innerHTML*100)/100;
if (total > this.filterTaskFour) {
this.setDataForAjaxBeforeDecreaseTableValue('ps'+obj.i,total);
}
}
}
}
},
setDataForAjaxBeforeDecreaseTableValue : function (name, value) {
this.tmp[name] = value;
},
getDataForAjax : function () {
return this.tmp;
},
createIframeHelper : function(name, src, appendTo, debug) {
src = src || 'javascript:false'; // пустой src
var self = this;
var tmpElem = document.createElement('div');
// в старых IE нельзя присвоить name после создания iframe
// поэтому создаём через innerHTML
if (name == 'alex') {
tmpElem.innerHTML = '<iframe onload="APP.iframeOneOnload()" width="800px" height="600px" name="'+name+'" id="'+name+'" src="'+src+'">';
} else if (name == 'alex2') {
tmpElem.innerHTML = '<iframe onload="APP.iframeTwoOnload()" width="800px" height="600px" name="'+name+'" id="'+name+'" src="'+src+'">';
}
var iframe = tmpElem.firstChild;
if ( ! debug ) {
iframe.style.display = 'none';
}
appendTo.appendChild(iframe);
return iframe;
},
nospace : function(str) {
var VRegExp = new RegExp(/^(\s|\u00A0)+/g);
var VResult = str.replace(VRegExp, '');
return VResult;
}
};
APP.alexIframe = {
//появится iframe, внутри которого будет загружен site.html(без каких-либо параметров) с исходной таблицей,
// у которой будут невидимыми строки с отрицательными числами в поле 3.
// В загруженном ифрейме копии исходных таблиц из пунктов 1, 2 и 4 не должны содержать
// невидимую строку исходной таблицы
openCurrentPageInIframeTask5 : function () {
if (typeof window.alex === 'undefined') {
return;
}
var iframeAPP = window.alex.APP;
iframeAPP.allButtons.style.display = 'none';
// ТАСК 4 НЕ СОДЕРЖИТ ТАБЛИЦ
//перерисовываем искомую таблицу и прячем отрицательные поля
var table = iframeAPP.MainTable;
var rows = table.rows;
//цикл по строкам
for ( var i = 1 , rowsCount = rows.length; i < rowsCount; i++) {
var cellsLength = rows[i].cells.length;
//последняя колонка таблицы
var thirdCells = rows[i].cells[cellsLength - 1].innerHTML ;
if ( thirdCells < 0 ) {
rows[i].style.display = 'none';
}
}
// добавляем таблицу из таска 1
iframeAPP.clickedButtonOne();
//добавляем таблицу из таска 2
iframeAPP.clickedButtonTwo();
}
};
APP.alexIframe2 = {
// появится iframe, внутри которого будет загружен site.html(без каких-либо параметров)
// с исходной таблицей, у которой будут невидимыми строки,
// у которых поле 1 равно «Petya».
// Это значение должно задаваться отдельной переменной.
// В загруженном ифрейме копии исходных таблиц из пунктов 1, 2 и 4 не должны содержать невидимую строку
// исходной таблицы
openCurrentPageInIframeTask6 : function () {
if (typeof window.alex2 === 'undefined') {
return;
}
var iframeAPP = window.alex2.APP;
iframeAPP.allButtons.style.display = 'none';
//перерисовываем искомую таблицу и прячем отрицательные поля
var table = iframeAPP.MainTable;
var rows = table.rows;
//цикл по строкам
for ( var i = 1 , rowsCount = rows.length; i < rowsCount; i++) {
//первоя колонка таблицы
var firstCell = rows[i].cells[0].innerHTML;
if ( firstCell === iframeAPP.nameForHidden) {
rows[i].style.display = 'none';
}
}
// добавляем таблицу из таска 1
iframeAPP.clickedButtonOne();
//добавляем таблицу из таска 2
iframeAPP.clickedButtonTwo();
// ТАСК 4 НЕ СОДЕРЖИТ ТАБЛИЦ
}
};
APP.initialize();
</script>
</body>
</html>