-
Notifications
You must be signed in to change notification settings - Fork 0
/
TEST.user.js
1598 lines (1545 loc) · 99.2 KB
/
TEST.user.js
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
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// ==UserScript==
// @name VK
// @namespace https://github.com/891-2/vk-old-rad/
// @version 1.0.2
// @description Вернём старый дизайн вместе
// @author RAM
// @match *://*.vk.com/*
// @match *://*.vk.ru/*
// @exclude *://m.vk.com/*
// @exclude https://vk.com/video_ext.php*
// @exclude https://vk.com/widget_comments*
// @icon https://www.google.com/s2/favicons?domain=vk.com
// @grant GM_registerMenuCommand
// @grant GM_notification
// @grant GM_webRequest
// @grant GM_setValue
// @grant GM_getValue
// @grant GM_xmlhttpRequest
// @grant GM_getResourceText
// @grant GM_addStyle
// @connect api.vk.com
// @connect vk.com
// @connect raw.githubusercontent.com
// @connect github.com
// @resource css https://github.com/891-2/vk-old-rad/raw/main/style.css
// @updateURL https://github.com/DinacoStudio/vk-old-rad/raw/main/pre-release.user.js
// @license MIT
// ==/UserScript==
/* КЛАСС ТАЙМЕРА */
/****************/
class Timer {
Start() {
this.start = new Date()
}
End() {
this.end = Math.ceil((new Date() - this.start))
}
}
class Interval{
set(fn,time){
if (!this.timer){
this.timer = setInterval(fn,time)
}
}
stop(){
if (this.timer){
this.timer = clearInterval(this.timer)
}
}
}
class Functions{
findElem(elem) {
if (elem) {
let mas = document.querySelectorAll(elem);
let temp = document.querySelector(elem);
if (mas.length > 1) {
if (mas !== undefined) {
return mas;
}
} else {
if (temp) {
return temp;
}
}
return false
}
}
API_INIT(token){
this.access_token = token
this.apiver = 5.131
}
API_POST(method,params) {
return new Promise((resolve, reject) => {
//console.log(`https://api.vk.com/method/${method}?${params}&access_token=${this.settings.access_token}&v=${this.settings.apiver}`)
GM_xmlhttpRequest({
method: "POST",
url: `https://api.vk.com/method/${method}?${params}&access_token=${this.access_token}&v=${this.apiver}`,
synchronous: true,
nocache:true ,
headers: {
"Content-Type": "text/plain",
"Content-Length": "0",
"Cache-Control":"no-cache"
},
onload: function(response) {
resolve(JSON.parse(response.responseText).response);
},
onerror: function(error) {
reject(error);
}
});
})
}
POST(url) {
return new Promise((resolve, reject) => {
GM_xmlhttpRequest({
method: "POST",
url: url,
synchronous: true,
nocache:true ,
headers: {
"Content-Type": "text/plain",
"Content-Length": "0",
"Cache-Control":"no-cache"
},
onload: function(response) {
resolve(response.responseText);
},
onerror: function(error) {
reject(error);
}
});
})
}
GET(url) {
return new Promise((resolve, reject) => {
GM_xmlhttpRequest({
method: "GET",
url: url,
synchronous: true,
nocache:true ,
headers: {
"Content-Type": "text/plain",
"Content-Length": "0",
"Cache-Control":"no-cache"
},
onload: function(response) {
resolve(response.responseText);
},
onerror: function(error) {
reject(error);
}
});
})
}
}
/****************/
/* КЛАСС ТАЙМЕРА */
let ads_filter = "[data-ad-view],div[data-ad-disabled-stat-impression],.wall_module .post:has(.wall_marked_as_ads),div#friends_right_blocks_root,div#apps_featured_banner,section.AppsCatalogSectionPromoBannersPair"
let Functions_CLASS = new Functions()
/* ТАЙМЕР ЗАГРУЗКИ СТРАНИЦЫ */
/***************************/
let load = new Timer();
load.Start();
/***************************/
/* ТАЙМЕР ЗАГРУЗКИ СТРАНИЦЫ */
class RAM {
Init() {
/* ЗАГРУЗКА СТРАНИЦЫ */
/********************/
window.onload = () => {
/* НАСТРОЙКИ */
/************/
try {
if (this.IsPageLoaded()) {
this.default_settings = {
adblock: true,
dont_write: false,
dont_read: false,
wait_token: true,
access_token: "",
apiver: 5.131
}
this.settings = {}
GM_getValue("Default") ? this.local_settings = JSON.parse(GM_getValue("Default")) : this.updateVAR();
/************/
/* НАСТРОЙКИ */
load.End()
this.Con(`[Event] Инициализация прошла успешно за ${load.end} ms`)
load = null
this.BlockAdsInit()
this.CssAdd()
this.FixMenu()
Functions_CLASS.API_INIT(this.settings.access_token);
this.CheckToken();
this.TestWall();
this.Timer_Check = new Interval().set(this.TestCheck,100);
this.Tests();
}
} catch (err) {
console.warn(err.stack)
}
}
/**********************/
/* ЗАГРУЗКА СТРАНИЦЫ */
}
TestCheck(){
//onsole.log('test')
const paths = ["dev","apps?act=manage","editapp?","stats?","login"];
const expaths = ["bug"];
const strs = window.location.href.split('/');
//console.log(strs)
/*if (paths.some(x => strs.some(t => t.includes(x)))&&!expaths.some(x => strs.some(t => t.includes(x)))){
document.querySelector('div#side_bar').style.setProperty('display', 'none', 'important');
document.querySelector('div#page_body').style.setProperty('width', '960px', 'important');
}else{
document.querySelector('div#side_bar').style.setProperty('display', 'block', 'important');
document.querySelector('div#page_body').style.setProperty('width', '795px', 'important');
}*/
var a = true, b = false;
switch(true) {
case paths.some(x => strs.some(t => t.includes(x))):
document.querySelector('div#side_bar')?.style.setProperty('display', 'none', 'important');
document.querySelector('div#page_body')?.style.setProperty('width', '960px', 'important');
document.querySelector('.BtPage.redesign_web .wide_column_right .wide_column_wrap')?.style.setProperty('margin-left', 'unset', 'important');
break;
case !paths.some(x => strs.some(t => t.includes(x)))&&!expaths.some(x => strs.some(t => t.includes(x))):
document.querySelector('div#side_bar')?.style.setProperty('display', 'block', 'important');
document.querySelector('div#page_body')?.style.setProperty('width', '795px', 'important');
document.querySelector('.BtPage.redesign_web .wide_column_right .wide_column_wrap')?.style.setProperty('margin-left', 'unset', 'important');
break;
case expaths.some(x => strs.some(t => t.includes(x))):
document.querySelector('div#side_bar')?.style.setProperty('display', 'none', 'important');
document.querySelector('.BtPage.redesign_web .wide_column_right .wide_column_wrap')?.style.setProperty('margin-left', 'calc(230px + var(--page-block-offset, 15px))', 'important');
document.querySelector('div#page_body')?.style.setProperty('width', '1215px', 'important');
document.querySelector('body')?.style.setProperty('--layout-width', '1265px', 'important');
break;
}
}
CheckToken() {
/* ПРОВЕРКА НАЛИЧИЯ ТОКЕНА И ПОЛУЧЕНИЕ ЕГО ПРИ НЕОБХОДИМОСТИ */
/************************************************************/
this.updateVAR();
let token = this.settings.access_token
let wait = this.settings.wait_token
// console.log(this.settings)
if (!token && wait && window.href !== "https://oauth.vk.com/authorize?client_id=2685278&scope=1073737727&redirect_uri=https://oauth.vk.com/blank.html&display=page&response_type=token&revoke=1" && window.location.href.indexOf("https://oauth.vk.com/blank.html") == -1) {
location.href = 'https://oauth.vk.com/authorize?client_id=2685278&scope=1073737727&redirect_uri=https://oauth.vk.com/blank.html&display=page&response_type=token&revoke=1'
}
while (Functions_CLASS.findElem('.oauth_bottom_wrap')) {
Functions_CLASS.findElem('.button_indent').click();
break;
}
let tmp0 = location.href?.split("access_token=")[1]?.split("&")[0]
if (wait && tmp0) {
console.log("tmp0"+tmp0)
this.setVAR("access_token", tmp0)
this.setVAR('wait_token', false)
GM_setValue("Default", JSON.stringify(this.settings));
location.href = "https://vk.com/feed"
}
this.Con(`[Function] Токен загружен успешно`)
/**************************************************************/
/* ПРОВЕРКА НАЛИЧИЯ ТОКЕНА И ПОЛУЧЕНИЕ ЕГО ПРИ НЕОБХОДИМОСТИ */
}
async TestWall(){
let vk_page_api,vk_page_photos,vk_page_photos_id,vk_page_followers
this.TestWall_Timer = new Interval().set(()=>{
if (this.IsOwnerWall()&&Functions_CLASS.findElem('.ProfileWrapper__root.vkui__root.vkui__root--embedded.vkui--sizeX-regular')?.style?.display!=="none"){
if (Functions_CLASS.findElem('.ProfileWrapper__root.vkui__root.vkui__root--embedded.vkui--sizeX-regular')){Functions_CLASS.findElem('.ProfileWrapper__root.vkui__root.vkui__root--embedded.vkui--sizeX-regular').style.display = "none"}
if (Functions_CLASS.findElem('.ScrollStickyWrapper')){Functions_CLASS.findElem('.ScrollStickyWrapper').style.display = "none"}
Functions_CLASS.API_POST("users.getFollowers",`user_id=${vk.id}&order=hints&fields=online,photo_200_orig`).then(k=>{
Functions_CLASS.API_POST("users.get",`user_ids=${vk.id}&fields=activities,about,books,bdate,career,photo_200,connections,contacts,counters,country,domain,education,exports,followers_count,games,has_photo,home_town,interests,movies,music,occupation,online,personal,quotes,relation,schools,sex,status`).then(val=>{
if (!val) window.location.reload()
vk_page_api = val[0]
Functions_CLASS.API_POST("photos.get",`owner_id=${vk.id}&album_id=profile&rev=0&extended=0&photo_sizes=0`).then(val2=>{
vk_page_photos = val2.items[val2.items.length-1]
vk_page_photos_id = vk_page_photos.id
vk_page_followers = k
if (!document.querySelector('div#profile')){ document.querySelector('.ProfileWrapper').appendChild(this.create("div",{},{innerHTML:`<div id="profile" class="profile_content">
<div class="wide_column_right">
<div class="narrow_column_wrap">
<div class="narrow_column" id="narrow_column" style="margin-top: 0px;">
<div class="page_block page_photo ProfileActions">
<div class="owner_photo_wrap actions_with_effects" id="owner_photo_wrap">
<div class="owner_photo_top_bubble_wrap">
<div class="owner_photo_top_bubble">
<div class="ui_thumb_x_button" data-title="Удалить фотографию"
onmouseover="showTitle(this);" tabindex="0" role="button" aria-label="Удалить фотографию">
<div class="ui_thumb_x"></div>
</div>
</div>
</div>
<div class="page_avatar_wrap" id="page_avatar_wrap">
<aside aria-label="Фотография">
<div id="page_avatar" class="page_avatar"><a id="profile_photo_link"
href="https://vk.com/photo${vk.id}_${vk_page_photos_id}"><img
class="page_avatar_img"
src="${vk_page_api.photo_200}"></a>
</div>
</aside>
</div>
<div class="owner_photo_bubble_wrap">
<div class="owner_photo_bubble">
<div class="owner_photo_bubble_action owner_photo_bubble_action_update"
data-task-click="Page/owner_new_photo"
data-options="{"useNewForm":true,"ownerId":${vk.id}}" tabindex="0" role="button">
<span class="owner_photo_bubble_action_in">Обновить фотографию</span>
</div>
<div class="owner_photo_bubble_action owner_photo_bubble_action_crop"
tabindex="0" role="button">
<span class="owner_photo_bubble_action_in">Изменить миниатюру</span>
</div>
<div class="owner_photo_bubble_action owner_photo_bubble_action_effects"
onclick="Page.ownerPhotoEffects('${vk.id}_${vk_page_photos_id}', ${vk.id})" tabindex="0" role="button">
<span class="owner_photo_bubble_action_in">Добавить эффекты</span>
</div>
</div>
</div>
</div>
<aside aria-label="Действия со страницей">
<div class="profile_actions">
<div class="page_actions_wide clear_fix no_actions edit">
<div class="page_action_left fl_l">
<a class="FlatButton FlatButton--secondary FlatButton--size-m FlatButton--wide" draggable="false"
id="profile_edit_act" href="https://vk.com/edit">
<span class="FlatButton__in">
<span class="FlatButton__content">Редактировать</span>
</span>
</a>
</div>
</div>
<div class="page_actions_expanded _page_actions_container">
<a href="https://vk.com/memories" tabindex="0" role="button" class="PageActionCell">
<div class="PageActionCell__icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg"
width="24" height="24" fill="currentColor" viewBox="0 0 24 24">
<path fill-rule="evenodd"
d="M12 7.1a.9.9 0 0 1 .9.9v3.73l2.24 2.23a.9.9 0 0 1-1.28 1.28l-2.5-2.5a.9.9 0 0 1-.26-.64V8a.9.9 0 0 1 .9-.9Z"
clip-rule="evenodd"></path>
<path
d="M19 5a9.87 9.87 0 0 0-7-2.9 9.87 9.87 0 0 0-7.1 3V3a.9.9 0 0 0-1.8 0v4a.9.9 0 0 0 .9.9h4a.9.9 0 0 0 0-1.8H6.45A8.07 8.07 0 0 1 12 3.9c2.24 0 4.26.9 5.73 2.37A8.07 8.07 0 0 1 20.1 12a8.07 8.07 0 0 1-2.37 5.73A8.07 8.07 0 0 1 12 20.1a8.06 8.06 0 0 1-5.2-1.9.9.9 0 1 0-1.16 1.39A9.86 9.86 0 0 0 12 21.9a9.87 9.87 0 0 0 7-2.9 9.87 9.87 0 0 0 2.9-7A9.87 9.87 0 0 0 19 5Z">
</path>
</svg></div>
<span class="PageActionCell__in">
<span class="PageActionCell__label">Воспоминания</span>
</span>
</a><a data-task-click="ProfileAction/show_questions" tabindex="0" role="button"
class="PageActionCell MyQuestionsButton">
<div class="PageActionCell__icon" aria-hidden="true"><svg fill="none" height="24" viewBox="0 0 24 24"
width="24" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd"
d="M3.93 11.7c0-3.63 3.49-6.8 8.09-6.8s8.08 3.17 8.08 6.8c0 3.64-3.48 6.81-8.08 6.81a9.34 9.34 0 0 1-3.29-.58.9.9 0 0 0-1 .26c-.67.8-1.8 1.35-3.51 1.55.2-.44.4-.9.57-1.37.3-.78.53-1.66.53-2.56a.9.9 0 0 0-.18-.53 5.95 5.95 0 0 1-1.2-3.57zm8.09-8.6c-5.33 0-9.89 3.73-9.89 8.6 0 1.62.5 3.12 1.38 4.39a6.22 6.22 0 0 1-.4 1.65c-.2.53-.43 1.04-.67 1.55l-.23.52c-.39.86.28 1.83 1.21 1.79 2.2-.09 4-.64 5.25-1.8 1.05.34 2.17.51 3.35.51 5.32 0 9.88-3.73 9.88-8.6 0-4.88-4.56-8.61-9.88-8.61zM12 8.9a.6.6 0 0 0-.57.4.9.9 0 1 1-1.7-.6 2.4 2.4 0 0 1 4.67.8c0 1.1-.53 1.73-.92 2.17l-.01.02c-.4.44-.54.6-.58.91a.9.9 0 0 1-1.78-.2 3.2 3.2 0 0 1 1.02-1.92c.32-.36.47-.57.47-.98a.6.6 0 0 0-.6-.6zm1 6.6a1 1 0 1 1-2 0 1 1 0 0 1 2 0z"
fill="currentColor" fill-rule="evenodd"></path>
</svg></div>
<span class="PageActionCell__in">
<span class="PageActionCell__label">Мои вопросы</span>
</span>
</a><a href="${Functions_CLASS.findElem("li#l_pr>a").href}?w=stories" tabindex="0" role="button" class="PageActionCell">
<div class="PageActionCell__icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg"
width="24" height="24" fill="currentColor" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M9.1 13.4a.9.9 0 0 1 .9-.9h4a.9.9 0 1 1 0 1.8h-4a.9.9 0 0 1-.9-.9Z"
clip-rule="evenodd"></path>
<path fill-rule="evenodd"
d="M5 3.1A2.9 2.9 0 0 0 2.1 6v2c0 1.11.93 1.9 2 1.9V18A2.9 2.9 0 0 0 7 20.9h10a2.9 2.9 0 0 0 2.9-2.9V9.9c1.07 0 2-.79 2-1.9V6A2.9 2.9 0 0 0 19 3.1H5Zm0 1.8A1.1 1.1 0 0 0 3.9 6v2a.1.1 0 0 0 .1.1h16a.1.1 0 0 0 .1-.1V6A1.1 1.1 0 0 0 19 4.9H5Zm2 14.2A1.1 1.1 0 0 1 5.9 18V9.9h12.2V18a1.1 1.1 0 0 1-1.1 1.1H7Z"
clip-rule="evenodd"></path>
<path fill-rule="evenodd" d="M10 12.5a.9.9 0 1 0 0 1.8h4a.9.9 0 0 0 0-1.8h-4Z"
clip-rule="evenodd"></path>
</svg></div>
<span class="PageActionCell__in">
<span class="PageActionCell__label">Архив историй</span>
</span>
</a><a data-task-click="ProfileAction/money_transfer_box" data-prevent="1" data-from="own_profile"
tabindex="0" role="button" class="PageActionCell">
<div class="PageActionCell__icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg"
width="24" height="24" fill="currentColor" viewBox="0 0 24 24">
<path
d="M17.8 3.1a4.5 4.5 0 0 1 2.35.44c.56.3 1 .75 1.31 1.31.3.57.42 1.11.44 2.1V12a.9.9 0 0 1-1.8.11V8.9H3.9v5.9c0 .87.06 1.18.23 1.5.13.25.32.44.57.57.3.16.58.22 1.31.23H18.83l-1.47-1.46a.9.9 0 0 1-.08-1.18l.08-.1a.9.9 0 0 1 1.18-.08l.1.08 3 3a.9.9 0 0 1 .08 1.18l-.08.1-3 3a.9.9 0 0 1-1.36-1.18l.08-.1 1.47-1.46H6.2c-1.07 0-1.65-.1-2.21-.37l-.14-.07a3.17 3.17 0 0 1-1.32-1.31c-.3-.57-.42-1.11-.44-2.1V7.21c0-1.16.11-1.74.44-2.35a3.17 3.17 0 0 1 1.31-1.32 4.2 4.2 0 0 1 2.1-.44H17.8Zm0 1.8H6.2c-.88 0-1.18.06-1.5.23-.25.13-.44.32-.57.57-.16.3-.22.58-.23 1.31v.09h16.2v-.09c-.01-.73-.07-1.02-.23-1.3a1.37 1.37 0 0 0-.57-.58c-.3-.16-.58-.22-1.31-.23h-.2Z">
</path>
</svg></div>
<span class="PageActionCell__in">
<span class="PageActionCell__label">Денежные переводы</span>
</span>
</a>
</div>
<div class="PageActionsClosedProfile">
<div class="PageActionsClosedProfile__icon">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor"
viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M12 13a1 1 0 0 1 1 1v2a1 1 0 1 1-2 0v-2a1 1 0 0 1 1-1Z"
clip-rule="evenodd"></path>
<path fill-rule="evenodd"
d="M18.77 8.53a4.53 4.53 0 0 0-1.87-.4V7a4.9 4.9 0 1 0-9.8 0v1.12c-.64.03-1.3.11-1.87.4a3.9 3.9 0 0 0-1.7 1.7c-.24.48-.34.98-.39 1.54-.04.53-.04 1.2-.04 2v2.48c0 .8 0 1.47.04 2 .05.56.15 1.06.38 1.53a3.9 3.9 0 0 0 1.7 1.7c.48.24.98.34 1.54.39.53.04 1.2.04 2 .04h6.48c.8 0 1.47 0 2-.04a3.98 3.98 0 0 0 1.53-.38 3.9 3.9 0 0 0 1.7-1.71c.24-.47.34-.97.39-1.53.04-.53.04-1.2.04-2v-2.48c0-.8 0-1.47-.04-2a3.98 3.98 0 0 0-.39-1.53 3.9 3.9 0 0 0-1.7-1.7ZM6.9 9.93c-.44.04-.68.11-.85.2a2.1 2.1 0 0 0-.92.92c-.09.17-.15.4-.2.85-.03.46-.03 1.05-.03 1.9v2.4c0 .85 0 1.44.04 1.9.03.44.1.68.19.85a2.1 2.1 0 0 0 .92.92c.17.09.4.16.85.2.46.03 1.05.03 1.9.03h6.4c.86 0 1.44 0 1.9-.04.44-.03.68-.1.85-.19a2.1 2.1 0 0 0 .92-.92c.09-.17.16-.4.2-.85.03-.46.03-1.05.03-1.9v-2.4c0-.86 0-1.44-.04-1.9-.03-.44-.1-.68-.19-.85a2.1 2.1 0 0 0-.92-.92 2.24 2.24 0 0 0-.85-.2c-.46-.03-1.05-.03-1.9-.03H8.8c-.85 0-1.44 0-1.9.04ZM15.1 7a3.1 3.1 0 1 0-6.2 0v1.1h6.2V7Z"
clip-rule="evenodd"></path>
<path fill-rule="evenodd" d="M13 14a1 1 0 1 0-2 0v2a1 1 0 1 0 2 0v-2Z" clip-rule="evenodd"></path>
</svg>
</div>
<div class="PageActionsClosedProfile__content">
<div class="PageActionsClosedProfile__text">Будьте в контакте с теми, кого нет у вас
в друзьях</div>
<a class="PageActionsClosedProfile__action" href="https://vk.com/hack1exe#" onclick="return false;"
data-prevent="true" data-task-click="Profile/closed_banner_open_profile" data-ref="profile"
>Сделать профиль открытым</a>
</div>
</div>
</div>
</aside>
</div>
<div class="page_block profile__moder-actions ProfileActions">
<aside aria-label="Действия со страницей">
<div class="profile_actions">
<div class="page_actions_expanded _page_actions_container">
<a href="https://vk.com/bugs?act=reporter&id=625043763"
onclick="return nav.go(this, event, { noback: true })" tabindex="0" role="button"
class="PageActionCell">
<div class="PageActionCell__icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg"
width="24" height="24" fill="currentColor" viewBox="0 0 24 24">
<path
d="M10.5 10.4a.9.9 0 0 1 .9-.9h1.2a.9.9 0 1 1 0 1.8h-1.2a.9.9 0 0 1-.9-.9Zm0 5a.9.9 0 0 1 .9-.9h1.2a.9.9 0 1 1 0 1.8h-1.2a.9.9 0 0 1-.9-.9Z">
</path>
<path fill-rule="evenodd"
d="M3 8a.9.9 0 0 1 .9-.9h2.27a6.94 6.94 0 0 1 1.77-1.88L6.27 3.54a.9.9 0 0 1 1.28-1.28L9.6 4.33A6.89 6.89 0 0 1 12 3.9c.84 0 1.65.15 2.4.43l2.06-2.07a.9.9 0 0 1 1.28 1.28l-1.68 1.68a6.94 6.94 0 0 1 1.77 1.88h2.27a.9.9 0 1 1 0 1.8h-1.47c.18.6.27 1.24.27 1.9v1.3h3.2a.9.9 0 1 1 0 1.8h-3.2V15a6.9 6.9 0 0 1-.32 2.1h1.52a.9.9 0 1 1 0 1.8h-2.4a6.9 6.9 0 0 1-5.7 3 6.9 6.9 0 0 1-5.7-3H3.9a.9.9 0 0 1 0-1.8h1.52A6.9 6.9 0 0 1 5.1 15v-1.1H1.9a.9.9 0 0 1 0-1.8h3.2v-1.3c0-.66.1-1.3.27-1.9H3.9A.9.9 0 0 1 3 8Zm3.9 2.8a5.1 5.1 0 1 1 10.2 0V15a5.1 5.1 0 0 1-10.2 0v-4.2Z"
clip-rule="evenodd"></path>
<path fill-rule="evenodd"
d="M10.5 10.4a.9.9 0 0 1 .9-.9h1.2a.9.9 0 1 1 0 1.8h-1.2a.9.9 0 0 1-.9-.9Zm0 5a.9.9 0 0 1 .9-.9h1.2a.9.9 0 1 1 0 1.8h-1.2a.9.9 0 0 1-.9-.9Z"
clip-rule="evenodd"></path>
</svg></div>
<span class="PageActionCell__in">
<span class="PageActionCell__label">Профиль тестировщика</span>
</span>
</a>
</div>
</div>
</aside>
</div>
<div class="page_block">
<aside aria-label="Подарки">
<div class="module clear profile_gifts _module" id="profile_gifts">
<div class="header_right_link fl_r"></div>
<a href="https://vk.com/gifts${vk.id}"
class="module_header">
<div class="header_top clear_fix">
<span class="header_label fl_l">Подарки</span>
<span class="header_count fl_l" id="gifts_module_count">9</span>
</div>
</a>
<div class="module_body clear_fix">
<a href="https://vk.com/gifts${vk.id}" class="profile_gifts_cont">
</a>
</div>
</div>
</aside>
</div>
<div class="page_block">
<aside aria-label="Друзья">
<div class="module clear people_module _module" id="profile_friends">
<a href="https://vk.com/feed?section=updates" class="header_right_link fl_r"
onclick="Profile.logFriendsUpdatesClicks && Profile.logFriendsUpdatesClicks(); return nav.go(this, event, {noback: false})">обновления</a>
<a href=""
onclick="return nav.go(this, event, {noback: false})" class="module_header">
<div class="header_top clear_fix">
<span class="header_label fl_l">Друзья</span>
<span class="header_count fl_l">52</span>
</div>
</a>
<div class="module_body clear_fix">
<div class="people_row">
</div>
</div>
</div>
</aside>
<aside aria-label="Друзья онлайн">
<div class="module clear people_module _module" id="profile_friends_online">
<div class="header_right_link fl_r"></div>
<a href=""
onclick="return nav.go(this, event, {noback: false})" class="module_header">
<div class="header_top clear_fix">
<span class="header_label fl_l">Друзья онлайн</span>
<span class="header_count fl_l">4</span>
</div>
</a>
<div class="module_body clear_fix">
<div class="people_row">
</div>
</div>
</div>
</aside>
</div>
<div class="page_block" id="profile_media_narrow_block">
<aside aria-label="Подписки">
<div class="module clear page_list_module _module" id="profile_idols">
<div class="header_right_link fl_r"></div>
<a class="module_header">
<div class="header_top clear_fix">
<span class="header_label fl_l">Подписки</span>
<span class="header_count fl_l">${vk_page_api.counters.groups}</span>
</div>
</a>
<div class="module_body clear_fix">
</div>
</div>
</aside>
<aside aria-label="Видеозаписи">
<div class="module clear video_module _module" id="profile_videos">
<a href="https://vk.com/video/@${vk.id}" class="header_right_link fl_r"></a>
<a href="https://vk.com/video/@${vk.id}" class="module_header">
<div class="header_top clear_fix">
<span class="header_label fl_l">Видеозаписи</span>
<span class="header_count fl_l">315</span>
</div>
</a>
<div class="module_body clear_fix">
<div class="VideoSectionCard video_row fl_l">
</div>
</div>
</div>
</aside>
<aside aria-label="Аудиозаписи">
<div class="module clear audios_module audio_w_covers _module" id="profile_audios">
<div class="header_right_link fl_r"></div>
<a href="https://vk.com/audios625043763" class="module_header">
<div class="header_top clear_fix">
<span class="header_label fl_l">Аудиозаписи</span>
<span class="header_count fl_l">233</span>
</div>
</a>
<div class="module_body clear_fix">
<div tabindex="0"
class="audio_row audio_row_with_cover _audio_row _audio_row_625043763_456239363 audio_can_add audio_has_thumb audio_row2 audio_has_track_page audio_row_playable"
data-full-id="625043763_456239363" onclick="return getAudioPlayer().toggleAudio(this, event)"
data-audio="[456239363,625043763,"","Кто-то","B.T.R",302,0,0,"",0,66,"module:625043763","[]","e8a73c50eb71e93d12\/\/710693c377e40de3b1\/96dd94f595c874f82b\/\/753a902c130f597a8a\/a3ae0372049be3b6e4","https:\/\/sun1-14.userapi.com\/impf\/DpFdDaPjuLfMyztO65K-N7RH-b8GKWrSx2LjHQ\/ihIijYiChX4.jpg?size=80x0&quality=90&sign=f1062dbc6b494dbf47e2e54b7c10e5eb,https:\/\/sun1-14.userapi.com\/impf\/DpFdDaPjuLfMyztO65K-N7RH-b8GKWrSx2LjHQ\/ihIijYiChX4.jpg?size=160x0&quality=90&sign=bc15f034c5b82ec24eb686aff972f7df",{"duration":302,"content_id":"625043763_456239363","puid22":4,"account_age_type":2,"_SITEID":276,"vk_id":625043763,"ver":251116},"",[{"id":"7527378814091953564","name":"B.T.R"}],"",[-2000354483,15354483,"f2a17fd837c0671cb7"],"590ee262MqFepY3eql4poO26JnqtV95D",0,0,true,"",false,"-2001585711_108585711"]"
onmouseover="AudioUtils.onRowOver(this, event)" onmouseleave="AudioUtils.onRowLeave(this, event)">
<div class="audio_row_content _audio_row_content">
<button class="blind_label _audio_row__play_btn" aria-label="Воспроизвести "
onclick="getAudioPlayer().toggleAudio(this, event); return cancelEvent(event)"></button>
<img class="audio_row__cover" alt="Кто-то" src="https://sun1.ufanet.userapi.com/s/v1/ig2/FiCEEv4AAp1cQdRWRyEOJRapmxp0junYAyb-8AY32Qqz4HTZWkXZvI83h2bYknAQ1jkgqhiSdlqquhxJe48lkLjK.jpg?size=200x200&quality=95&crop=78,160,1440,1440&ava=1"
loading="lazy" decoding="async" width="40" height="40">
<div class="audio_row__cover_back _audio_row__cover_back"></div>
<div class="audio_row__cover_icon _audio_row__cover_icon">
<div class="audio_row__play_btn_icon--pause"><svg width="24" height="24" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<g id="pause_24__Page-2" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="pause_24__pause_24">
<path id="pause_24__Rectangle-737" d="M0 0h24v24H0z"></path>
<path
d="M6.79 5H8.7c.45 0 .61.05.78.13.16.1.29.22.38.38.08.17.13.33.13.78V17.7c0 .45-.05.61-.13.78a.91.91 0 0 1-.38.38c-.17.08-.33.13-.78.13H6.8c-.45 0-.61-.05-.78-.13a.91.91 0 0 1-.38-.38c-.08-.17-.13-.33-.13-.78V6.3c0-.45.05-.61.13-.78.1-.16.22-.29.38-.38.17-.08.33-.13.78-.13Zm8 0h1.92c.45 0 .61.05.78.13.16.1.29.22.38.38.08.17.13.33.13.78V17.7c0 .45-.05.61-.13.78a.91.91 0 0 1-.38.38c-.17.08-.33.13-.78.13H14.8c-.45 0-.61-.05-.78-.13a.91.91 0 0 1-.38-.38c-.08-.17-.13-.33-.13-.78V6.3c0-.45.05-.61.13-.78.1-.16.22-.29.38-.38.17-.08.33-.13.78-.13Z"
id="pause_24__Mask" fill="currentColor"></path>
</g>
</g>
</svg></div>
<div class="audio_row__play_btn_icon--play"><svg width="24" height="24" viewBox="0 0 24 24"
fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M17.67 10.92c.82.49.82 1.67 0 2.16l-8.79 5.17c-.83.5-1.88-.1-1.88-1.08V6.83c0-.97 1.05-1.57 1.88-1.08l8.8 5.17Z"
fill="currentColor"></path>
</svg></div>
</div>
<div class="audio_row__counter"></div>
<div class="audio_row__play_btn">
<div class="audio_row__play_btn_icon--pause"><svg fill="none" height="24" viewBox="0 0 24 24"
width="24" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd"
d="M12 24a12 12 0 1 0 0-24 12 12 0 0 0 0 24zM10.6 7.1c-.14-.06-.27-.1-.63-.1h-.94c-.36 0-.49.04-.62.1a.73.73 0 0 0-.3.3c-.07.14-.11.27-.11.63v7.94c0 .36.04.49.1.62.08.13.18.23.3.3.14.07.27.11.63.11h.94c.36 0 .49-.04.62-.1a.73.73 0 0 0 .3-.3c.07-.14.11-.27.11-.63V8.03c0-.36-.04-.49-.1-.62a.73.73 0 0 0-.3-.3zm5 0c-.14-.06-.27-.1-.63-.1h-.94c-.36 0-.49.04-.62.1a.73.73 0 0 0-.3.3c-.07.14-.11.27-.11.63v7.94c0 .36.04.49.1.62.08.13.18.23.3.3.14.07.27.11.63.11h.94c.36 0 .49-.04.62-.1a.73.73 0 0 0 .3-.3c.07-.14.11-.27.11-.63V8.03c0-.36-.04-.49-.1-.62a.73.73 0 0 0-.3-.3z"
fill="currentColor" fill-rule="evenodd"></path>
</svg></div>
<div class="audio_row__play_btn_icon--play"><svg fill="none" height="24" viewBox="0 0 24 24"
width="24" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd"
d="M12 24a12 12 0 1 0 0-24 12 12 0 0 0 0 24zm5.02-11.13c.64-.39.64-1.36 0-1.74l-6.6-4C9.77 6.75 9 7.23 9 8v8c0 .76.78 1.25 1.41.87z"
fill="currentColor" fill-rule="evenodd"></path>
</svg></div>
</div>
<div class="audio_row__inner">
<div class="audio_row__chart_info">
</div>
<div class="audio_row__performer_title">
<div onmouseover="setTitle(this)" class="audio_row__performers"><a
href="https://vk.com/artist/b_t_r">B.T.R</a></div>
<div class="audio_row__title _audio_row__title" onmouseover="setTitle(this)">
<a href="https://vk.com/audio-2001585711_108585711"
class="audio_row__title_inner _audio_row__title_inner">Кто-то</a>
<span class="audio_row__title_inner_subtitle _audio_row__title_inner_subtitle"></span>
</div>
</div>
<div class="audio_row__info _audio_row__info">
<div class="audio_row__duration audio_row__duration-s _audio_row__duration">5:02</div>
</div>
</div>
<div class="audio_player__place _audio_player__place"></div>
</div>
</div>
<div tabindex="0"
class="audio_row audio_row_with_cover _audio_row _audio_row_625043763_456239361 audio_can_add audio_lpb audio_has_thumb audio_row2 audio_has_track_page audio_row_playable"
data-full-id="625043763_456239361" onclick="return getAudioPlayer().toggleAudio(this, event)"
data-audio="[456239361,625043763,"","Сокрушить Великих","Эпидемия и Павел Пламенев ",290,0,0,"",0,98,"module:625043763","[]","86bba264f69c3a5084\/6d4ef570cac501f478\/38f00365acaf070ffd\/7a75e6f6cbe2accca7\/\/e520b4e4baa7aecae8\/2bcfc8ccbbe225efe8","https:\/\/sun1-22.userapi.com\/impf\/QEfMVZB6QoKtGNdmUeT4qAVaNg0f6KDH38vT4g\/1vv1zAhuqq8.jpg?size=80x0&quality=90&sign=01e96bcc40dfece2174ed9f717688a1a,https:\/\/sun1-22.userapi.com\/impf\/QEfMVZB6QoKtGNdmUeT4qAVaNg0f6KDH38vT4g\/1vv1zAhuqq8.jpg?size=160x0&quality=90&sign=acda987446cf0c3d096a3d02dd5e87d4",{"duration":290,"content_id":"625043763_456239361","puid22":11,"account_age_type":2,"_SITEID":276,"vk_id":625043763,"ver":251116},"","","",[-2000776507,13776507,"b9718a68ff392bca0f"],"13bf8cbbp-3SCO1UdyV5L5z4QtNJpOSa",0,0,true,"",false,"-2001668967_100668967"]"
onmouseover="AudioUtils.onRowOver(this, event)" onmouseleave="AudioUtils.onRowLeave(this, event)">
<div class="audio_row_content _audio_row_content">
<button class="blind_label _audio_row__play_btn" aria-label="Воспроизвести "
onclick="getAudioPlayer().toggleAudio(this, event); return cancelEvent(event)"></button>
<img class="audio_row__cover" alt="Сокрушить Великих" src="https://sun1.ufanet.userapi.com/s/v1/ig2/FiCEEv4AAp1cQdRWRyEOJRapmxp0junYAyb-8AY32Qqz4HTZWkXZvI83h2bYknAQ1jkgqhiSdlqquhxJe48lkLjK.jpg?size=200x200&quality=95&crop=78,160,1440,1440&ava=1"
loading="lazy" decoding="async" width="40" height="40">
<div class="audio_row__cover_back _audio_row__cover_back"></div>
<div class="audio_row__cover_icon _audio_row__cover_icon">
<div class="audio_row__play_btn_icon--pause"><svg width="24" height="24" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<g id="pause_24__Page-2" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="pause_24__pause_24">
<path id="pause_24__Rectangle-737" d="M0 0h24v24H0z"></path>
<path
d="M6.79 5H8.7c.45 0 .61.05.78.13.16.1.29.22.38.38.08.17.13.33.13.78V17.7c0 .45-.05.61-.13.78a.91.91 0 0 1-.38.38c-.17.08-.33.13-.78.13H6.8c-.45 0-.61-.05-.78-.13a.91.91 0 0 1-.38-.38c-.08-.17-.13-.33-.13-.78V6.3c0-.45.05-.61.13-.78.1-.16.22-.29.38-.38.17-.08.33-.13.78-.13Zm8 0h1.92c.45 0 .61.05.78.13.16.1.29.22.38.38.08.17.13.33.13.78V17.7c0 .45-.05.61-.13.78a.91.91 0 0 1-.38.38c-.17.08-.33.13-.78.13H14.8c-.45 0-.61-.05-.78-.13a.91.91 0 0 1-.38-.38c-.08-.17-.13-.33-.13-.78V6.3c0-.45.05-.61.13-.78.1-.16.22-.29.38-.38.17-.08.33-.13.78-.13Z"
id="pause_24__Mask" fill="currentColor"></path>
</g>
</g>
</svg></div>
<div class="audio_row__play_btn_icon--play"><svg width="24" height="24" viewBox="0 0 24 24"
fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M17.67 10.92c.82.49.82 1.67 0 2.16l-8.79 5.17c-.83.5-1.88-.1-1.88-1.08V6.83c0-.97 1.05-1.57 1.88-1.08l8.8 5.17Z"
fill="currentColor"></path>
</svg></div>
</div>
<div class="audio_row__counter"></div>
<div class="audio_row__play_btn">
<div class="audio_row__play_btn_icon--pause"><svg fill="none" height="24" viewBox="0 0 24 24"
width="24" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd"
d="M12 24a12 12 0 1 0 0-24 12 12 0 0 0 0 24zM10.6 7.1c-.14-.06-.27-.1-.63-.1h-.94c-.36 0-.49.04-.62.1a.73.73 0 0 0-.3.3c-.07.14-.11.27-.11.63v7.94c0 .36.04.49.1.62.08.13.18.23.3.3.14.07.27.11.63.11h.94c.36 0 .49-.04.62-.1a.73.73 0 0 0 .3-.3c.07-.14.11-.27.11-.63V8.03c0-.36-.04-.49-.1-.62a.73.73 0 0 0-.3-.3zm5 0c-.14-.06-.27-.1-.63-.1h-.94c-.36 0-.49.04-.62.1a.73.73 0 0 0-.3.3c-.07.14-.11.27-.11.63v7.94c0 .36.04.49.1.62.08.13.18.23.3.3.14.07.27.11.63.11h.94c.36 0 .49-.04.62-.1a.73.73 0 0 0 .3-.3c.07-.14.11-.27.11-.63V8.03c0-.36-.04-.49-.1-.62a.73.73 0 0 0-.3-.3z"
fill="currentColor" fill-rule="evenodd"></path>
</svg></div>
<div class="audio_row__play_btn_icon--play"><svg fill="none" height="24" viewBox="0 0 24 24"
width="24" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd"
d="M12 24a12 12 0 1 0 0-24 12 12 0 0 0 0 24zm5.02-11.13c.64-.39.64-1.36 0-1.74l-6.6-4C9.77 6.75 9 7.23 9 8v8c0 .76.78 1.25 1.41.87z"
fill="currentColor" fill-rule="evenodd"></path>
</svg></div>
</div>
<div class="audio_row__inner">
<div class="audio_row__chart_info">
</div>
<div class="audio_row__performer_title">
<div onmouseover="setTitle(this)" class="audio_row__performers"><a
href="https://vk.com/audio?performer=1&q=%D0%AD%D0%BF%D0%B8%D0%B4%D0%B5%D0%BC%D0%B8%D1%8F%20%D0%B8%20%D0%9F%D0%B0%D0%B2%D0%B5%D0%BB%20%D0%9F%D0%BB%D0%B0%D0%BC%D0%B5%D0%BD%D0%B5%D0%B2%20">Эпидемия
и Павел Пламенев </a></div>
<div class="audio_row__title _audio_row__title" onmouseover="setTitle(this)">
<a href="https://vk.com/audio-2001668967_100668967"
class="audio_row__title_inner _audio_row__title_inner">Сокрушить Великих</a>
<span class="audio_row__title_inner_subtitle _audio_row__title_inner_subtitle"></span>
</div>
</div>
<div class="audio_row__info _audio_row__info">
<div class="audio_row__duration audio_row__duration-s _audio_row__duration">4:50</div>
</div>
</div>
<div class="audio_player__place _audio_player__place"></div>
</div>
</div>
<div tabindex="0"
class="audio_row audio_row_with_cover _audio_row _audio_row_625043763_456239360 audio_can_add audio_lpb audio_has_thumb audio_row2 audio_has_track_page audio_row_playable"
data-full-id="625043763_456239360" onclick="return getAudioPlayer().toggleAudio(this, event)"
data-audio="[456239360,625043763,"","Holy Diver","Killswitch Engage",250,0,0,"",0,98,"module:625043763","[]","13832436b1f84efb6e\/\/048c4f0ebfc4a19c3f\/b01ca7662ce3ccbf25\/\/01a72bcb315b9e5287\/e4fbccefe61bd20dbf","https:\/\/sun9-83.userapi.com\/impf\/c854016\/v854016647\/1dc98\/k5Gp9ghQi4A.jpg?size=80x0&quality=90&sign=666655d26fa6b80038b1feb3dc6cc347,https:\/\/sun9-83.userapi.com\/impf\/c854016\/v854016647\/1dc98\/k5Gp9ghQi4A.jpg?size=160x0&quality=90&sign=e93b9b1f96fb931b3e11d86e5b288df3",{"duration":250,"content_id":"625043763_456239360","puid22":4,"account_age_type":2,"_SITEID":276,"vk_id":625043763,"ver":251116},"",[{"id":"2801993232905216063","name":"Killswitch Engage"}],"",[-2000333064,1333064,"29bd3598fd573908a7"],"1dc98057CmKT8d4ib7JrzdTAoaUBw8ia",0,0,true,"",false,"-2001208533_31208533"]"
onmouseover="AudioUtils.onRowOver(this, event)" onmouseleave="AudioUtils.onRowLeave(this, event)">
<div class="audio_row_content _audio_row_content">
<button class="blind_label _audio_row__play_btn" aria-label="Воспроизвести "
onclick="getAudioPlayer().toggleAudio(this, event); return cancelEvent(event)"></button>
<img class="audio_row__cover" alt="Holy Diver" src="https://sun1.ufanet.userapi.com/s/v1/ig2/FiCEEv4AAp1cQdRWRyEOJRapmxp0junYAyb-8AY32Qqz4HTZWkXZvI83h2bYknAQ1jkgqhiSdlqquhxJe48lkLjK.jpg?size=200x200&quality=95&crop=78,160,1440,1440&ava=1"
loading="lazy" decoding="async" width="40" height="40">
<div class="audio_row__cover_back _audio_row__cover_back"></div>
<div class="audio_row__cover_icon _audio_row__cover_icon">
<div class="audio_row__play_btn_icon--pause"><svg width="24" height="24" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<g id="pause_24__Page-2" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="pause_24__pause_24">
<path id="pause_24__Rectangle-737" d="M0 0h24v24H0z"></path>
<path
d="M6.79 5H8.7c.45 0 .61.05.78.13.16.1.29.22.38.38.08.17.13.33.13.78V17.7c0 .45-.05.61-.13.78a.91.91 0 0 1-.38.38c-.17.08-.33.13-.78.13H6.8c-.45 0-.61-.05-.78-.13a.91.91 0 0 1-.38-.38c-.08-.17-.13-.33-.13-.78V6.3c0-.45.05-.61.13-.78.1-.16.22-.29.38-.38.17-.08.33-.13.78-.13Zm8 0h1.92c.45 0 .61.05.78.13.16.1.29.22.38.38.08.17.13.33.13.78V17.7c0 .45-.05.61-.13.78a.91.91 0 0 1-.38.38c-.17.08-.33.13-.78.13H14.8c-.45 0-.61-.05-.78-.13a.91.91 0 0 1-.38-.38c-.08-.17-.13-.33-.13-.78V6.3c0-.45.05-.61.13-.78.1-.16.22-.29.38-.38.17-.08.33-.13.78-.13Z"
id="pause_24__Mask" fill="currentColor"></path>
</g>
</g>
</svg></div>
<div class="audio_row__play_btn_icon--play"><svg width="24" height="24" viewBox="0 0 24 24"
fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M17.67 10.92c.82.49.82 1.67 0 2.16l-8.79 5.17c-.83.5-1.88-.1-1.88-1.08V6.83c0-.97 1.05-1.57 1.88-1.08l8.8 5.17Z"
fill="currentColor"></path>
</svg></div>
</div>
<div class="audio_row__counter"></div>
<div class="audio_row__play_btn">
<div class="audio_row__play_btn_icon--pause"><svg fill="none" height="24" viewBox="0 0 24 24"
width="24" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd"
d="M12 24a12 12 0 1 0 0-24 12 12 0 0 0 0 24zM10.6 7.1c-.14-.06-.27-.1-.63-.1h-.94c-.36 0-.49.04-.62.1a.73.73 0 0 0-.3.3c-.07.14-.11.27-.11.63v7.94c0 .36.04.49.1.62.08.13.18.23.3.3.14.07.27.11.63.11h.94c.36 0 .49-.04.62-.1a.73.73 0 0 0 .3-.3c.07-.14.11-.27.11-.63V8.03c0-.36-.04-.49-.1-.62a.73.73 0 0 0-.3-.3zm5 0c-.14-.06-.27-.1-.63-.1h-.94c-.36 0-.49.04-.62.1a.73.73 0 0 0-.3.3c-.07.14-.11.27-.11.63v7.94c0 .36.04.49.1.62.08.13.18.23.3.3.14.07.27.11.63.11h.94c.36 0 .49-.04.62-.1a.73.73 0 0 0 .3-.3c.07-.14.11-.27.11-.63V8.03c0-.36-.04-.49-.1-.62a.73.73 0 0 0-.3-.3z"
fill="currentColor" fill-rule="evenodd"></path>
</svg></div>
<div class="audio_row__play_btn_icon--play"><svg fill="none" height="24" viewBox="0 0 24 24"
width="24" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd"
d="M12 24a12 12 0 1 0 0-24 12 12 0 0 0 0 24zm5.02-11.13c.64-.39.64-1.36 0-1.74l-6.6-4C9.77 6.75 9 7.23 9 8v8c0 .76.78 1.25 1.41.87z"
fill="currentColor" fill-rule="evenodd"></path>
</svg></div>
</div>
<div class="audio_row__inner">
<div class="audio_row__chart_info">
</div>
<div class="audio_row__performer_title">
<div onmouseover="setTitle(this)" class="audio_row__performers"><a
href="https://vk.com/artist/killswitchengage">Killswitch Engage</a></div>
<div class="audio_row__title _audio_row__title" onmouseover="setTitle(this)">
<a href="https://vk.com/audio-2001208533_31208533"
class="audio_row__title_inner _audio_row__title_inner">Holy Diver</a>
<span class="audio_row__title_inner_subtitle _audio_row__title_inner_subtitle"></span>
</div>
</div>
<div class="audio_row__info _audio_row__info">
<div class="audio_row__duration audio_row__duration-s _audio_row__duration">4:10</div>
</div>
</div>
<div class="audio_player__place _audio_player__place"></div>
</div>
</div>
</div>
</div>
</aside>
</div>
</div>
</div>
<div class="wide_column_wrap">
<div class="wide_column" id="wide_column">
<div class="page_block">
<div id="page_info_wrap" class="page_info_wrap ">
<div class="page_top">
<div class="_profile_online profile_online">
<div class="profile_online_lv">${vk_page_api.online?"online":"offline"}</div>
</div>
<h1 class="page_name">Миха Электронщик<span class="image_status__status image_status__status--large"
onclick="window.imageStatusPopup && window.imageStatusPopup(event, {"user_id":625043763})">
<img class="image_status__statusImage" src="https://sun1.ufanet.userapi.com/s/v1/ig2/FiCEEv4AAp1cQdRWRyEOJRapmxp0junYAyb-8AY32Qqz4HTZWkXZvI83h2bYknAQ1jkgqhiSdlqquhxJe48lkLjK.jpg?size=200x200&quality=95&crop=78,160,1440,1440&ava=1"
srcset="https://sun1-89.userapi.com/z4xizKC9WEyTukB6vWlMAOBBg3CIbxlIojq78A/NV2J4JRCoJY.png 2x">
</span></h1>
<div class="page_current_info" id="page_current_info">
<div id="currinfo_editor" class="page_status_editor clear" onclick="cancelEvent(event)">
<div class="editor">
<div class="page_status_input_wrap _emoji_field_wrap">
<div class="emoji_smile_wrap _emoji_wrap">
<div class="emoji_smile _emoji_btn" role="button"
title="Используйте TAB, чтобы быстрее открывать смайлы"
onmouseenter="return Emoji.show(this, event);" onmouseleave="return Emoji.hide(this, event);"
onclick="return cancelEvent(event);" aria-label="Добавить эмодзи или стикер">
<div class="emoji_smile_icon_inline_svg emoji_smile_icon"><svg width="24" height="24"
viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M8.44 14.3a.9.9 0 0 1 1.26.13c.01.02.2.22.53.43.38.24.97.49 1.77.49s1.39-.25 1.77-.49c.2-.12.39-.26.53-.43a.9.9 0 0 1 1.4 1.13c-.27.33-.61.6-.97.83a5.1 5.1 0 0 1-2.73.76 5.1 5.1 0 0 1-2.73-.76 3.99 3.99 0 0 1-.97-.83.9.9 0 0 1 .14-1.26zm1.81-4.05a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0zM15 11.5A1.25 1.25 0 1 0 15 9a1.25 1.25 0 0 0 0 2.5z"
fill="currentColor"></path>
<path fill-rule="evenodd" clip-rule="evenodd"
d="M12 2.1a9.9 9.9 0 1 0 0 19.8 9.9 9.9 0 0 0 0-19.8zM3.9 12a8.1 8.1 0 1 1 16.2 0 8.1 8.1 0 0 1-16.2 0z"
fill="currentColor"></path>
</svg></div>
</div>
</div>
<div class="page_status_input" id="currinfo_input" contenteditable="true" role="textbox"></div>
</div>
<button class="flat_button button_small page_status_btn_save" id="currinfo_save">Сохранить</button>
</div>
</div>
<div id="currinfo_wrap" onclick="return Page.infoEdit();" tabindex="0" role="button">
<span id="current_info" class="current_info"><span class="my_current_info"><span
class="current_text">${vk_page_api.status}</span></span></span>
</div>
<div id="currinfo_fake" style="display: none"><span class="my_current_info"><span
class="current_text">${vk_page_api.status}</span></span></div>
</div>
</div>
<div class="profile_info profile_info_short" id="profile_short">
<div class="clear_fix profile_info_row ">
<h3 class="label fl_l">День рождения:</h3>
<div class="labeled"><a href="${this.parseDate(vk_page_api.bdate)}">${this.parseDateSTR(vk_page_api.bdate)}</a></div>
</div>
<div class="clear_fix profile_info_row ">
<h3 class="label fl_l">Страна:</h3>
<div class="labeled"><a href="https://vk.com/search?c[name]=0&c[section]=people&c[country]=${vk_page_api.country.id}">${vk_page_api.country.title}</a></div>
</div>
<div class="clear_fix profile_info_row ">
<h3 class="label fl_l">О себе:</h3>
<div class="labeled">${vk_page_api.about}</div>
</div>
<div class="profile_more_info">
<a class="profile_more_info_link">
<span class="profile_label_more">Показать подробную информацию</span>
<span class="profile_label_less">Скрыть подробную информацию</span>
</a>
</div>
</div>
</div>
<div class="counts_module"><a class="page_counter" href="https://vk.com/friends?id=${vk.id}&section=all"
onclick="return page.showPageMembers(event, ${vk.id}, 'friends');">
<div class="count">${vk_page_api.counters.friends?vk_page_api.counters.friends:0}</div>
<div class="label">${this.declOfNum(vk_page_api.counters.friends,["друг","друга","друзей"])}</div>
</a><a class="page_counter" href="https://vk.com/albums${vk.id}?profile=1"
onclick="return showAlbums(${vk.id}, {noHistory: true}, event);">
<div class="count">${vk_page_api.counters.photos?vk_page_api.counters.photos:0}</div>
<div class="label">${this.declOfNum(vk_page_api.counters.photos,["фото","фота","фото"])}</div>
</a><a class="page_counter" href="https://vk.com/tag${vk.id}"
onclick="return showPhotoTags(${vk.id}, {noHistory: true}, event);">
<div class="count">${vk_page_api.counters.notes?vk_page_api.counters.notes:0}</div>
<div class="label">${this.declOfNum(vk_page_api.counters.notes?vk_page_api.counters.notes:0,["отметка","отметки","отметок"])}</div>
</a><a class="page_counter" href="https://vk.com/videos625043763"
onclick="return page.showPageVideos(event, ${vk.id})">
<div class="count">${vk_page_api.counters.videos?vk_page_api.counters.videos:0}</div>
<div class="label">${this.declOfNum(vk_page_api.counters.videos,["видеозапись","видеозаписи","видеозаписей"])}</div>
</a><a class="page_counter" href="https://vk.com/audios${vk.id}"
onclick="return page.showPageAudios(event, ${vk.id});">
<div class="count">${vk_page_api.counters.audios?vk_page_api.counters.audios:0}</div>
<div class="label">${this.declOfNum(vk_page_api.counters.audios,["аудиозапись","аудиозаписи","аудиозаписей"])}</div>
</a></div>
</div>
<div class="page_block">
<div class="module clear photos_module" id="profile_photos_module">
<div class="header_right_link fl_r"></div>
<a href="https://vk.com/albums625043763" onclick="return nav.change({z: 'albums625043763'}, event)" class="module_header">
<div class="header_top clear_fix">
<span class="header_label fl_l">Мои фотографии</span>
<span class="header_count fl_l"></span>
</div>
</a>
<div id="page_photos_module" class="page_photos_module">
</div></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>`}))
Functions_CLASS.findElem('div#wide_column').appendChild(Functions_CLASS.findElem('div#page_block_submit_post'))
Functions_CLASS.findElem('div#wide_column').appendChild(Functions_CLASS.findElem('div#profile_wall'))
Functions_CLASS.findElem('h1.page_name').innerText = `${vk_page_api.first_name} ${vk_page_api.last_name}`
Functions_CLASS.findElem('a.profile_more_info_link').addEventListener('click',()=>{
Functions_CLASS.findElem('.ProfileInfo__fullInfoButton').click()
})
window.findElem = Functions_CLASS.findElem
if (!vk_page_api.is_closed){
Functions_CLASS.findElem('.PageActionsClosedProfile').remove()
}else{
Functions_CLASS.findElem('.PageActionsClosedProfile').addEventListener('click',()=>{
window.findElem('.vkuiSimpleCell.vkuiSimpleCell--android.vkuiSimpleCell--mult.vkuiSimpleCell--sizeY-compact.vkuiTappable.vkuiTappable--sizeX-regular.vkuiTappable--hasHover.vkuiTappable--hasActive.vkuiTappable--mouse').click()
})
}
// СОздание друзей
this.HtmlFriendsMas().then(e=>{
Functions_CLASS.findElem('div#profile_friends .module_body.clear_fix').innerHTML = e[0]
Functions_CLASS.findElem('div#profile_friends_online .module_body.clear_fix').innerHTML = e[1]
Functions_CLASS.findElem('div#profile_friends_online .module_body.clear_fix').innerHTML = e[1]
Functions_CLASS.findElem('[aria-label="Друзья"] span.header_count.fl_l').innerText = e[2]
Functions_CLASS.findElem('[aria-label="Друзья онлайн"] span.header_count.fl_l').innerText = e[3]
Functions_CLASS.findElem('[aria-label="Друзья"] a.module_header').href = `https://vk.com/friends?id=${vk.id}§ion=all`
Functions_CLASS.findElem('[aria-label="Друзья онлайн"] a.module_header').href = `https://vk.com/friends?id=${vk.id}§ion=online`
})
this.HtmlGiftsMas().then(e=>{
Functions_CLASS.findElem('a.profile_gifts_cont').innerHTML = e
})
this.HtmlVideoMas().then(e=>{
Functions_CLASS.findElem('div#profile_videos .module_body.clear_fix').innerHTML = e[0]
Functions_CLASS.findElem('div#profile_videos span.header_count.fl_l').innerHTML = e[1]
})
// СОздание групп
this.HtmlGroupMas().then((e)=>{
Functions_CLASS.findElem('div#profile_idols .module_body.clear_fix').innerHTML = e
})
// Создание превью фото на странице
Functions_CLASS.API_POST("photos.get",`owner_id=${vk.id}&album_id=wall&rev=0&extended=0&photo_sizes=0`).then(wall=>{
wall.items.length = 4
let html = ""
wall.items.forEach(we=>{
let re = `return showPhoto('${we.owner_id}_${we.id}', 'photos${we.owner_id}', { "temp": { "x": "${we.sizes[2].url}", "y": "${we.sizes[3].url}", "z": "${we.sizes[4].url}", "x_": ["${we.sizes[2].url}", 1041, 704], "base": "" } }, event)`
let url = `https://vk.com/photo${we.owner_id}_${we.id}?all=1`
let image = we.sizes[6].url
html+=`<a class="page_square_photo crisp_image " href="${url}"
onclick="${re}"
style="background-image: url("${image}");"
aria-label=""><span
class="blind_label"></span>
<div class="ui_thumb_x_button" onclick="return Profile.photoRemove(this, ${we.id}, event)" data-title="Скрыть"
onmouseover="showTitle(this);" aria-label="Скрыть">
<span class="blind_label">Скрыть</span>
<div class="ui_thumb_x"></div>
</div>
<div class="tt_w tt_black tt_down"
style="position: absolute; opacity: 0.0221035; top: -31.4219px; left: 94px; pointer-events: auto; display: none;">
<div class="tt_text">Скрыть</div>
</div>
</a>`
})
Functions_CLASS.findElem('div#page_photos_module').innerHTML = html
Functions_CLASS.findElem('div#profile_photos_module a.module_header').setAttribute('onclick',`return nav.change({z: 'albums${vk.id}'}, event)`)
Functions_CLASS.findElem('div#profile_photos_module span.header_count.fl_l').innerText = wall.items.length
})
// Починка блока поиска на своей странце
Functions_CLASS.findElem('.owner_photo_bubble_action.owner_photo_bubble_action_crop').addEventListener('click',this.change)
Functions_CLASS.findElem('.ui_thumb_x_button[data-title="Удалить фотографию"]').addEventListener('click',this.delete)
document.querySelectorAll('.ui_tabs_new').forEach(e=>{
e.classList.remove("ui_tabs_new");
})
document.querySelectorAll('.ui_tab_new').forEach(e=>{
e.classList.remove("ui_tab_new");
})
Functions_CLASS.findElem('h2#wall_tabs').classList = "page_block_h2"
document.querySelectorAll('.ui_tabs_container').forEach(f=>{
f.classList = "ui_tabs clear_fix ui_tabs_with_progress"
})
Functions_CLASS.findElem('a.ui_tab_plain.ui_tab_plain_new.ui_tab_search').classList = "ui_tab_plain ui_tab_search"
Functions_CLASS.findElem('h2#wall_tabs ul.ui_tabs.clear_fix.ui_tabs_with_progress').appendChild(Functions_CLASS.findElem('.ui_tab_search_wrap'))
Functions_CLASS.findElem('span.ui_tab_search_icon').remove()
//for (var key of Object.keys(vk_page_api)){
// vk_page_api[key]&&!this.isEmpty(vk_page_api[key])?console.log(`key: ${key}||value: ${vk_page_api[key]}`):null
//}
}
})
})
})
}
},100)
//Functions_CLASS.API_POST("users.get",`user_ids=${vk.id}`).then(val=>console.log(val))
}
Tests() {
console.log(this.IsMusic())
/* ЗДЕСЬ НАХОДЯТСЯ ФУНКЦИИ ДЛЯ ТЕСТОВ */
/*************************************/
/*GM_xmlhttpRequest ( {
method: "POST",
url: `https://api.vk.com/method/users.get?user_ids=hack1exe&fields=bdate,activities,site,about,last_seen,status&access_token=${this.settings.access_token}&v=${this.settings.apiver}`,
headers: {
"Content-Type": "text/plain",
"Content-Length": "0"
},
onload: function (response) {
let vk_obj = JSON.parse(response.responseText).response[0]
console.dir(vk_obj)
console.log (`Имя:${vk_obj.first_name} ${vk_obj.last_name} Статус:"${vk_obj.status}"`);
}
});*//*
GM_xmlhttpRequest ( {
method: "POST",
url: `https://api.vk.com/method/users.get?user_ids=hack1exe&fields=bdate,activities,site,about,last_seen,status&access_token=${this.settings.access_token}&v=${this.settings.apiver}`,
headers: {
"Content-Type": "text/plain",
"Content-Length": "0"
},
onload: function (response) {
let vk_obj = JSON.parse(response.responseText).response[0]
console.dir(vk_obj)
console.log (`Имя:${vk_obj.first_name} ${vk_obj.last_name} Статус:"${vk_obj.status}"`);
}
});*/
// ТЕМА
/*
GM_xmlhttpRequest ( {
method: "POST",
url: `https://vk.com/al_settings.php?act=a_save_color_scheme_mode`,
data:`al=1&hash=${document.querySelector('.idd_wrap.SettingsColorSchemeDropdown').dataset.hash}&mode=dark`,
headers: {
"Content-Type": "application/x-www-form-urlencoded"
},
onload: function (response) {
console.log (response.responseText);
}
});
*/
/***************************************/
/* ЗДЕСЬ НАХОДЯТСЯ ФУНКЦИИ ДЛЯ ТЕСТОВ */
}
IsPageLoaded() {
/* ПРОВЕРКА ЗАГРУЗКИ СТРАНИЦЫ */
/*****************************/
if (document.body.innerHTML.replace(/\s{2,}/g, '').length) return true
return false
/*******************************/
/* ПРОВЕРКА ЗАГРУЗКИ СТРАНИЦЫ */
}
BlockAdsInit() {