Expand file tree
/
Copy path# brazil_2026_election_filter.rs
More file actions
1573 lines (1532 loc) · 39.9 KB
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
use rustc_hash::FxHashSet;
use std::sync::LazyLock;
use crate::models::candidate::PostCandidate;
use crate::models::query::ScoredPostsQuery;
use xai_candidate_pipeline::filter::{Filter, FilterResult};
// Brazil 2026 election filter
// Application providers that use a recommendation system for users must exclude from the
// results the channels and profiles reported to the Electoral Court under the terms of
// § 1º of this article and, except in cases of paid boosting, the content posted on them.
// https://dadosabertos.tse.jus.br/dataset/candidatos-2026
// User ids below are obfuscated; usernames are included for transparency.
// OmarAzizSenador deleted his account at the time this code was written.
/// User ids reported to the Electoral Court for the Brazil 2026 election.
static BRAZIL_2026_ELECTION_USER_IDS: LazyLock> = LazyLock::new(|| {
FxHashSet::from_iter([
// @renildo
14160928,
// @renatoroseno
14492205,
// @pedro_lupion
15022409,
// @Sen_Cristovam
20242549,
// @marcelvanhattem
21069302,
// @nilvanferreira
21571098,
// @RafaellMilas
21857669,
// @chagasvieira
22035789,
// @GabrielSouza_RS
22480147,
// @Pimenta13Br
22864100,
// @rigotto
23443097,
// @euserafimcorrea
24761475,
// @ManuelaDavila
25858078,
// @CintyaMuniz
26284058,
// @depguibismarck
29026134,
// @cirogomes
33374761,
// @aldenorlima
33973761,
// @jooliveirapb
34909888,
// @caduxavier
35470350,
// @NetoAM
36145775,
// @marciokieller
36403221,
// @AlicePortugal
36971658,
// @eniobritodesa
37654300,
// @dep_geraldo
37711911,
// @inacioarruda
38659819,
// @murilogaldinopb
40040727,
// @FlavioBolsonaro
40053694,
// @BetoAlbuquerque
40463380,
// @alexandrekalil
40721032,
// @jessicamichels
41355867,
// @lcbusato
42300711,
// @Alice_Portugal
42304398,
// @DepArthurMaia
42454330,
// @kruke1
42487937,
// @marcelorangel1
44107208,
// @perpetua_acre
44693900,
// @PedroTaquesMT
45448098,
// @betinhogomes
46958570,
// @DanielVilela15
47371488,
// @zeca_dirceu
47461491,
// @eduardopaes
48298703,
// @RicardoBarrosPP
50101324,
// @danielxdonizet
50360881,
// @anyortiz
50430144,
// @priscilakrause
51066167,
// @advcorrea
51169114,
// @afranioboppre50
51735736,
// @DeputadoBacelar
52364013,
// @JuniorMochi
52483984,
// @GuilhermePaz
52750366,
// @rosanedopv
52842057,
// @RodrigoGuedesam
52954632,
// @RollembergPSB
53050115,
// @jorginhomello
53073647,
// @nelsinhotrad
54412355,
// @RubensOtoni
54539654,
// @DeputadoWelter
54545619,
// @marcosdoval
54600557,
// @mineiroptrn
54897084,
// @dep_acoutinho
56480030,
// @venezianovital
56734024,
// @DelegadoMeneses
57108807,
// @RobinsonFaria
57151676,
// @HarifeViegas
57163107,
// @AlineMariano_pe
58314645,
// @fredlinhares
58328715,
// @JutayMeneses
59243227,
// @fernandofilhope
59323812,
// @franzepiaui
61190865,
// @ale_campelo
61325857,
// @carlaayres
62286707,
// @HenriqueFontana
62804559,
// @BohnGass
63127680,
// @JoseAirtonPT
63868587,
// @Bobadra
64302060,
// @Marco_Brasil
64434503,
// @livioluciano
65059970,
// @FatimaCleidePT
65491379,
// @fabio_novo
66413485,
// @miguelcoelhope
66525428,
// @VerGuilherme
66704302,
// @cantojocelito
66719730,
// @betodoisaum
66753261,
// @mateus_simoesmg
66789220,
// @ciro_nogueira
67098726,
// @PattyParente
67234932,
// @acirgurgacz
67601773,
// @eduardoreiner
67947379,
// @andrekamai
68404402,
// @costa_rui
68466700,
// @MarcosSantanaSC
68554516,
// @CarlosBolsonaro
68712576,
// @ProfIsrael
68719944,
// @juliophilbert
69073488,
// @Gyselle_Soares
70131422,
// @ernanipolo
70284501,
// @deputadoismael
70453020,
// @FaissalCalil
71602909,
// @SamuelMalafaia
73442547,
// @pauderney
73803827,
// @geraldoalckmin
74215006,
// @eduardobismarck
74361905,
// @luizcoutopt
74738674,
// @agenorsantospa
74867163,
// @santinroveda
75849275,
// @fabriciopref
76039110,
// @leitaothales
76224437,
// @DepMajorAraujo
76383384,
// @DepAfonsoHamm
76741399,
// @MarcelAlexandre
77266759,
// @raquelferreirar
78707944,
// @joslene65
78714361,
// @profdorinha
79174387,
// @capitaotadeu
80214491,
// @carlosmatosce
80597262,
// @depdarcidematos
80712669,
// @Adrianageronim
80733107,
// @HermanoMorais
80995814,
// @fabiofelixdf
81384580,
// @liviaduartepsol
81742151,
// @carlosjordy
82271629,
// @Manato_es
82433790,
// @darypagung
82936046,
// @joaoromaneto
84141432,
// @andrerochamg
84196661,
// @wevertonrocha
85859074,
// @realrcoutinho
86065271,
// @vozdaenf
86348991,
// @romeropelapb
88303403,
// @arthurgurgeladv
90630534,
// @ANDREAESPANHA
90898890,
// @wilsonlimaAM
91109801,
// @f_trad
92509126,
// @marcelodeputado
93116173,
// @tomazteixeira
93958167,
// @coroneldavidms
94378206,
// @ruycarneiropb
94428241,
// @samanthacavalca
94806323,
// @requiaooficial
95253000,
// @cabogilberto
95526088,
// @anapaulalimapt
95939603,
// @PROFTULIO
96570084,
// @maxmacieldf
98786988,
// @michelyfarina
99617723,
// @julioarcoverde
101016613,
// @PabloValenteDF
102257530,
// @NicolasTrancho
106110720,
// @DivaneidePT
107976868,
// @mayradiasam
108527180,
// @HugoMottaPB
108988113,
// @deplucasdelima
109318072,
// @adjutoafonso
109332428,
// @joaopaulodopt
109657263,
// @HendersonPinto
111717686,
// @alielmachado
115519533,
// @luizaogoulart
116541810,
// @adelmosoaress
116751115,
// @acrisiosena
117425043,
// @vereadorjulio
117594353,
// @julio_cesar_pi
119115954,
// @adrianogaldino
119586707,
// @sibellebarros
120535860,
// @aryvanazzi
121422504,
// @walteralvesrn
121425571,
// @netoevangelista
121594926,
// @felipecarreras
122184686,
// @delegadowaldir
123689660,
// @MarceloCastroPI
125822264,
// @jardelinacioam
126323536,
// @deputadopezenti
127708617,
// @ricardozguidi
127975238,
// @Mersinho_Lucena
129681031,
// @alexandrebaldy
130620293,
// @depdelmasso
132190299,
// @PedrodoOvo
132220469,
// @Larissafgaspar
132480664,
// @glaustindafokus
133692726,
// @sidneyleite_
135349877,
// @LucianoDucci
136004062,
// @tadeuveneri
137919701,
// @MerlongSolano
140413929,
// @lucianogenesio
142068227,
// @silvioantonioma
142501634,
// @Carloshbfavaro
143529694,
// @vicentinhojr
149013361,
// @pedrogomatos
152900822,
// @dacassia1
155768056,
// @profcanguru
156326262,
// @AzambujaReinald
157184730,
// @MarcosRogerio
160895960,
// @MarcoVamosaLuta
161318399,
// @marinorpsol
161404367,
// @Vanderlan_VC
162807255,
// @TJMFernandes
163251815,
// @EduardoBraga_AM
164439493,
// @crisrbritto
165329128,
// @Jeronimoba13
165754961,
// @DeputadoRoberio
165914831,
// @andrepdt12
165922194,
// @geovaniadesa
165936805,
// @caiopontess
165949065,
// @NelterQueiroz
166164275,
// @deputadotoninho
166417133,
// @marcocastilhoss
168408841,
// @gustavohaguera
168653875,
// @TiberioLimeira
168657354,
// @walterlfcaval
170638771,
// @JanineLucena
172579844,
// @tayannystefany
172581180,
// @toinharocha2
173823248,
// @raquellyra
174370381,
// @CinthiaCRibeiro
175438359,
// @queirozmfilho
175901537,
// @alxlindenmeyer
179749078,
// @VictorCoelhoES
182050588,
// @rodfvale
186331377,
// @MariaSeffair
199526953,
// @Anderson_Prego
201100473,
// @natbonavides
203332874,
// @AntonioCoelhoPe
208636149,
// @MeuEuPolitico
209674215,
// @saullovianna
210299199,
// @fatimacnagitos
212950503,
// @celmarcosantos
219262636,
// @arilsonchiorato
220353446,
// @boscosaraiva
221399756,
// @capitaowelton
222230527,
// @gardelrolim
226984087,
// @osmarfilhoma
230495542,
// @luisa_canziani
230950274,
// @deltapericles
239036359,
// @silascamara_
243018634,
// @UrsulaVidalPA
243429150,
// @DeAssisDiniz
247906787,
// @ranypaulino
252553750,
// @rdnarede
254172269,
// @deprsantos
254201392,
// @wellington_luiz
255637975,
// @macielchris
261472149,
// @coronelfrota
263153198,
// @catulejr
264391266,
// @alinegurgel_ap
267981392,
// @ayres_jr
269938072,
// @alexgalvaodf
272477039,
// @diegogarciapr
273616279,
// @doutorgutemberg
274515672,
// @marcelomaranata
287876093,
// @delegado_waldir
288735634,
// @coelho_rodrigo
290204659,
// @maitebrusman
294065810,
// @depkleberRN
302056921,
// @WedersonLopes
313684933,
// @_sergiosouza
317973567,
// @danielvalencapt
318019551,
// @depmaracaseiro
321414691,
// @loureirocris
322406139,
// @jorgeviana
325131009,
// @simboramudar22
337269106,
// @marisa_lobo
340331807,
// @MarceloBelinati
345512946,
// @edusantosdf
348089005,
// @leilafonsecapb
349053302,
// @paulinhoramosap
349163261,
// @andrefernm
360231929,
// @milkleileite
365210575,
// @andresalineiro
367519089,
// @Ana_claudiapb
370942708,
// @JorgeFrederico2
398245257,
// @brena_dianna
412508127,
// @faf_freitas
412669574,
// @zeliomota
420614002,
// @vitordeangelo
424455116,
// @instrutormarcio
437397340,
// @AllysonBezerra_
444925483,
// @CarlosMoises
456795842,
// @JulioCesarRib
459681629,
// @chicorafa_s
487108193,
// @pedroluislongo
487622592,
// @MoisesSantosAc
538269241,
// @JulianaBRedivo
545696318,
// @alcyvania
556852639,
// @OthelinoNeto
583377940,
// @AfonsoFlorence
599427558,
// @elmanooficial
626602522,
// @fabiogov55
630758039,
// @helenaduailibe_
632737286,
// @mitchellemeira
746090918,
// @suelenmarques06
796882578,
// @JenirNeves
813802178,
// @carlaopelobem
893975196,
// @Isoldadantaspt
999393290,
// @SHEILAKLENER
1038802238,
// @rodrigostm10
1038849745,
// @xambinhoes
1068257582,
// @tatianehelena81
1075326786,
// @depjanetedesa
1094959356,
// @prof_juniorgeo
1226451780,
// @marcoswesleymw
1308817182,
// @alexceoficial
1314840228,
// @D_GoretePereira
1362596354,
// @mickasevalho
1461892208,
// @deyvidbacelar
1526183576,
// @NegrahLima
1571332381,
// @marciopachecopf
1613063005,
// @GilvanMaximoOfc
1651852124,
// @Brandaveneno
1710385291,
// @dr_furlan
1844887189,
// @valmirdesergipe
1960681207,
// @helinhocastro
1977089148,
// @DepAntoniaLucia
2161527577,
// @LUANARUIZSILVA
2216639570,
// @DepFederalMoses
2217650233,
// @BrunoCarianha
2299610603,
// @DavidAlmeidaAM
2353403137,
// @capitaoassis10
2359974485,
// @Francadf_
2445938091,
// @Alfredoficial22
2474258532,
// @yuriarrudam
2495584641,
// @prof_rosaneide
2523520542,
// @viagensdaiw
2572998767,
// @anadogasoficial
2583179096,
// @barbosinhams
2612421128,
// @EderMauroPA
2632802395,
// @paulo_litro
2647646724,
// @LuizianneLinsCE
2666819714,
// @LulaOficial
2670726740,
// @marcoaurelioITZ
2691147288,
// @LucasVergilioGO
2717062461,
// @netto_expedito
2717313965,
// @tiaomedeiros
2732504341,
// @mqueiroga22
2823869072,
// @AlbertoMaiaf
2834745257,
// @paulolemosap
2881293743,
// @manascimentogo
2892653500,
// @LizianyM
2894163148,
// @carlosveraspt
3010698441,
// @mendanhagustavo
3018780587,
// @karlosbernardoA
3029604164,
// @zuleidequeirozf
3130842411,
// @meire_cruvinel
3205786257,
// @Marcio_Honaiser
3294107902,
// @deputadopriante
3305760711,
// @moisesbrazpt
3373574517,
// @kleybe_morais
3512854216,
// @carmelonetobr
3662771592,
// @paulo_mavignier
4043244676,
// @zeaugustonalin
4056653428,
// @_AlessandroSE
4250596815,
// @CarolDeToni
4566967516,
// @FofaBorges
4775264669,
// @AndreaOficial55
703604819538407424,
// @MARTACLERIALIMA
713343399898820608,
// @LiaGomesCE
724003686863740933,
// @ViniciusFerroC
726243481669242880,
// @brisabracchi13
728292397130592256,
// @cabo_senna
744609688415789056,
// @jarir_pereira
746804180430487554,
// @angelaamin11
766624608338477056,
// @vanessapstubh
770298023582765057,
// @Jorgepinheiroof
807903184576532480,
// @amorimvivian_
820867290749161472,
// @ProfessorEuler
824285052590845955,
// @angelocoronel_
829391158208032768,
// @AdelitaMonteiro
830144764360192002,
// @ranallipf
832322309436403712,
// @GeneralGirao
841700087143288832,
// @WillaceSouza
850775334362505216,
// @vivitobiasms
852960064159842305,
// @rodrigodiasbsb
863812402680397826,
// @pedroalmeidace
882539177757298689,
// @meuamigojoao
899602419302240257,
// @todandara
904842960931565568,
// @AlcyPinheiroCE
909049597091356673,
// @TorminCassiana
931087564064329728,
// @rigoni_felipe
939423395376136192,
// @sergiokruke
940210949943910401,
// @WilliamSiriRJ
958357145761845248,
// @dep_paulinha
973982865997385728,
// @Diegoferdfc
977195483507707904,
// @ZeCocaOficial
978602905690427392,
// @Renatoafjr
982217430297554945,
// @fernandomaximoX
983360917227364353,
// @RenilceOficial
984221723544444928,
// @eng_angelo44
984522534623301632,
// @IndiaraNOVO
986396254287646721,
// @leaolais_
986659343436255232,
// @ptmatiaspedro
986903953014128641,
// @KerexuOficial
992801222926196736,
// @kekabagno
993288307625943040,
// @annakarinapsol
1009608950176796677,
// @CapitaoContar
1011667518728089602,
// @Trom_Petista
1013494732834639874,
// @limmapiaui
1014568888078651392,
// @acaroldartora
1016697971843502080,
// @RomeuZema
1020798087449776128,
// @EduGiraoOficial
1024403315164160000,
// @Laurez_Moreira
1025352673292378113,
// @zenaidern
1025870063461720064,
// @BocaAbertaOf
1031914738933018624,
// @RafagninLuciana
1034079788162535424,
// @erikaamorimce
1034138653147242496,
// @AmauriRibeiroGO
1036681658760658945,
// @RenanSantosMBL
1042601099566436352,
// @raphaelbarrabr
1049870508643233793,
// @pluviapt
1062505159824150530,
// @capitaocarpe
1062678892216020992,
// @clarissatercio
1065379080084865024,
// @capalbertoneto
1076135802969772032,
// @tarcisiogdf
1078618844007157761,
// @MarcosA_Sampaio
1080911369447399430,
// @capitao_alden
1081245039920144384,
// @Khalill_gui
1083098735675084800,
// @wilkerbarretoam
1085537170276958208,
// @PlinioValerio45
1091691201844207617,
// @doriel_barros
1092446595889745921,
// @joaoluizam
1092549114762539009,
// @betopereirams
1092816222012534784,
// @biologiagabriel
1092879030465032192,
// @ZequinhaMarinho
1093223195258298368,
// @DepGuiLandim
1095422600854032390,
// @MondardoGiovana
1095645491419852800,
// @JuniorManoDep
1095696286974652422,
// @IdilvanAlencar
1095754303367720960,
// @depsargentolima
1095990374550695938,
// @DFDanielFreitas
1097498693719199744,
// @CelAlfredo
1098328459825287187,
// @benesleocadiorn
1099003656064643073,
// @depPedroLucasF
1104120809482866688,
// @PollonMarcos
1105081277135417345,
// @CoelhoAntonioPE
1106161642486796288,
// @SargentoBetania
1107097837194694663,
// @JoaoCampos
1112804630453501953,
// @SF_Moro
1113094855281008641,
// @faustojr_am
1116362076459601920,
// @10ronaldomartin
1118164353121968129,
// @deputadaniella
1118481835376431104,
// @flavionpi
1118489062866849793,
// @henriquecesarr
1121117485900730368,
// @georgebastos30
1141394024860966912,
// @CarboniRogerio
1143607219302387712,
// @pedrorochafilho
1151964529896644620,
// @washingtonban
1154733508088270849,
// @karlasarney_
1160505413697253376,
// @jofariasm_
1167172974451073024,
// @RobertoCidadeAm
1168549394830020608,
// @jadearomero
1171411853282557952,
// @prjuniortercio
1171959927771975680,
// @FranciscodoPT13
1188191474636206082,
// @SandraLimadeVa1
1199740816018853890,
// @LeoSuricate
1208544960032727040,
// @ManuVieiraSC
1210296676520513536,
// @CruzOrleans
1211689081861623808,
// @OficialNenemAl
1216746154626625536,
// @JairSoutoAM
1218904655591243777,
// @JohnRobertPA
1219003418347483136,
// @DrVictorAmoras
1224505061558161408,
// @KlesleyGarcia
1224615230195609601,
// @profterezinhaPT
1225158156545904642,
// @brenogaribalde
1225774842735202306,
// @gerlanebaccarin
1225861584972664833,
// @deputadoelizeu
1226865113635926021,
// @dramayraoficial
1226874382938787841,
// @BabaTupinamba
1232082766071767045,
// @MassamiMiki
1234278834519920642,
// @juizcubas
1234488841479884801,
// @JacqueMoraes_es
1235371041712726022,
// @julinhodeputado
1238202050745446401,
// @eusouamom
1238868377675980803,
// @fabiolopes_38
1241821464111853570,
// @elianexunakalo
1241878280841674752,
// @samaramartinsup
1244783574676627460,
// @drluizovando
1247287375803355136,
// @CoronelFernand9
1249769581725573121,
// @jaziel_dr
1251558672821600259,
// @cirineu_costa
1251676296842805257,
// @fcordeirosc
1252561439686037506,
// @fabio_schiochet
1253698500401008641,
// @tyago_hoffmann
1254019417148661760,
// @peritatirotti
1254073103661088768,
// @tanielmacedo
1254084527422689282,
// @beckhausersc
1257020913893195779,
// @DraSilvana2
1257476064219140097,
// @najuliaribeiro
1259624231765184514,
// @adailfilhoam
1260696151029940225,
// @camilajarams
1261423487585005575,
// @mariadoscamelos
1267127677468753920,
// @manupeloES
1269632201760690176,
// @juliermesenav
1271216272148176896,
// @carladicksonrn
1273322623380983815,