forked from IgnoredAmbience/twitter-followers-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
friends.json
7271 lines (7271 loc) · 391 KB
/
friends.json
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
[
{
"created_at": "Mon Feb 15 23:44:02 +0000 2021",
"default_profile": true,
"description": "PhD student at the University of Alberta, ethnographer, a nitpicker. Born and living on the bloodlands.",
"following": true,
"id": 1361461240258789379,
"id_str": "1361461240258789379",
"name": "Ivan Shmatko",
"profile_background_color": "F5F8FA",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1361461240258789379/1664103844",
"profile_image_url": "http://pbs.twimg.com/profile_images/1361462322510856194/n6nrJhEE_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1361462322510856194/n6nrJhEE_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "ShmatkoIvan",
"withheld_in_countries": []
},
{
"created_at": "Sat Aug 14 07:33:51 +0000 2021",
"default_profile": true,
"description": "\u0421\u0430\u043c\u0432\u0438\u0434\u0430\u0432 - \u0432\u0430\u0448 \u043e\u0441\u0442\u0440\u0456\u0432\u043e\u043a \u0449\u0438\u0440\u043e\u0441\u0442\u0456 \u2665",
"following": true,
"id": 1426446833577078784,
"id_str": "1426446833577078784",
"location": "\u0423\u043a\u0440\u0430\u0457\u043d\u0430",
"name": "\u0445\u043f\u0437\u043f out of context",
"profile_background_color": "F5F8FA",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1426446833577078784/1632072319",
"profile_image_url": "http://pbs.twimg.com/profile_images/1437322294985175041/Xn2a4c1Q_normal.png",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1437322294985175041/Xn2a4c1Q_normal.png",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "hpzpfan",
"url": "https://t.co/3pAENlYIRz",
"withheld_in_countries": []
},
{
"created_at": "Sat Feb 26 05:37:52 +0000 2022",
"default_profile": true,
"description": "\u0412\u0421\u0415 \u0411\u0423\u0414\u0415 \u0414\u041e\u0411\u0420\u0415\ud83c\uddfa\ud83c\udde6\u0412\u0421\u0415 \u0411\u0423\u0414\u0415 \u0423\u041a\u0420\u0410\u0407\u041d\u0410",
"following": true,
"geo_enabled": true,
"id": 1497445706822725633,
"id_str": "1497445706822725633",
"location": "\u65e5\u672c",
"name": "\u0425\u041e\u041d\u041e\u041a\u0410\ud83c\uddfa\ud83c\udde6\ud83c\uddef\ud83c\uddf5",
"profile_background_color": "F5F8FA",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1497445706822725633/1667466352",
"profile_image_url": "http://pbs.twimg.com/profile_images/1531654972584390657/Qq4-85m7_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1531654972584390657/Qq4-85m7_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "honoka_tut",
"withheld_in_countries": []
},
{
"created_at": "Wed Jul 15 16:34:36 +0000 2015",
"default_profile": true,
"description": "\u0417\u0432\u0438\u0447\u0430\u0439\u043d\u0438\u0439 \u0447\u043e\u043b\u043e\u0432\u0456\u043a.\n\u0427\u043e\u043b\u043e\u0432\u0456\u043a,\u0431\u0430\u0442\u044c\u043a\u043e,\u0441\u0438\u043d,\u0431\u0440\u0430\u0442.\n\u041d\u0438\u0437\u044c\u043a\u043e\u043a\u0432\u0430\u043b\u0456\u0444\u0456\u043a\u043e\u0432\u0430\u043d\u0438\u0439 \u0447\u043e\u0440\u043d\u043e\u0440\u043e\u0431 \u0437 \u043d\u0435\u0432\u0435\u043b\u0438\u0447\u043a\u0438\u043c \u0437\u0430\u0440\u043e\u0431\u0456\u0442\u043a\u043e\u043c.\n\u041c\u0440\u0456\u0439\u043d\u0438\u043a.\n\u042f\u043a\u0449\u043e \u0447\u0438\u043c \u0412\u0430\u043c \u0437\u0430\u0432\u0430\u0434\u0438\u0432-\u0432\u0438\u0431\u0430\u0447\u0442\u0435!",
"following": true,
"geo_enabled": true,
"id": 3377522003,
"id_str": "3377522003",
"location": "Krak\u00f3w, Polska",
"name": "\u0434\u0440\u0443\u0436\u0435 \u041f\u0435\u043d\u044c\u043e\u043a",
"profile_background_color": "C0DEED",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3377522003/1652004811",
"profile_image_url": "http://pbs.twimg.com/profile_images/1150690560195383296/00SI6oOY_normal.png",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1150690560195383296/00SI6oOY_normal.png",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "dzhigarr",
"withheld_in_countries": []
},
{
"created_at": "Sun Aug 04 22:17:10 +0000 2019",
"default_profile": true,
"description": "The largest collection of malware source code, samples, and papers on the internet.\n\nPassword: infected",
"following": true,
"id": 1158139840866791424,
"id_str": "1158139840866791424",
"location": "International",
"name": "vx-underground",
"profile_background_color": "F5F8FA",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1158139840866791424/1595099396",
"profile_image_url": "http://pbs.twimg.com/profile_images/1284217861318344706/m__Wj5eV_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1284217861318344706/m__Wj5eV_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "vxunderground",
"url": "https://t.co/Yn4orDEAhs",
"withheld_in_countries": []
},
{
"created_at": "Sat Mar 13 17:21:10 +0000 2021",
"default_profile": true,
"following": true,
"id": 1370786990959001600,
"id_str": "1370786990959001600",
"location": "\u041a\u0438\u0457\u0432",
"name": "\u0420\u0456\u0435\u043b\u0442\u043e\u0440\u0438 - \u0437\u043b\u043e (Out of context) \ud83c\uddfa\ud83c\udde6",
"profile_background_color": "F5F8FA",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1370786990959001600/1615656366",
"profile_image_url": "http://pbs.twimg.com/profile_images/1370787416341118981/MQ1mDrI4_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1370787416341118981/MQ1mDrI4_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "RieltoryZ",
"withheld_in_countries": []
},
{
"created_at": "Sun Jul 10 19:49:08 +0000 2011",
"description": "Pokemon VGC player from Ukraine\ud83c\uddfa\ud83c\udde6| 66hz| UA/ENG",
"following": true,
"id": 332989028,
"id_str": "332989028",
"location": "Velvet Room",
"name": "\ud83c\uddfa\ud83c\udde6Xenjka\ud83c\uddea\ud83c\uddfa",
"profile_background_color": "E6E6E6",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_background_tile": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/332989028/1646852522",
"profile_image_url": "http://pbs.twimg.com/profile_images/1498936883782590465/nEADBSiQ_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1498936883782590465/nEADBSiQ_normal.jpg",
"profile_link_color": "242657",
"profile_sidebar_border_color": "000000",
"profile_sidebar_fill_color": "BDBDBD",
"profile_text_color": "000000",
"profile_use_background_image": true,
"screen_name": "stareo_o",
"withheld_in_countries": []
},
{
"created_at": "Tue Sep 11 12:53:20 +0000 2018",
"default_profile": true,
"description": "Journalist/editor | \ud83c\udf93BA Sociology, MA Law (NaUKMA) | former tactical medicine instructor",
"following": true,
"geo_enabled": true,
"id": 1039497118451486721,
"id_str": "1039497118451486721",
"location": "\u0423\u043a\u0440\u0430\u0457\u043d\u0430",
"name": "Olga Khudetska",
"profile_background_color": "F5F8FA",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1039497118451486721/1536672251",
"profile_image_url": "http://pbs.twimg.com/profile_images/1375528838558531584/1Jj6UbdP_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1375528838558531584/1Jj6UbdP_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "OKhudetska",
"withheld_in_countries": []
},
{
"created_at": "Wed Jun 24 18:52:34 +0000 2009",
"description": "\u041d\u043e\u0432\u0438\u043d\u0438 \u0437\u0456 \u0441\u0432\u0456\u0442\u0443 \u0432\u0456\u0434\u0435\u043e\u0456\u0433\u043e\u0440 \u0432\u0456\u0434 \u0441\u0430\u0439\u0442\u0443 GameWay. Tweets by \u0433\u043e\u043b\u043e\u0432\u0440\u0435\u0434. #\u0423\u043a\u0440\u0422\u0432\u0456 Virtual Photography enthusiast, posting #GWScreenshots. Epic Creator Tag: GAMEWAYUA",
"following": true,
"id": 50396357,
"id_str": "50396357",
"name": "\u0406\u0433\u0440\u043e\u043e\u0431\u043e\u0440\u043e\u043d\u0430 \u0423\u043a\u0440\u0430\u0457\u043d\u0438 \ud83c\uddfa\ud83c\udde6",
"profile_background_color": "131516",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif",
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif",
"profile_background_tile": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/50396357/1588947661",
"profile_image_url": "http://pbs.twimg.com/profile_images/2366814628/yxatbyj9h2e7q5eczr2f_normal.png",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/2366814628/yxatbyj9h2e7q5eczr2f_normal.png",
"profile_link_color": "009999",
"profile_sidebar_border_color": "FFFFFF",
"profile_sidebar_fill_color": "EFEFEF",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "GamewayUA",
"url": "https://t.co/CMLQr4l9iO",
"withheld_in_countries": []
},
{
"created_at": "Thu Oct 06 11:33:17 +0000 2022",
"default_profile": true,
"description": "\u0413\u0435\u043d\u0435\u0440\u0430\u043b \u0412\u0430\u043b\u0435\u0440\u0456\u0439 \u0417\u0430\u043b\u0443\u0436\u043d\u0438\u0439, \u0413\u043e\u043b\u043e\u0432\u043d\u043e\u043a\u043e\u043c\u0430\u043d\u0434\u0443\u0432\u0430\u0447 \u0417\u0431\u0440\u043e\u0439\u043d\u0438\u0445 \u0421\u0438\u043b \u0423\u043a\u0440\u0430\u0457\u043d\u0438 \ud83c\uddfa\ud83c\udde6 General Valerii Zaluzhnyi, Commander-in-Chief of the Armed Forces of Ukraine",
"following": true,
"id": 1577984184412422153,
"id_str": "1577984184412422153",
"location": "\u0423\u043a\u0440\u0430\u0457\u043d\u0430",
"name": "Commander-in-Chief of the Armed Forces of Ukraine",
"profile_background_color": "F5F8FA",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1577984184412422153/1665217340",
"profile_image_url": "http://pbs.twimg.com/profile_images/1577985820807528449/5nCZ19d1_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1577985820807528449/5nCZ19d1_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "CinC_AFU",
"url": "https://t.co/ryNbLXgCQm",
"verified": true,
"withheld_in_countries": []
},
{
"created_at": "Tue Mar 28 12:35:21 +0000 2017",
"description": "\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0438\u0439 \u0406\u0433\u0440\u043e\u0432\u0438\u0439 \u0411\u043b\u043e\u0433\u0435\u0440 \u043d\u0430 \u042e\u0442\u0443\u0431 \u0442\u0430 \u0422\u0432\u0456\u0447\nYoutube and Twitch gaming blogger from Ukraine",
"following": true,
"id": 846702247979483136,
"id_str": "846702247979483136",
"location": "\u0423\u043a\u0440\u0430\u0457\u043d\u0430",
"name": "OLDboi",
"profile_background_color": "000000",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/846702247979483136/1624788462",
"profile_image_url": "http://pbs.twimg.com/profile_images/1508175940689580032/EyPr58HF_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1508175940689580032/EyPr58HF_normal.jpg",
"profile_link_color": "ABB8C2",
"profile_sidebar_border_color": "000000",
"profile_sidebar_fill_color": "000000",
"profile_text_color": "000000",
"screen_name": "OLDboiUA",
"url": "https://t.co/OAwJ4O2HIg",
"withheld_in_countries": []
},
{
"created_at": "Mon Jul 29 10:12:48 +0000 2013",
"description": "Ukrainian website about gaming, movies and other geek stuff \n\nWe need your support:\nhttps://t.co/L2tdFwHe6v\n\nEpic Creator Tag: PLAYUA",
"following": true,
"id": 1629998328,
"id_str": "1629998328",
"location": "\u0423\u043a\u0440\u0430\u0457\u043d\u0430",
"name": "PlayUA | \u041d\u0430\u0434\u044f\u0433\u043d\u0438 \u0336\u043c\u0336\u0430\u0336\u0441\u0336\u043a\u0336\u0443\u0336 \u043a\u0430\u0441\u043a\u0443, \u0431\u0443\u0434\u044c \u043b\u0430\u0441\u043a\u0430",
"profile_background_color": "1A1B1F",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif",
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif",
"profile_background_tile": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1629998328/1652696822",
"profile_image_url": "http://pbs.twimg.com/profile_images/1526147523244658691/N2PbXkYY_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1526147523244658691/N2PbXkYY_normal.jpg",
"profile_link_color": "2FC2EF",
"profile_sidebar_border_color": "FFFFFF",
"profile_sidebar_fill_color": "252429",
"profile_text_color": "666666",
"profile_use_background_image": true,
"screen_name": "playua",
"url": "https://t.co/Yw5szJTf75",
"withheld_in_countries": []
},
{
"created_at": "Tue May 30 08:11:37 +0000 2017",
"description": "\u041c\u0430\u043c\u0430 \u043a\u0430\u0436\u0435, \u0449\u043e \u044f \u043a\u043b\u0430\u0441\u043d\u0438\u0439 \u263a\ufe0f\n\u041a\u043e\u043d\u0442\u0435\u043d\u0442\u043c\u0435\u0439\u043a\u0435\u0440, \u0441\u0442\u0440\u0456\u043c\u0435\u0440, \u043f\u043e\u0434\u043a\u0430\u0441\u0442\u0435\u0440, \u0430\u043a\u0442\u043e\u0440 \u043e\u0437\u0432\u0443\u0447\u0435\u043d\u043d\u044f \u0456 \u043f\u0440\u043e\u0441\u0442\u043e \u043c\u043e\u043b\u043e\u0434\u0435\u0446\u044c\ud83d\ude05",
"following": true,
"id": 869466311256100864,
"id_str": "869466311256100864",
"name": "\u041f\u0410\u0414\u041e\u041d",
"profile_background_color": "000000",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/869466311256100864/1658834696",
"profile_image_url": "http://pbs.twimg.com/profile_images/1511704746805145604/dE4_ilCp_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1511704746805145604/dE4_ilCp_normal.jpg",
"profile_link_color": "FF691F",
"profile_sidebar_border_color": "000000",
"profile_sidebar_fill_color": "000000",
"profile_text_color": "000000",
"screen_name": "pad0n",
"url": "https://t.co/Iv9YFaOSvn",
"withheld_in_countries": []
},
{
"created_at": "Fri Feb 25 22:26:40 +0000 2022",
"default_profile": true,
"description": "\u043f\u043e\u0442\u0454\u0448\u043d\u0430 \u0436\u0456\u043d\u043a\u0430, \u043c\u043e\u0434\u0435\u043b\u044c \u043d\u0430 \u043c\u0456\u043d\u0456\u043c\u0430\u043b\u043a\u0430\u0445| \u0437\u0431\u0438\u0440\u0430\u044e \u043d\u0430 \u043d\u043e\u0432\u0456 \u0437\u0443\u0431\u0438: 4441114440051041",
"following": true,
"geo_enabled": true,
"id": 1497337147837366274,
"id_str": "1497337147837366274",
"location": "\u0423\u043a\u0440\u0430\u0457\u043d\u0430",
"name": "\u041c\u0435\u0442\u0438\u0441\u043a\u0430 \u0437 \u043f\u043e\u0434\u043e\u043b\u0443",
"profile_background_color": "F5F8FA",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1497337147837366274/1655761935",
"profile_image_url": "http://pbs.twimg.com/profile_images/1538900143927349249/m-MN4m5G_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1538900143927349249/m-MN4m5G_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "tatarstan98",
"withheld_in_countries": []
},
{
"created_at": "Wed Apr 06 23:52:48 +0000 2022",
"default_profile": true,
"description": "Artist, writer, @frontlinepbs translator. Born in Belarus, married to \ud83c\uddfa\ud83c\udde6. Watch Frontline documentary about Kharkiv during the war \u2193",
"following": true,
"id": 1511854382878494724,
"id_str": "1511854382878494724",
"location": "U.S.",
"name": "Darya Zorka",
"profile_background_color": "F5F8FA",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1511854382878494724/1665189186",
"profile_image_url": "http://pbs.twimg.com/profile_images/1511854468123574276/cqcDoo4N_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1511854468123574276/cqcDoo4N_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "daryazorka",
"url": "https://t.co/fAL02IQec4",
"withheld_in_countries": []
},
{
"created_at": "Thu Sep 12 09:29:08 +0000 2019",
"default_profile": true,
"description": "Coder \u2022 Freelancer \u2022 Creator \u2022 Maker |\nCloud \u2022 DevOps \u2022 Full-Stack \u2022 Data \u2022 Security \u2022 AI |\nYoutube: https://t.co/U2D9Tu1Ucz |\nNewsletter: https://t.co/jN41h1n9Br",
"following": true,
"id": 1172079654850744320,
"id_str": "1172079654850744320",
"location": "\ud83d\udce9 DM for Collab",
"name": "Simon",
"profile_background_color": "F5F8FA",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1172079654850744320/1667368728",
"profile_image_url": "http://pbs.twimg.com/profile_images/1177851392876318720/1LlZtDTx_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1177851392876318720/1LlZtDTx_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "simonholdorf",
"url": "https://t.co/AtbkJcHgcS",
"withheld_in_countries": []
},
{
"created_at": "Sat Jun 18 09:21:27 +0000 2022",
"default_profile": true,
"description": "\u041d\u0430\u0443\u043a\u043e\u0432\u0435\u0446\u044c.",
"following": true,
"id": 1538089418577297411,
"id_str": "1538089418577297411",
"location": "\u0423\u043a\u0440\u0430\u0457\u043d\u0430",
"name": "\u041e\u0434\u0430\u0440\u043a\u0430 \ud83d\ude3a",
"profile_background_color": "F5F8FA",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1538089418577297411/1657744525",
"profile_image_url": "http://pbs.twimg.com/profile_images/1581045079078322178/LbVrw5BN_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1581045079078322178/LbVrw5BN_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "DarkaOdarochka",
"url": "https://t.co/WgBsV2nTBE",
"withheld_in_countries": []
},
{
"created_at": "Sat Dec 11 11:33:54 +0000 2021",
"default_profile": true,
"description": "\u25aa\u043a\u043e\u043c\u0443\u043d\u0456\u043a\u0430\u0446\u0456\u0439\u043d\u0438\u0446\u044f\u25aa\u0444\u043e\u043f\u0447\u0438\u043d\u044f\u25aa\u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u043a\u0430 SAAD\u25aa\u0432\u043e\u043b\u043e\u043d\u0442\u0435\u0440\u043a\u0430 https://t.co/FrR6qEJWaV\u25aa \u043c\u0456\u0439 fb: https://t.co/uhqb6RIY0R",
"following": true,
"id": 1469631463306018821,
"id_str": "1469631463306018821",
"name": "Natalia Shevchuk",
"profile_background_color": "F5F8FA",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1469631463306018821/1639427756",
"profile_image_url": "http://pbs.twimg.com/profile_images/1469632127499132934/fKEeRrYK_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1469632127499132934/fKEeRrYK_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "natalia_shev4uk",
"url": "https://t.co/cI6Oapf9nu",
"withheld_in_countries": []
},
{
"created_at": "Thu Aug 02 07:49:54 +0000 2012",
"following": true,
"id": 732393506,
"id_str": "732393506",
"location": "Paris, France",
"name": "inna shevchenko",
"profile_background_color": "DBE9ED",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif",
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/732393506/1662378248",
"profile_image_url": "http://pbs.twimg.com/profile_images/1506384176500650000/Lq-DyB8I_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1506384176500650000/Lq-DyB8I_normal.jpg",
"profile_link_color": "FFCC4D",
"profile_sidebar_border_color": "DBE9ED",
"profile_sidebar_fill_color": "E6F6F9",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "femeninna",
"url": "https://t.co/LCFh7E5IPl",
"verified": true,
"withheld_in_countries": []
},
{
"created_at": "Tue Sep 23 05:08:07 +0000 2014",
"default_profile": true,
"description": "\u0414\u043b\u044f \u0442\u0438\u0445, \u0445\u0442\u043e \u0445\u043e\u0447\u0435 \u0432\u0434\u043e\u0441\u043a\u043e\u043d\u0430\u043b\u044e\u0432\u0430\u0442\u0438 \u0443\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0443 \u043c\u043e\u0432\u0443",
"following": true,
"id": 2827417134,
"id_str": "2827417134",
"location": "Ukraina",
"name": "\u041c\u043e\u0432\u0430 \u2013 \u0414\u041d\u041a \u043d\u0430\u0446\u0456\u0457",
"profile_background_color": "C0DEED",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2827417134/1588701752",
"profile_image_url": "http://pbs.twimg.com/profile_images/693196839852478464/BXd1AGjS_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/693196839852478464/BXd1AGjS_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "Mova_ukr",
"url": "https://t.co/UkVzHBqdjD",
"withheld_in_countries": []
},
{
"created_at": "Sat Oct 15 01:10:14 +0000 2022",
"default_profile": true,
"description": "\u0411\u043b\u0430\u0433\u043e\u0432\u0456\u0440\u043d\u0430 \u0441\u0443\u0434\u0434\u0456 \u0414\u0440\u0435\u0434\u0430, \u0441\u0435\u0441\u0442\u0440\u0430 \u0412\u043e\u0440\u0437\u0435\u043b\u044f.\n\n\u041f\u043e\u0440\u043e\u0448\u0435\u043d\u043a\u043e-\u043f\u0440\u0435\u0437\u0438\u0434\u0435\u043d\u0442, \u0417\u0435\u043b\u0435\u043d\u0441\u044c\u043a\u0438\u0439-\u043c\u0443\u0434\u0430\u043a, \u0440\u0443\u0441\u043d\u044f-\u043d\u0435 \u043b\u044e\u0434\u0438.\n\n#russiaIsATerroristState",
"following": true,
"id": 1581089984760643589,
"id_str": "1581089984760643589",
"name": "Cinnamon bun commander",
"profile_background_color": "F5F8FA",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1581089984760643589/1666957331",
"profile_image_url": "http://pbs.twimg.com/profile_images/1585960107032068096/pCpvrWm8_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1585960107032068096/pCpvrWm8_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "MyResistance",
"withheld_in_countries": []
},
{
"created_at": "Sun Mar 13 09:53:33 +0000 2016",
"description": "Founder of \ud83c\uddfa\ud83c\udde6 military charity fund @dzygaspaw. Former Software Engineer, Leader @lvivdotnet. I love my dog. Support charity \ud83d\udc3e - PayPal [email protected]\ud83e\udee1",
"following": true,
"geo_enabled": true,
"id": 708954141700329472,
"id_str": "708954141700329472",
"location": "Lviv, Ukraine",
"name": "Dimko Zhluktenko \ud83c\uddfa\ud83c\udde6",
"profile_background_color": "000000",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/708954141700329472/1666077647",
"profile_image_url": "http://pbs.twimg.com/profile_images/1437742898104213507/31uxCLAX_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1437742898104213507/31uxCLAX_normal.jpg",
"profile_link_color": "981CEB",
"profile_sidebar_border_color": "000000",
"profile_sidebar_fill_color": "000000",
"profile_text_color": "000000",
"screen_name": "dim0kq",
"url": "https://t.co/j26ZX8m1fx",
"withheld_in_countries": []
},
{
"created_at": "Tue Apr 28 12:10:50 +0000 2009",
"description": "Director & Professor @STGEUI. Chair @cmioffice. Former Prime-, Finance- & Foreign Minister of Finland (2008-16). Bookworm. PhD LSE. Sportsnut. Sub-9.30 Ironman.",
"following": true,
"id": 36048614,
"id_str": "36048614",
"location": "Finland",
"name": "Alexander Stubb",
"profile_background_color": "FFFFFF",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/36048614/1542116564",
"profile_image_url": "http://pbs.twimg.com/profile_images/897907050927321089/MOq1ggH7_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/897907050927321089/MOq1ggH7_normal.jpg",
"profile_link_color": "0084B4",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "FFFFFF",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "alexstubb",
"url": "https://t.co/arbPVO4iyM",
"verified": true,
"withheld_in_countries": []
},
{
"created_at": "Mon Aug 01 22:17:12 +0000 2022",
"default_profile": true,
"description": "Kherson is Ukraine.\ud83c\uddfa\ud83c\udde6 russia is terrorist state.",
"following": true,
"geo_enabled": true,
"id": 1554229733382144000,
"id_str": "1554229733382144000",
"location": "Prague, Czech Republic",
"name": "Maria",
"profile_background_color": "F5F8FA",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1554229733382144000/1665526108",
"profile_image_url": "http://pbs.twimg.com/profile_images/1579925921397628931/so9oiamK_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1579925921397628931/so9oiamK_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "Maria_Kherson",
"withheld_in_countries": []
},
{
"created_at": "Tue Jul 28 02:23:28 +0000 2009",
"description": "political scientist, author, teach at columbia sipa, columnist at time, president @eurasiagroup, @gzeromedia. if you lived here, you'd be home now.",
"following": true,
"id": 60783724,
"id_str": "60783724",
"name": "ian bremmer",
"profile_background_color": "022330",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png",
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/60783724/1666882638",
"profile_image_url": "http://pbs.twimg.com/profile_images/1412173067904823298/rjTfso9L_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1412173067904823298/rjTfso9L_normal.jpg",
"profile_link_color": "3489B3",
"profile_sidebar_border_color": "FFFFFF",
"profile_sidebar_fill_color": "C0DFEC",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "ianbremmer",
"url": "https://t.co/QWTw1TWh5C",
"verified": true,
"withheld_in_countries": []
},
{
"created_at": "Tue Aug 13 10:14:04 +0000 2013",
"description": "@NewVoiceUkraine executive editor. An award-winning journalist. Bylines: NBC News, Vice, Politico, OCCRP, NYT, the Atlantic and others. views my own.",
"following": true,
"id": 1667415740,
"id_str": "1667415740",
"location": "\u0423\u043a\u0440\u0430\u0457\u043d\u0430",
"name": "Nika Melkozerova",
"profile_background_color": "000000",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1667415740/1666526773",
"profile_image_url": "http://pbs.twimg.com/profile_images/1587646261200568321/FDaz9uic_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1587646261200568321/FDaz9uic_normal.jpg",
"profile_link_color": "7FDBB6",
"profile_sidebar_border_color": "000000",
"profile_sidebar_fill_color": "000000",
"profile_text_color": "000000",
"screen_name": "NikaMelkozerova",
"url": "https://t.co/drqRcIdimI",
"verified": true,
"withheld_in_countries": []
},
{
"created_at": "Sun Jul 25 13:43:28 +0000 2010",
"default_profile": true,
"following": true,
"geo_enabled": true,
"id": 170685061,
"id_str": "170685061",
"name": "Scraps of Moscow",
"profile_background_color": "C0DEED",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/170685061/1626126531",
"profile_image_url": "http://pbs.twimg.com/profile_images/1087393970/Scraps_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1087393970/Scraps_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "scrapsofmoscow",
"withheld_in_countries": []
},
{
"created_at": "Tue Jul 14 11:25:22 +0000 2015",
"default_profile": true,
"description": "Human rights activist & anti-ISIS campaigner. Now fighting Russia alongside the 131 Recon Battalion \ud83c\uddfa\ud83c\udde6\nServed for 3 years in the SDF.\nMSc Security & Diplomacy",
"following": true,
"geo_enabled": true,
"id": 3375577991,
"id_str": "3375577991",
"location": "London, England",
"name": "Macer Gifford",
"profile_background_color": "C0DEED",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3375577991/1590492267",
"profile_image_url": "http://pbs.twimg.com/profile_images/1584512197127979008/g7Z_r_DV_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1584512197127979008/g7Z_r_DV_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "macergifford",
"url": "https://t.co/pVU2zYn3id",
"withheld_in_countries": [
"TR"
]
},
{
"created_at": "Sat May 05 13:59:03 +0000 2012",
"default_profile": true,
"description": "Ambassadeur de France en Ukraine / French Ambassador to Ukraine / \u041f\u043e\u0441\u043e\u043b \u0424\u0440\u0430\u043d\u0446\u0456\u0457 \u0432 \u0423\u043a\u0440\u0430\u0457\u043d\u0456 \ud83c\uddeb\ud83c\uddf7 \ud83c\uddfa\ud83c\udde6\nRetweet is not endorsement",
"following": true,
"geo_enabled": true,
"id": 571771456,
"id_str": "571771456",
"location": "Ukraine",
"name": "Etienne de Poncins",
"profile_background_color": "C0DEED",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/571771456/1650794589",
"profile_image_url": "http://pbs.twimg.com/profile_images/1159872879229640704/ZDZNKsCE_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1159872879229640704/ZDZNKsCE_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "EdePoncins",
"url": "https://t.co/yw5PB1Selg",
"verified": true,
"withheld_in_countries": []
},
{
"created_at": "Thu Feb 27 22:06:00 +0000 2020",
"default_profile": true,
"description": "\u2192 Groupe sans caract\u00e8re officiel compos\u00e9 d'experts, d'analystes, de consultants et avant tout de passionn\u00e9s discutant d'actualit\u00e9 dans de nombreux domaines.",
"following": true,
"id": 1233151236154761217,
"id_str": "1233151236154761217",
"location": "Paris, France",
"name": "(Little) Think Tank",
"profile_background_color": "F5F8FA",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1233151236154761217/1605490687",
"profile_image_url": "http://pbs.twimg.com/profile_images/1525306536960135168/xvoXBjb5_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1525306536960135168/xvoXBjb5_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "L_ThinkTank",
"url": "https://t.co/ANx5rul37Y",
"withheld_in_countries": []
},
{
"created_at": "Sat Jul 07 13:57:23 +0000 2012",
"description": "Ex aviateur mili, consultant a\u00e9ro-d\u00e9fense et influenceur (il para\u00eet). Fan d'#OSINT kaki et appeau \u00e0 trolls. Fondateur de https://t.co/lfe2JrNx2U #AvGeek",
"following": true,
"geo_enabled": true,
"id": 629350882,
"id_str": "629350882",
"location": "Paris",
"name": "Xavier Tytelman",
"profile_background_color": "C0DEED",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/629350882/1409431239",
"profile_image_url": "http://pbs.twimg.com/profile_images/490254667813617666/Mi034OoC_normal.jpeg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/490254667813617666/Mi034OoC_normal.jpeg",
"profile_link_color": "0084B4",
"profile_sidebar_border_color": "FFFFFF",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "PeurAvion",
"url": "https://t.co/BBOA96v81r",
"verified": true,
"withheld_in_countries": []
},
{
"created_at": "Fri Jun 20 18:59:00 +0000 2014",
"default_profile": true,
"description": "Je ne suis qu'un enfant de la France, \u00e0 l'ennemi je ne tends pas la main.\n#IMINT #OSINT #NAFO",
"following": true,
"geo_enabled": true,
"id": 2579115380,
"id_str": "2579115380",
"location": "Strasbourg / Kyiv",
"name": "DarthAlsaceFran\u00e7aise",
"profile_background_color": "C0DEED",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2579115380/1440017566",
"profile_image_url": "http://pbs.twimg.com/profile_images/669801215061041152/yQy2wOuo_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/669801215061041152/yQy2wOuo_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "Ars_Faivre",
"withheld_in_countries": []
},
{
"created_at": "Sun Oct 27 05:39:21 +0000 2019",
"default_profile": true,
"description": "Open Source Intelligence Specialist with @CNA_org. Standard spiel about not endorsing retweets, my views/freezing cold takes are my own.",
"following": true,
"geo_enabled": true,
"id": 1188329290162675713,
"id_str": "1188329290162675713",
"location": "Depends on the week",
"name": "OSINTtechnical",
"profile_background_color": "F5F8FA",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1188329290162675713/1662659138",
"profile_image_url": "http://pbs.twimg.com/profile_images/1191175818933932032/W4GF6Nbe_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1191175818933932032/W4GF6Nbe_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "Osinttechnical",
"url": "https://t.co/xrXYGxUQW7",
"withheld_in_countries": []
},
{
"created_at": "Fri Mar 18 11:03:04 +0000 2022",
"default_profile": true,
"description": "\u0417\u043b\u0438\u0439 \u0431\u0440\u0430\u0442-\u0431\u043b\u0438\u0437\u043d\u044e\u043a \u0443\u0431\u0438\u0442\u043e\u0433\u043e \u0441\u0443\u0434\u0434\u0456 \u0414\u0440\u0435\u0434\u0434\u0430\n\u0425\u0440\u043e\u043d\u0456\u043a\u0438 \u0443\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u043e\u0433\u043e \u043f\u0440\u0430\u0432\u043e\u0441\u0443\u0434\u0434\u044f",
"following": true,
"id": 1504775334247419906,
"id_str": "1504775334247419906",
"name": "Judge Rico Dredd",
"profile_background_color": "F5F8FA",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1504775334247419906/1663610643",
"profile_image_url": "http://pbs.twimg.com/profile_images/1571922987972001797/gTWe5h5x_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1571922987972001797/gTWe5h5x_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "countelephants",
"withheld_in_countries": []
},
{
"created_at": "Sat Jun 04 07:08:49 +0000 2022",
"default_profile": true,
"description": "\u0417\u0435\u043c\u0441\u044c\u043a\u0438\u0439 \u0432\u0456\u0439\u0441\u044c\u043a\u043e\u0432\u0438\u0439 \u0430\u043d\u0435\u0441\u0442.\n\u0410\u043f\u043e\u043b\u043e\u0433\u0435\u0442 \u043f\u043e\u043c\u0456\u0440\u043d\u043e\u0457 \u0437\u0440\u0430\u0434\u0438. \u041d\u0430\u0433\u0430\u0434\u0443\u044e \u043f\u0440\u043e \u0446\u0456\u043d\u0443 \u043d\u0430\u0448\u043e\u0457 \u043f\u0435\u0440\u0435\u043c\u043e\u0433\u0438",
"following": true,
"id": 1532982650297778176,
"id_str": "1532982650297778176",
"location": "\u0423\u043a\u0440\u0430\u0457\u043d\u0430",
"name": "medgoblin",
"profile_background_color": "F5F8FA",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1532982650297778176/1667247940",
"profile_image_url": "http://pbs.twimg.com/profile_images/1532982915180765187/T4PKQt1h_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1532982915180765187/T4PKQt1h_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "med_goblin",
"withheld_in_countries": []
},
{
"created_at": "Wed Sep 14 13:09:23 +0000 2022",
"default_profile": true,
"description": "\u041f\u043e\u0435\u0442, \u0432\u0438\u0434\u0430\u0432\u0435\u0446\u044c, \u0430\u0431\u0430\u0431\u0430\u0433\u0430\u043b\u0430\u043c\u0430\u0433",
"following": true,
"geo_enabled": true,
"id": 1570036851586600961,
"id_str": "1570036851586600961",
"location": "\u0423\u043a\u0440\u0430\u0457\u043d\u0430",
"name": "\u0406\u0432\u0430\u043d \u041c\u0430\u043b\u043a\u043e\u0432\u0438\u0447",
"profile_background_color": "F5F8FA",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1570036851586600961/1663235003",
"profile_image_url": "http://pbs.twimg.com/profile_images/1570037302910504965/Re639rBI_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1570037302910504965/Re639rBI_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "ivan_malkovych",
"withheld_in_countries": []
},
{
"created_at": "Fri Jan 21 16:48:59 +0000 2022",
"default_profile": true,
"description": "Info on Ukraine in UA/ENG, military/humanitarian aid, political comms. Oh, and I\u2019m NOT President Zelensky\u2019s advisor\u2019s wife :)",
"following": true,
"geo_enabled": true,
"id": 1484568566397612035,
"id_str": "1484568566397612035",
"location": "Ukraine",
"name": "Melaniya Podolyak",
"profile_background_color": "F5F8FA",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1484568566397612035/1652383904",
"profile_image_url": "http://pbs.twimg.com/profile_images/1586739800001871882/3aBKg9IS_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1586739800001871882/3aBKg9IS_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "MelaniePodolyak",
"url": "https://t.co/yHCSa2sYMY",
"verified": true,
"withheld_in_countries": []
},
{
"created_at": "Sun Oct 10 16:56:27 +0000 2010",
"description": "Kansanedustaja / Member of Parliament\n\nWe/us/our",
"following": true,
"id": 200923051,
"id_str": "200923051",
"location": "Helsinki, Finland",
"name": "Jussi Halla-aho",
"profile_background_color": "5F6265",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_background_tile": true,
"profile_image_url": "http://pbs.twimg.com/profile_images/961268949131374592/AUX1Nqfb_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/961268949131374592/AUX1Nqfb_normal.jpg",
"profile_link_color": "575E81",
"profile_sidebar_border_color": "747CA0",
"profile_sidebar_fill_color": "D8D8D8",
"profile_text_color": "140F0B",
"screen_name": "Halla_aho",
"url": "https://t.co/SV43mJSXb8",
"verified": true,
"withheld_in_countries": []
},
{
"created_at": "Thu Nov 25 07:52:27 +0000 2021",
"default_profile": true,
"description": "J'avais pris un nv compte pour me d\u00e9tendre..\nC'est rat\u00e9.\nDon't try to sell me your infamous blue check mark.\nCartes, r\u00e9flexions & Analyses... parfois.",
"following": true,
"id": 1463777306539868162,
"id_str": "1463777306539868162",
"location": "Deep in your mind",
"name": "J. comme J\u00e9J\u00e9 \ud83c\uddeb\ud83c\uddf7 \ud83c\uddfa\ud83c\udde6 #UkraineMap",
"profile_background_color": "F5F8FA",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1463777306539868162/1647073878",
"profile_image_url": "http://pbs.twimg.com/profile_images/1463777588497858564/VaNJCqoN_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1463777588497858564/VaNJCqoN_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "HeliosRunner",
"withheld_in_countries": []
},
{
"created_at": "Mon Jun 20 21:42:55 +0000 2022",
"default_profile": true,
"description": "\u0433\u0440\u0435\u0446\u044c, \u0431\u043e\u0440\u0435\u0446\u044c \u0456 \u043f\u0438\u0437\u0434\u0435\u0446\u044c. \u0442\u0440\u043e\u0445\u0438 \u0441\u0443\u043c\u043d\u0430 \u0445\u0430\u0441\u043a\u0456.\n\u0434\u0443\u0436\u0435 \u043f\u043e\u0442\u0438\u0445\u0435\u043d\u044c\u043a\u0443 \u0432\u043e\u044e\u044e.",
"following": true,
"id": 1539000802613903361,
"id_str": "1539000802613903361",
"name": "\u0446\u0438\u0430\u043d\u0456\u0434 \u0442\u0430 \u043d\u0435\u0449\u0430\u0441\u0442\u044f\u0447\u043a\u043e \u0442\u0438 \u043c\u043e\u0454",
"profile_background_color": "F5F8FA",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1539000802613903361/1657397499",
"profile_image_url": "http://pbs.twimg.com/profile_images/1585279236545323009/k-XU7pwx_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1585279236545323009/k-XU7pwx_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "_CyAUnide_",
"withheld_in_countries": []
},
{
"created_at": "Sat Sep 23 07:31:20 +0000 2017",
"default_profile": true,
"description": "\ud83c\uddfa\ud83c\udde6Ukraine\u2019s leading YouTube channel. Operative info on Russia\u2019s war against Ukraine. \nPlease, support our twitter account:\nPayPal [email protected]",
"following": true,
"id": 911493165399539713,
"id_str": "911493165399539713",
"location": "Kyiv, Ukraine",
"name": "Toronto Television / \u0422\u0435\u043b\u0435\u0431\u0430\u0447\u0435\u043d\u043d\u044f \u0422\u043e\u0440\u043e\u043d\u0442\u043e",
"profile_background_color": "F5F8FA",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/911493165399539713/1646483402",
"profile_image_url": "http://pbs.twimg.com/profile_images/1544678158410162176/OJ8BWDoC_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1544678158410162176/OJ8BWDoC_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "tvtoront",
"url": "https://t.co/cdqiAZ2bvn",
"verified": true,
"withheld_in_countries": []
},
{
"created_at": "Sun Jun 18 08:32:18 +0000 2017",
"default_profile": true,
"description": "Communications head. There is always more to take. Ukraine will win. Russia will die. Views here are my own.",
"following": true,
"geo_enabled": true,
"id": 876356886483935232,
"id_str": "876356886483935232",
"location": "\u0423\u043a\u0440\u0430\u0457\u043d\u0430",
"name": "Yuliia Re",
"profile_background_color": "F5F8FA",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/876356886483935232/1659275314",
"profile_image_url": "http://pbs.twimg.com/profile_images/1562193655485825031/1OjQ-byu_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1562193655485825031/1OjQ-byu_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "nakhiba",
"withheld_in_countries": []
},
{
"created_at": "Fri Apr 04 12:55:32 +0000 2014",
"description": "Researcher at ICSI and Chief Mad Scientist (+CEO, +Janitor) of Skerry Technologies. Contact: nweaver at gmail .com, or Signal. he/him\n@[email protected]",
"following": true,
"id": 2427244933,
"id_str": "2427244933",
"location": "Berkeley, CA",
"name": "Nicholas Weaver \ud83d\udc00",
"profile_background_color": "000000",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2427244933/1652741888",
"profile_image_url": "http://pbs.twimg.com/profile_images/1584702685432860673/2dAPZyeu_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1584702685432860673/2dAPZyeu_normal.jpg",
"profile_link_color": "3B94D9",
"profile_sidebar_border_color": "000000",
"profile_sidebar_fill_color": "000000",
"profile_text_color": "000000",
"screen_name": "ncweaver",
"url": "https://t.co/HC1OVKuIAY",
"verified": true,
"withheld_in_countries": []
},
{
"created_at": "Sat Mar 26 10:49:49 +0000 2022",
"default_profile": true,
"description": "YouTuber, \u044f\u043a\u0438\u0439 \u0432\u0438\u0440\u0456\u0448\u0438\u0432 \u0441\u043f\u0440\u043e\u0431\u0443\u0432\u0430\u0442\u0438 \u0432\u0435\u0441\u0442\u0438 Twitter",
"following": true,
"id": 1507671007166873603,
"id_str": "1507671007166873603",
"name": "\u0412\u0456\u0442\u0430\u043b\u0456\u0439 \u0413\u043e\u0440\u0434\u0456\u0454\u043d\u043a\u043e",
"profile_background_color": "F5F8FA",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1507671007166873603/1663437664",
"profile_image_url": "http://pbs.twimg.com/profile_images/1507671359530450944/LWqcgGvx_normal.jpg",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1507671359530450944/LWqcgGvx_normal.jpg",
"profile_link_color": "1DA1F2",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"screen_name": "HordiienkoZK",
"url": "https://t.co/4XYeOEPHQD",
"withheld_in_countries": []
},
{
"created_at": "Fri Mar 11 20:53:53 +0000 2022",
"default_profile": true,
"description": "\u041c\u0435\u0434\u0456\u0430 \u0490\u0420\u0423\u041d\u0422 \u043f\u0438\u0448\u0435 \u043f\u0440\u043e \u0423\u043a\u0440\u0430\u0457\u043d\u0443 \u0442\u0430 \u0443\u043a\u0440\u0430\u0457\u043d\u0446\u0456\u0432: \u043f\u0440\u043e \u0432\u0456\u0439\u043d\u0443 \u0442\u0430 \u043c\u0438\u0440, \u043f\u0440\u043e \u043f\u043e\u043b\u0456\u0442\u0438\u043a\u0443 \u0442\u0430 \u0435\u043a\u043e\u043d\u043e\u043c\u0456\u043a\u0443, \u043f\u0440\u043e \u0447\u043e\u0440\u043d\u0435 \u0442\u0430 \u0431\u0456\u043b\u0435 \u0443 \u0436\u0438\u0442\u0442\u0456 \u043d\u0430\u0448\u043e\u0457 \u043a\u0440\u0430\u0457\u043d\u0438.",
"following": true,
"id": 1502387317360807939,
"id_str": "1502387317360807939",
"location": "Ukraine",
"name": "\u0490\u0420\u0423\u041d\u0422",
"profile_background_color": "F5F8FA",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1502387317360807939/1652953374",