Куча мелких фиксов, уборка мусора.
8
.gitignore
vendored
@ -1 +1,7 @@
|
||||
.idea/
|
||||
.idea/
|
||||
.unused/
|
||||
logs/battle*/*.txt
|
||||
tmp/*.btl
|
||||
tmp/*.txt
|
||||
README.md
|
||||
Thumbs.db
|
10
README.md
@ -1,10 +0,0 @@
|
||||
# README #
|
||||
|
||||
Проект БК1\БК2 времён до появления приёмов.
|
||||
Версионности не будет, пока проект не станет стабильным на PHP5.6.
|
||||
|
||||
### What is this repository for? ###
|
||||
|
||||
* Quick summary
|
||||
* Version
|
||||
* [Learn Markdown](https://bitbucket.org/tutorials/markdowndemo)
|
@ -1,284 +0,0 @@
|
||||
function H(isOutBox){
|
||||
this.document = document;
|
||||
this.isOutBox = isOutBox;
|
||||
this.iframe = this.isOutBox ? $('#mainbox') : $('body');
|
||||
|
||||
// DOM-элемент, который перехватывает клик по логину
|
||||
//this.grabLogin = null;
|
||||
// DOM-элемент, который перехватывает клик по названию шмотки
|
||||
//this.grabItem = null;
|
||||
this.grabLogin = new Grabber({inputClass: 'grabLogin'});
|
||||
this.grabItem = new Grabber({inputClass: 'grabLogin'});
|
||||
// storage
|
||||
this.data = {};
|
||||
}
|
||||
|
||||
H.prototype.toString = function(){
|
||||
return 'This is H-object';
|
||||
}
|
||||
|
||||
H.prototype.getMainBox = function(){
|
||||
return this.isOutBox ? this.iframe.contents().find('body') : $('body');
|
||||
}
|
||||
|
||||
H.prototype.loadMainBox = function(location){
|
||||
location = location || '/main.php';
|
||||
this.iframe.attr('src',location);
|
||||
}
|
||||
|
||||
H.prototype.loadDocument = function(location){
|
||||
this.document.location = location;
|
||||
}
|
||||
|
||||
// ======== storage
|
||||
|
||||
H.prototype.set = function(key, value){
|
||||
this.data[key] = value;
|
||||
}
|
||||
|
||||
H.prototype.get = function(key, defaultValue){
|
||||
return undefined == this.data[key] ? defaultValue : this.data[key];
|
||||
}
|
||||
|
||||
H.prototype.setHP = function(id, curHP, maxHP){
|
||||
curHP = curHP || 0;
|
||||
maxHP = maxHP || 0;
|
||||
const hp = this.getMainBox().find('#hpKey_' + id);
|
||||
if(hp.length < 1){
|
||||
return false;
|
||||
}
|
||||
const hpA = $('img:eq(1)', hp);
|
||||
const hpB = $('img:eq(2)', hp);
|
||||
const redHP = 0.33; // меньше 30% красный цвет
|
||||
const yellowHP = 0.66; // меньше 60% желтый цвет, иначе зеленый
|
||||
if(curHP > maxHP){
|
||||
curHP = maxHP;
|
||||
}
|
||||
const text = curHP + '/' + maxHP;
|
||||
const lengthHP = 170 - (text.length - 1) * 8;
|
||||
const sizeFirst = Math.round((lengthHP / maxHP) * curHP);
|
||||
const sizeSecond = lengthHP - sizeFirst;
|
||||
hpA.attr('width', sizeFirst);
|
||||
hpB.attr('width', sizeSecond);
|
||||
if(curHP / maxHP < redHP){
|
||||
hpA.attr('src', '/i/1red.gif');
|
||||
}else{
|
||||
if(curHP / maxHP < yellowHP){
|
||||
hpA.attr('src', '/i/1yellow.gif');
|
||||
}else{
|
||||
hpA.attr('src', '/i/1green.gif');
|
||||
}
|
||||
}
|
||||
hp.html(hp.html().substring(0, hp.html().lastIndexOf(':') + 1) + Math.round(curHP) + "/" + maxHP);
|
||||
}
|
||||
|
||||
/* ------------------ перехват клика по логину юзера -------------------------------------------- * /
|
||||
H.prototype.setGrabLogin = function(input){
|
||||
var obj = this;
|
||||
this.clearGrabLogin();
|
||||
var tmp = $(input);
|
||||
if(tmp.length > 0){
|
||||
this.grabLogin = tmp.get(0);
|
||||
$(this.grabLogin)
|
||||
.addClass('grabLogin')
|
||||
.dblclick(function(){obj.toggleGrabLogin(this)})
|
||||
.select();
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
H.prototype.clearGrabLogin = function(){
|
||||
$(this.grabLogin).removeClass('grabLogin');
|
||||
this.grabLogin = null;
|
||||
},
|
||||
|
||||
H.prototype.toggleGrabLogin = function(input){
|
||||
if($(input).hasClass('grabLogin')){
|
||||
this.clearGrabLogin();
|
||||
}else{
|
||||
this.setGrabLogin($(input));
|
||||
}
|
||||
}
|
||||
/* -------------------------------- простые диалоги --------------------------------------------- */
|
||||
|
||||
H.prototype.sdOptionsDefault = {
|
||||
formMethod: 'POST',
|
||||
formAction: '',
|
||||
formClass: '',
|
||||
title: 'заголовок не указан',
|
||||
width: 250,
|
||||
data: {},
|
||||
content: '<span>контент не указан</span>',
|
||||
onSubmit: function(){return true;},
|
||||
onClose: function(){this.remove()}
|
||||
}
|
||||
|
||||
H.prototype._sd = function(options){
|
||||
options = $.extend({}, this.sdOptionsDefault, options);
|
||||
const m = $('<div class="sd-container"></div>').css('width', options.width);
|
||||
const t = $('<div class="sd-title">').text(options.title);
|
||||
const c = $('<img class="sd-closer" src="/i/clear.gif" title="Закрыть окно" alt="X">')
|
||||
.click(function () {
|
||||
return options.onClose.call($(this).closest('div.sd-container'))
|
||||
});
|
||||
const f = $('<form class="sd-form"></form>')
|
||||
.attr('method', options.formMethod)
|
||||
.attr('action', options.formAction)
|
||||
.submit(function () {
|
||||
return options.onSubmit.call($(this).closest('div.sd-container'))
|
||||
});
|
||||
for(let i in options.data){
|
||||
$('<input type=hidden>').attr('name',i).val(options.data[i]).appendTo(f);
|
||||
}
|
||||
if(options.formClass){
|
||||
f.addClass(options.formClass);
|
||||
}
|
||||
$('div.sd-container', this.getMainBox()).remove();
|
||||
return m.append(t.prepend(c)).append(f.append(options.content));
|
||||
}
|
||||
|
||||
H.prototype.sd = function(options){
|
||||
const tmp = this._sd(options);
|
||||
return this.getMainBox().append(tmp);
|
||||
}
|
||||
|
||||
H.prototype.sdOneInput = function(options){
|
||||
let onSubmit2 = options.onSubmit;
|
||||
options = $.extend({},this.sdOptionsDefault, {inputName: 'target', inputValue: '', grabber: null}, options);
|
||||
const i = $('<input type="text" class="text">')
|
||||
.css({'width': options.width - 45})
|
||||
.attr('name', options.inputName)
|
||||
.val(options.inputValue);
|
||||
if(options.grabber && this[options.grabber] instanceof Grabber){
|
||||
this[options.grabber].set(i);
|
||||
}else{
|
||||
i.select();
|
||||
}
|
||||
options.content.append($('<div></div>')
|
||||
.append(i)
|
||||
.append('<input type="submit" class="button" style="width:33px;" value=" »» ">'));
|
||||
options.onSubmit = function(){
|
||||
const v = i.val($.trim(i.val())).val();
|
||||
if(v.length <= 0){
|
||||
alert('Не заполнено обязательное поле');
|
||||
return false
|
||||
}
|
||||
if(typeof onSubmit2 == 'function'){
|
||||
return onSubmit2.call(this);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
return this.sd(options);
|
||||
}
|
||||
|
||||
H.prototype.sdLogin = function(options){
|
||||
options.content = $('<div>Укажите логин персонажа:<br><small>(можно кликнуть по логину в чате)</small></div>');
|
||||
options.grabber = 'grabLogin';
|
||||
return this.sdOneInput(options);
|
||||
}
|
||||
|
||||
H.prototype.sdItem = function(options){
|
||||
options.content = $('<div>Укажите название или s/n предмета:<br><small>(можно кликнуть по названию в рюкзаке)</small></div>');
|
||||
options.grabber = 'grabItem';
|
||||
options.width = 270;
|
||||
return this.sdOneInput(options);
|
||||
}
|
||||
/**
|
||||
* Функция для обратной совместимости
|
||||
* Не надо её использовать в новом коде!
|
||||
*/
|
||||
H.prototype.sdFindLogin = function(title, formAction, inputName, inputValue){
|
||||
return this.sdLogin({
|
||||
title: title,
|
||||
formAction: formAction,
|
||||
inputName: inputName,
|
||||
inputValue: inputValue});
|
||||
}
|
||||
|
||||
/**
|
||||
* Функция для обратной совместимости
|
||||
* Не надо её использовать в новом коде!
|
||||
*/
|
||||
H.prototype.sdFindItem = function(title, formAction, inputName, inputValue){
|
||||
return this.sdItem({
|
||||
title: title,
|
||||
formAction: formAction,
|
||||
inputName: inputName,
|
||||
inputValue: inputValue});
|
||||
}
|
||||
/* ----------------------- вывод системных сообщений -------------------------------------------- */
|
||||
|
||||
H.prototype._popupConfig = {
|
||||
'd':[10000, 'Отладочное сообщение'],
|
||||
'i':[3000 , 'Сообщение'],
|
||||
'w':[5000 , 'Предупреждение'],
|
||||
'e':[0 , 'Ошибка']
|
||||
}
|
||||
|
||||
H.prototype.msgPopup = function(type, text){
|
||||
if(this._popupConfig[type] == undefined){
|
||||
type = 'w';
|
||||
}
|
||||
const conf = this._popupConfig[type];
|
||||
$.jGrowl(text,{
|
||||
header: '<img src="/i/jgrowl_moover.png" alt="<>" class="jgrowl-moover" title="Передвинуть"> ' + conf[1],
|
||||
glue: 'before',
|
||||
life: conf[0],
|
||||
sticky: conf[0] <= 0,
|
||||
theme: 'msg_' + type
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
/* ================== перехват клика на логине/шмотке и т.п. ==================================== */
|
||||
|
||||
function Grabber(options){
|
||||
this.options = $.extend({}, this.optionsDef, options);
|
||||
this.input = null;
|
||||
|
||||
}
|
||||
Grabber.prototype.toString = function(){
|
||||
return 'This is Grabber-object';
|
||||
}
|
||||
|
||||
Grabber.prototype.optionsDef = {
|
||||
inputClass: 'grab'
|
||||
}
|
||||
|
||||
Grabber.prototype.get = function(){
|
||||
return this.input;
|
||||
}
|
||||
|
||||
Grabber.prototype.isActive = function(){
|
||||
return $(this.input).is(':visible');
|
||||
}
|
||||
|
||||
Grabber.prototype.set = function(input){
|
||||
const obj = this;
|
||||
this.clear();
|
||||
const tmp = $(input);
|
||||
if(tmp.length > 0){
|
||||
this.input = tmp.get(0);
|
||||
$(this.input)
|
||||
.addClass(this.options.inputClass)
|
||||
.dblclick(function(){obj.toggle(this)})
|
||||
.select();
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
Grabber.prototype.clear = function(){
|
||||
$(this.input).removeClass(this.options.inputClass);
|
||||
this.input = null;
|
||||
},
|
||||
|
||||
Grabber.prototype.toggle = function(input){
|
||||
if($(input).hasClass(this.options.inputClass)){
|
||||
this.clear();
|
||||
}else{
|
||||
this.set($(input));
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 7.1 KiB |
Before Width: | Height: | Size: 6.9 KiB |
@ -1 +0,0 @@
|
||||
<script>top.location.href='/index.php';</script>
|
Before Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 1.6 KiB |
@ -1,241 +0,0 @@
|
||||
GIF89a`р
|
||||
Т аl0 „ч]RГьБB(pИ
|
||||
|
||||
ШЂци#R;ЎKЅ ’›/РAЦ0(АCЬ"Ѓt°
|
||||
М‚‹ @ь
|
||||
SPя@
|
||||
4°CБ† Д1K,‘А#
|
||||
ЬД#0°
|
||||
ЊL“AєHаB9чЬАE5zи`E%E<pЃЊд0й
|
||||
”A7Ь!Е=ОР’Бµ
|
||||
р
|
||||
<0З
|
||||
¶„ў
|
||||
,Ы\АMшArX
|
||||
¶ШДИЃ
|
||||
н№pД)4АXLb† 2аЂT,ЃС`D=ЊАЂY\a@@КАИ^f%"@@<`o€BSEк`FPб €А$!7ЂЃґа!Аа
|
||||
hЂ X@
|
||||
DaСђѓ
|
||||
Ђ
|
||||
e`$0…< @†и°
|
||||
&$
|
||||
™6CX…,ђpF`Ђ
|
||||
‚
|
||||
КВКИr@…^pc.Ё‚€aЂxГЖИЄbkт‡L$AЊ(B,,@„=AёЕ
|
||||
0 ‚4a
|
||||
c`” ;!
|
||||
0@МAЉ8@0ѓl
|
||||
"ш|M2‰?
|
||||
3,@Њ`АP…7n` иl!„И Ђ ®0Я‹D АpЌ*HбqЁГ: ЉS8.€БцAEАб`А,ђ!Ф#[h@
|
||||
жШЃа„а‡9 ГYNґE@
|
||||
h(5юрђЎ20‡ўw-‘$°‚А p
|
||||
ST"°xФC‰с[PѓVЂXр‡8Аq€А0<@0
|
||||
Y
|
||||
4Ѓ—ЏzA
|
||||
°Bњ`gPњ3Bp3<АB ЅX† Цp‰@°Ў|°Ђ
|
||||
ђ €(иВUШ‡~0Ѓ0вњpЃ
|
||||
†`Ђ=Ша„ё„ФпIА aЯИz,±n$Г?pѓ
|
||||
АаЂѕ°”c‘@ВаҐ>ѓ
|
||||
ґ#"ИЂ$шa€м (& l xЃя
|
||||
ЉРсЩњЖАРЂ,шв
|
||||
ЮЂ@
|
||||
"ј0ыа Д
|
||||
1`
|
||||
0иqL
|
||||
р
|
||||
;PO@
|
||||
mа р < гаЌЂ “SА6хїpkрк°„нvѓPЏр
|
||||
…P—PM
|
||||
Ђ!А‡м6
|
||||
г
|
||||
<аV г№@hЬрј°‡®ёkЙАJ`
|
||||
И`u0'АH
|
||||
.ђа_рк
|
||||
6
|
||||
џяp ® E
|
||||
-
|
||||
„ GаX°ЎА‚РО
|
||||
@@™he04 30ьPЈ%LњБ
|
||||
o`
|
||||
Ача
|
||||
– LР°М`“PWрЇ@1¦Ріfђuђc с
|
||||
°
|
||||
Л@
|
||||
uяЂЩ”`К0@@јj@-0Q
|
||||
Ђ
|
||||
ЛР0pЉћ@/ Ђ¦
|
||||
jР Q€Б00P К@wг‡@p
|
||||
S саP@Lj&рCа `%P
|
||||
5P
|
||||
*0ђ
|
||||
bP“яp’рҐтЕ«ѓ
|
||||
і°
|
||||
ц
|
||||
kЖ.
|
||||
Ћ
|
||||
« «pћ``а@0дц@7Ђf°
|
||||
|
||||
сp6
|
||||
пєX
|
||||
Yа
|
||||
F0 p_@Pcђі'ЫPAА
|
||||
с
|
||||
F
|
||||
Q°©Я
|
||||
·"р4р‹U%
|
||||
зЂHЂp
|
||||
Lp3p гP ґбЖ
|
||||
¬
|
||||
Э[°рц
|
||||
р
|
||||
|
||||
л
|
||||
ё@ЯKR` 304@HР
|
||||
Sт
|
||||
,O™°Qаи.Ђ
|
||||
A П ї
|
||||
7 ¶0 Ў@°
|
||||
°
|
||||
|
||||
@
|
||||
°Ар-`JР
|
||||
"ЊА™АP›ЬKў`Hђ %H
|
||||
"рё ; `ъјHSАСцfЂ(рp¶А8я‚
|
||||
“Аc`yђ
|
||||
Z0rа‚°° 0Аp,L
|
||||
|
||||
@ХWTЄ
|
||||
mќ&p РV?„=B@Ђ“p ј T`б\0«* ‚nЂMа
|
||||
4я@"4ЫуSX
|
||||
\ЂЄ0C +t:
|
||||
fP
|
||||
S@ +
|
||||
џа
|
||||
CЂЮ@У`4р4@b`™°
|
||||
ЭЂ<а У0ґЂ'
|
||||
€А<°mяа €Р”р Ѓ~ґp
|
||||
ѓmА @ Ч`иmо;uP…Љ/р UА
|
||||
УР
|
||||
Ю0°йЌНэЕiPvJЂЂ
|
||||
r@‹аn
|
||||
‘Рј@dА" ёЂч°т q`
|
||||
ЌаҐ@аr ЕP_ђё`T п\“°Ђ iђяђЂ
|
||||
ШђШР Ч7иЂ
|
||||
ЃЂЫ РЩ
|
||||
»Ђ
|
||||
5Ђ%Р‰Р2
|
||||
>PMЉ` /`
|
||||
MЂ Х0БA0" »аЬ0
|
||||
ђ
|
||||
С‰ы
|
||||
7
|
||||
Ћ< "eЃ
|
||||
’%
|
||||
FuВуПгGђ!EЋ$YТдI”)U®dЩТеK1eО¤щ±]p-ui"W‚+!љ!ЙV€I4Оpѓз†‘4°«ѓжЃ0fЩ‹agК—
|
||||
|
||||
Ш (–Е%]ЪфiФ©KѓЈ;Б2„8ит*я8‚ЊE€Б€‡ЖI$
|
||||
ђаI6адЉ.#
|
||||
rў b t`x@8bИД‚ё
|
||||
,'‚щ ‘ 2Ћ8ЋшДЊ?к8њx$s¦[б!•uVZ»‚„3ШD
|
||||
f¬`c’>6Ў *P&ў CУ,<h ЏU0€†•#X@‚8т
|
||||
aБ4ЪP…‘вЙў\`ёбґШѓ‚oVQd!\(‚Mк DВ±'Џ$м@f{pЙdюE]Ћ;ц8%jґ
|
||||
,thЈ :¤1 ‰h@
|
||||
TђАЄЃ [bўXА3¤рA‘h8' 8pb–V !5ВЕpЬsW2‰#DЙ!оёжI:ИBЃОiА‰KМС Ѓe”Ђ!"Ю°@b0]”
|
||||
Jс
|
||||
0 ѓ A$P†ЊSўЇtВ
|
||||
АЂHЃHD АB/Ў ЃI
|
||||
р
|
||||
`CтE5ААo«Б<°‰RШа
|
||||
FиВ5мАЉY(‚I(h,d C
|
||||
@<ёаШ‚Ѓ
|
||||
Ё‘lвПt0n8ЋАЎг€¦#5@Ає–^@ЂХЎґ
|
||||
Ю0€Oґb¦±Зh
|
||||
ЊгPрG9<
|
||||
xрA(€!oP
|
||||
0BЁ°``
|
||||
|
||||
"дЃ
|
||||
KИсё
|
||||
ДЃ‹T@b4Д§iЉp…*њ ’xДDPѓ
|
||||
T€ЂHШBED‹0°H[а
|
||||
Ђ-°Ђ,ИЂL
|
||||
@B
|
||||
Xqx(Ё:аѓ_hѓIшЂ)Ё‘њJ“
|
||||
ё„°ЂZX‚Г¬MЏHLFЂ…8
|
||||
ИЃaРЂOИN †
|
||||
|
||||
€GШ „:
|
||||
иD8ѓ(`Ђ)Ё…†X…
|
||||
Ђ(ЂЂpp„Ih‡`h
|
||||
3@Ђ„кд…Ђ‚€‚ЃeРЂ/
|
||||
XX„&7.@…яАѓ_° P„&@Ѓ# ЂBёЂ
|
||||
а„+¬F€ѓ`шѓU€ѓз€f6@
|
||||
‚=Ёvё‚!ЁFX`‡'ЂЂђ’5Ѓ А
|
||||
8ѓjИЃ?„4 "шЂhшё°Ђ`8ZЂёЃ@Ђq`ЃшЂ4X…L †7Илб‹Ђ‚-Р
|
||||
Ѓ\а5 °^
|
||||
Ш†{ YP*Ќ«9
|
||||
°v
|
||||
°ЂBXz
|
||||
ЂЂ+ s?X‚D@I ЂЂ:(8 WxЂ&hЃp
|
||||
€
|
||||
|
||||
ђ
|
||||
Ђ†‚!oш‚ P
|
||||
K&¤›Д+Aт}5j №Wя6rмис#Иђ"G’,iт$К”*WІlйт%М'Ђp@LЃџ%PnрРcќИ±°"Ј‘fLђpЉ‚OЭ › ,ћ!qzєЅБG*¦ШђИ,kц,ЪґjЧІmrМ¦q:КL+РCЏџиDЬшЇP
|
||||
ЌТy2
|
||||
ґЅ€%«Ґѓ!т©`уА‰ &«к-Rѓ‚WFЊPБџЁQGгХў‰1„4а„J8!…@С
|
||||
Р$`@
|
||||
ў/ s|СВ&њЂ5њG*4<б9Р±FkЬІ$kTрД7%h0ЖљDc‹В‚8еl(µЪєќ:$p‘ьАKл¬sЕё¤бЂpИўF#|@…»Ир§>Б
|
||||
|
||||
xs€npЎЗ.0dЎИ|А>GLа‡:sиІЖтВМJД“
|
||||
0\ЃО€ D?5ґђЕлzь1И&бЖ*Ф,‘
|
||||
7\Т‰лtRяВ2f(І^4rЉVxбG§!$Г…ЌЂрBЉФ
|
||||
_‡м
|
||||
‘zмСJИQKІ-A€ІBЬC,•ь@ЖЫ@В‹ ЎЊФЊ
|
||||
Мd^мhЈЌiTcИш4sF$~Ф’
|
||||
DЎ;СЂє«їѕwY\@ЊQK%EьO-2м’яB:( >ћР€g¤аBH@'X
|
||||
%А
|
||||
Р
|
||||
+\в
|
||||
@(B(Е)¦eA€Б5F1Ѓrђ n@E"ш
|
||||
ж@aд""РГ'2P…„
|
||||
‹ђ4ђИ]тІ$H З$0aD@
|
||||
‹PЂ …hA)<0[И
|
||||
|
||||
#
|
||||
ALHб P&.0ѓФ` Уђ
|
||||
ўД @JщѓwАЂ@П‘тТ
|
||||
p†!ЂK4®(@
|
||||
"РHH"…ёE~
|
||||
pў / YјЂ°ђБ%.Ѓ‡ёў$Ѕк!kA‚А‚hА:XC3
|
||||
1cH"±яXД¦q‚мѓ®Р>†РЂ-ёЃ:ђ
|
||||
%шF
|
||||
J<б W
|
||||
ЬвQ`ЂђаЂRвѓkа‡.\0
|
||||
иaнр‡АЃPАЅћљ&Ж1
|
||||
Њ1XnsxѓЊ*DгьрЂоPЏїzа 'ЅБ((°Џ—№ahжPЫ3dp%®±Ѓ;дѓCЁ„: б…B`b§ё‚1ј
|
||||
‚"Ша/Ђ?Ш0Mюіє’1‚X
|
||||
ИЗ
|
||||
"`qш/вр‡‚р
|
||||
vЊ"(±ю6 фя
|
||||
Gґ
|
||||
ш ;и„$@oL#5АP np€%xаЇ B¶Щ°‡'иБi(A жя
|
||||
ДЈµhA2>A‡є“ћ;Z(Бё
|
||||
ЊАMX†!ЖЃTa`¶Qq( z8"Ѓ
|
||||
5Фc Н ГpѓuА"KЂЖ2(Рю< WђDЄ
|
||||
lГNxВ¬
|
||||
†a[ШЂтЃxВ HЃP@
|
||||
В иЂ#ж"ZшU pЂ"ЬЃ,
|
||||
јCLѓ B7@D<@Ш
|
||||
0>d@;иў8–…muВ,°3PB4ёЂаБ$шГЊ8¬Ѓ@ЂґяАмђд@
|
||||
„
|
||||
ђA!d
|
||||
ИL
|
||||
В,Ѓм
|
||||
¬?¬Ѓ6ИA!H‚ђ@
|
||||
Ф‚,Ь‚d@=$ЁЉ–А(ФB xЂ*ш@;Б%ЬЂl@Ф
|
||||
ъ;
|
||||
јАрЃ°ѓ,р ,BHВИ
|
||||
dЂ<
|
||||
ь©ЉюБp4$Г 8ЂГ8@@ЬЃT‚ЬВ
|
||||
|
Before Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 8.1 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 7.5 KiB |
Before Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 46 KiB |
Before Width: | Height: | Size: 8.9 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 536 B |
Before Width: | Height: | Size: 3.5 KiB |
Before Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 57 KiB |
Before Width: | Height: | Size: 33 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB |
@ -1 +0,0 @@
|
||||
<script>top.location.href='/index.php';</script>
|
Before Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 6.7 KiB |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 34 KiB |
@ -1,241 +0,0 @@
|
||||
GIF89a`р
|
||||
Т аl0 „ч]RГьБB(pИ
|
||||
|
||||
ШЂци#R;ЎKЅ ’›/РAЦ0(АCЬ"Ѓt°
|
||||
М‚‹ @ь
|
||||
SPя@
|
||||
4°CБ† Д1K,‘А#
|
||||
ЬД#0°
|
||||
ЊL“AєHаB9чЬАE5zи`E%E<pЃЊд0й
|
||||
”A7Ь!Е=ОР’Бµ
|
||||
р
|
||||
<0З
|
||||
¶„ў
|
||||
,Ы\АMшArX
|
||||
¶ШДИЃ
|
||||
н№pД)4АXLb† 2аЂT,ЃС`D=ЊАЂY\a@@КАИ^f%"@@<`o€BSEк`FPб €А$!7ЂЃґа!Аа
|
||||
hЂ X@
|
||||
DaСђѓ
|
||||
Ђ
|
||||
e`$0…< @†и°
|
||||
&$
|
||||
™6CX…,ђpF`Ђ
|
||||
‚
|
||||
КВКИr@…^pc.Ё‚€aЂxГЖИЄbkт‡L$AЊ(B,,@„=AёЕ
|
||||
0 ‚4a
|
||||
c`” ;!
|
||||
0@МAЉ8@0ѓl
|
||||
"ш|M2‰?
|
||||
3,@Њ`АP…7n` иl!„И Ђ ®0Я‹D АpЌ*HбqЁГ: ЉS8.€БцAEАб`А,ђ!Ф#[h@
|
||||
жШЃа„а‡9 ГYNґE@
|
||||
h(5юрђЎ20‡ўw-‘$°‚А p
|
||||
ST"°xФC‰с[PѓVЂXр‡8Аq€А0<@0
|
||||
Y
|
||||
4Ѓ—ЏzA
|
||||
°Bњ`gPњ3Bp3<АB ЅX† Цp‰@°Ў|°Ђ
|
||||
ђ €(иВUШ‡~0Ѓ0вњpЃ
|
||||
†`Ђ=Ша„ё„ФпIА aЯИz,±n$Г?pѓ
|
||||
АаЂѕ°”c‘@ВаҐ>ѓ
|
||||
ґ#"ИЂ$шa€м (& l xЃя
|
||||
ЉРсЩњЖАРЂ,шв
|
||||
ЮЂ@
|
||||
"ј0ыа Д
|
||||
1`
|
||||
0иqL
|
||||
р
|
||||
;PO@
|
||||
mа р < гаЌЂ “SА6хїpkрк°„нvѓPЏр
|
||||
…P—PM
|
||||
Ђ!А‡м6
|
||||
г
|
||||
<аV г№@hЬрј°‡®ёkЙАJ`
|
||||
И`u0'АH
|
||||
.ђа_рк
|
||||
6
|
||||
џяp ® E
|
||||
-
|
||||
„ GаX°ЎА‚РО
|
||||
@@™he04 30ьPЈ%LњБ
|
||||
o`
|
||||
Ача
|
||||
– LР°М`“PWрЇ@1¦Ріfђuђc с
|
||||
°
|
||||
Л@
|
||||
uяЂЩ”`К0@@јj@-0Q
|
||||
Ђ
|
||||
ЛР0pЉћ@/ Ђ¦
|
||||
jР Q€Б00P К@wг‡@p
|
||||
S саP@Lj&рCа `%P
|
||||
5P
|
||||
*0ђ
|
||||
bP“яp’рҐтЕ«ѓ
|
||||
і°
|
||||
ц
|
||||
kЖ.
|
||||
Ћ
|
||||
« «pћ``а@0дц@7Ђf°
|
||||
|
||||
сp6
|
||||
пєX
|
||||
Yа
|
||||
F0 p_@Pcђі'ЫPAА
|
||||
с
|
||||
F
|
||||
Q°©Я
|
||||
·"р4р‹U%
|
||||
зЂHЂp
|
||||
Lp3p гP ґбЖ
|
||||
¬
|
||||
Э[°рц
|
||||
р
|
||||
|
||||
л
|
||||
ё@ЯKR` 304@HР
|
||||
Sт
|
||||
,O™°Qаи.Ђ
|
||||
A П ї
|
||||
7 ¶0 Ў@°
|
||||
°
|
||||
|
||||
@
|
||||
°Ар-`JР
|
||||
"ЊА™АP›ЬKў`Hђ %H
|
||||
"рё ; `ъјHSАСцfЂ(рp¶А8я‚
|
||||
“Аc`yђ
|
||||
Z0rа‚°° 0Аp,L
|
||||
|
||||
@ХWTЄ
|
||||
mќ&p РV?„=B@Ђ“p ј T`б\0«* ‚nЂMа
|
||||
4я@"4ЫуSX
|
||||
\ЂЄ0C +t:
|
||||
fP
|
||||
S@ +
|
||||
џа
|
||||
CЂЮ@У`4р4@b`™°
|
||||
ЭЂ<а У0ґЂ'
|
||||
€А<°mяа €Р”р Ѓ~ґp
|
||||
ѓmА @ Ч`иmо;uP…Љ/р UА
|
||||
УР
|
||||
Ю0°йЌНэЕiPvJЂЂ
|
||||
r@‹аn
|
||||
‘Рј@dА" ёЂч°т q`
|
||||
ЌаҐ@аr ЕP_ђё`T п\“°Ђ iђяђЂ
|
||||
ШђШР Ч7иЂ
|
||||
ЃЂЫ РЩ
|
||||
»Ђ
|
||||
5Ђ%Р‰Р2
|
||||
>PMЉ` /`
|
||||
MЂ Х0БA0" »аЬ0
|
||||
ђ
|
||||
С‰ы
|
||||
7
|
||||
Ћ< "eЃ
|
||||
’%
|
||||
FuВуПгGђ!EЋ$YТдI”)U®dЩТеK1eО¤щ±]p-ui"W‚+!љ!ЙV€I4Оpѓз†‘4°«ѓжЃ0fЩ‹agК—
|
||||
|
||||
Ш (–Е%]ЪфiФ©KѓЈ;Б2„8ит*я8‚ЊE€Б€‡ЖI$
|
||||
ђаI6адЉ.#
|
||||
rў b t`x@8bИД‚ё
|
||||
,'‚щ ‘ 2Ћ8ЋшДЊ?к8њx$s¦[б!•uVZ»‚„3ШD
|
||||
f¬`c’>6Ў *P&ў CУ,<h ЏU0€†•#X@‚8т
|
||||
aБ4ЪP…‘вЙў\`ёбґШѓ‚oVQd!\(‚Mк DВ±'Џ$м@f{pЙdюE]Ћ;ц8%jґ
|
||||
,thЈ :¤1 ‰h@
|
||||
TђАЄЃ [bўXА3¤рA‘h8' 8pb–V !5ВЕpЬsW2‰#DЙ!оёжI:ИBЃОiА‰KМС Ѓe”Ђ!"Ю°@b0]”
|
||||
Jс
|
||||
0 ѓ A$P†ЊSўЇtВ
|
||||
АЂHЃHD АB/Ў ЃI
|
||||
р
|
||||
`CтE5ААo«Б<°‰RШа
|
||||
FиВ5мАЉY(‚I(h,d C
|
||||
@<ёаШ‚Ѓ
|
||||
Ё‘lвПt0n8ЋАЎг€¦#5@Ає–^@ЂХЎґ
|
||||
Ю0€Oґb¦±Зh
|
||||
ЊгPрG9<
|
||||
xрA(€!oP
|
||||
0BЁ°``
|
||||
|
||||
"дЃ
|
||||
KИсё
|
||||
ДЃ‹T@b4Д§iЉp…*њ ’xДDPѓ
|
||||
T€ЂHШBED‹0°H[а
|
||||
Ђ-°Ђ,ИЂL
|
||||
@B
|
||||
Xqx(Ё:аѓ_hѓIшЂ)Ё‘њJ“
|
||||
ё„°ЂZX‚Г¬MЏHLFЂ…8
|
||||
ИЃaРЂOИN †
|
||||
|
||||
€GШ „:
|
||||
иD8ѓ(`Ђ)Ё…†X…
|
||||
Ђ(ЂЂpp„Ih‡`h
|
||||
3@Ђ„кд…Ђ‚€‚ЃeРЂ/
|
||||
XX„&7.@…яАѓ_° P„&@Ѓ# ЂBёЂ
|
||||
а„+¬F€ѓ`шѓU€ѓз€f6@
|
||||
‚=Ёvё‚!ЁFX`‡'ЂЂђ’5Ѓ А
|
||||
8ѓjИЃ?„4 "шЂhшё°Ђ`8ZЂёЃ@Ђq`ЃшЂ4X…L †7Илб‹Ђ |