File size: 166,901 Bytes
cd6c5ed |
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 1001 1002 |
,user_id,user_screen_name,user_name,words,personality_type
0,1608529580608065536,woncat_9,amara | ENHYPEN CB MAY 22,"['ˋˏ', 'day', '2', 'finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'filo', 'ults']",ISTP
1,1592804631981064193,bookchildz,KALea flop era,"['heya', 'im', 'lei', 'im', 'new', 'amp', 'lookin', 'interactive', 'moot', 'study', 'rant', 'bud', 'ᴗ', 'cloud']",ISTP
2,1603402059826532353,rubyyske,☁️,"['still', 'dont', 'get', 'istp', 'yeah', 'test', 'many', 'time', 'already', 'loudly', 'cry', 'faceloudly', 'cry', 'faceloudly', 'cry', 'faceloudly', 'cry', 'face']",ISTP
3,1436980922411143174,k_i_o_m_i,ꕤ,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
4,1538355377405763584,bivaiueo,arIVA`⋆☎️,"['hi', 'im', 'new', 'amp', 'im', 'looking', 'study', 'buddy', 'person', 'fencing', 'cala', '08l', 'last', 'year', 'jhs', 'istp', 'gang', 'collision', 'yo']",ISTP
5,1466260479752359938,jonghomallow,sushi,"['hi', 'im', 'fia', 'im', 'looking', 'interactive', 'filoeng', 'moot', '୨୧', 'sheher', 'istp', 'minor', 'enhypensvtivele', 'sserafim', 'fa']",ISTP
6,1574414669128704000,prdxxwon,fia,"['hi', 'im', 'fia', 'im', 'looking', 'interactive', 'filoeng', 'moot', '୨୧', 'sheher', 'istp', 'minor', 'enhypensvtivele', 'sserafim']",ISTP
7,1658328706581155845,yriqzlx,~,"['hi', 'looking', '4', 'active', 'moot', 'yori', '06', 'istp', 'bit', 'new', 'blackpink', 'nw']",ISTP
8,934906195,cherriesbubble,cherries♡,"['hunter', 'used', 'istp', 'retaking', 'test', 'he', 'istj']",ISTP
9,1415358748235812872,monooir,keith,"['heyo', 'im', 'search', 'active', 'heliosr', 'moot', 'call', 'leo', '18', 'pronounces', 'istp', '2w3', 'november', 'sagittarius', 'wes']",ISTP
10,1644198428556296193,teddydinos,sha 𓆩♡𓆪,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
11,1565075837552148485,torohaka,JUN!OR 🍧,"['heyo', 'im', 'search', 'active', 'heliosr', 'moot', 'call', 'leo', '18', 'pronounces', 'istp', '2w3', 'november', 'sagittarius', 'wes']",ISTP
12,1458352862472261635,mossofsyaa,Asya dikejar pat🏃🏼♀️🏃🏼♀️🏃🏼♀️,"['hello', 'im', 'looking', 'new', 'moot', 'new', 'study', 'buddy', '౨ৎ', 'get', 'know', 'teddy', 'bear', 'u', 'call', 'sabrina', 'ballet', 'shoe', '06l', 'sh']",ISTP
13,1640730154711515142,tinkyiebell,ciya,"['hello', 'im', 'looking', 'new', 'moot', 'new', 'study', 'buddy', '౨ৎ', 'get', 'know', 'teddy', 'bear', 'u', 'call', 'sabrina', 'ballet', 'shoe', '06l', 'sh']",ISTP
14,1619861062689648641,kjunnwz,kaydence ★⁵ I LOVE VIKEN,"['ˋˏ', 'day', '2', 'finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'filo', 'ults']",ISTP
15,1174153476735143937,jmcdonald114,✨🎓Jordyn🎓✨,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
16,1607395411815456770,naghuihilom_,sof / gwin • lf moots,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
17,1375348508354621441,suqabot,ؘ,"['actually', 'index', 'pointing', 'mediumlight', 'skin', 'tonenerd', 'face', 'yoongi', 'istp']",ISTP
18,1445443708439056388,mischiefthings,mae ミ★,"['character', 'share', 'emmas', 'personality', 'type', 'istp', 'crafter']",ISTP
19,1647110869472677888,xoxoiridesca,iridesca 💭 lf bns moots,"['彡', 'hi', 'im', 'kliya', 'ღ', 'looking', 'interactive', 'moot', 'ღ', '14', 'sheher', 'istp', 'rcbyf', 'ღ', 'ults', 'twice', 'itzy', 'gidle', 'lsrf']",ISTP
20,1647110869472677888,xoxoiridesca,iridesca 💭 lf bns moots,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
21,1380574590,pankajc34425181,🐐,"['artist', 'palette', 'gabby', 'reveal', '7', 'raise', 'ai', 'artist', 'palette', 'living', 'life', 'edge', 'daring', 'energetic', 'ultimate']",ISTP
22,948891577400741888,Case_Butter,Case_เคส 𝒍𝒐𝒗𝒆𝒚 𝒅𝒐𝒗𝒆𝒚 | ที้ด 06.16,"['junghoons', 'mbti', 'intp', 'tricky', 'house', 'eps', 'dont', 'know', 'film', 'eps', 'april', '7th']",ISTP
23,1522678766052458498,mymelopinks,lindsay,"['looking', 'active', 'moot', 'day', '2', 'new', 'yori', 'istp', 'filo', 'blackpink', 'newjeans', 'lesserafim', 'ive', 'tw']",ISTP
24,1483984782459478016,filmbyino,َ니낮 !! ia,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
25,1510223585721286663,shujideryy,mariaa,"['junghoons', 'mbti', 'intp', 'tricky', 'house', 'eps', 'dont', 'know', 'film', 'eps', 'april', '7th']",ISTP
26,1306968366179971072,ichoposerio,icho 🛸 | 🔱❤️🩹 (in my lutang era),"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
27,1339232001979768834,babysugabearbee,Caro ⁷ | Angel Pt 1 👼🏻,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
28,1456587047997673473,KaruheartsCupid,˗ˏˋ Hikaru ♡'s Cupid || looking for moots :3,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
29,1117428657616609280,hjwstwin_,jai ( ◜‿◝ )♡,"['looking', 'teume', 'engene', 'moot', 'ㅡ', 'hehim', 'legal', '18', 'gay', 'istp', 'filo', 'flag', 'philippine', 'teume', 'e']",ISTP
30,885152822962122752,KTommerrass,💖 kat 💖 soyeon’s wife,"['hii', 'im', 'jay', 'lf', 'amp', 'interactive', 'moot', 'new', '07', 'istp', 'blk', 'bisexual', 'oneus', 'seventeen', 'enhyp']",ISTP
31,1554659040747298816,gyukissed,jay 🫧 met oneus and saw enha !,"['hii', 'im', 'jay', 'lf', 'amp', 'interactive', 'moot', 'new', '07', 'istp', 'blk', 'bisexual', 'oneus', 'sevente']",ISTP
32,1529641316954476544,JOO0214_,jooˎ,"['heya', 'im', 'lei', 'im', 'new', 'amp', 'lookin', 'interactive', 'moot', 'study', 'rant', 'bud', 'ᴗ', 'cloud']",ISTP
33,1581668411221778433,saintlknow,qiyy ⭐️,"['day', '7', 'face', 'spiral', 'eye', 'hi', 'im', 'kian', '07', 'istp', 'filo', 'theyhe', 'still', 'looking', 'interactive', 'new']",ISTP
34,1200978499915386881,kyeojis,yun !!,"['hi', 'istp', 'bff', 'love', 'collecting', 'istps']",ISTP
35,1650125113293938688,MaggiePark84368,Lee might know~ ★⁵🌋🪐,"['day', '7', 'face', 'spiral', 'eye', 'hi', 'im', 'kian', '07', 'istp', 'filo', 'theyhe', 'still', 'looking', 'interactive', 'new']",ISTP
36,1414394740762550278,namjoonhcrts,ember // D-7 UNTIL BDAY!! / VIDEO EDIT OUT!!!,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
37,1414394740762550278,namjoonhcrts,ember // D-7 UNTIL BDAY!! / VIDEO EDIT OUT!!!,"['彡', 'hi', 'im', 'kliya', 'ღ', 'looking', 'interactive', 'moot', 'ღ', '14', 'sheher', 'istp', 'rcbyf', 'ღ', 'ults', 'twice', 'itzy', 'gidle', 'lsrf']",ISTP
38,1658504214539304961,zuhakaede,lili ☆,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
39,1414394740762550278,namjoonhcrts,ember // D-7 UNTIL BDAY!! / VIDEO EDIT OUT!!!,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
40,1480240311737618435,Jewelmoney_,Artemis 📌 ||,"['彡', 'hi', 'im', 'kliya', 'ღ', 'looking', 'interactive', 'moot', 'ღ', '14', 'sheher', 'istp', 'rcbyf', 'ღ', 'ults', 'twice', 'itzy', 'gidle', 'lsrf']",ISTP
41,1509343595559473155,ausofyaroox_,yaroox ; lf moots,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
42,1529839305593499649,CertifiedWizNot,ryan #UNFORGIVEN,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
43,1300727807857754112,callmechall_,chalੈ✩‧₊˚,"['hello', 'im', 'looking', 'new', 'moot', 'new', 'study', 'buddy', '౨ৎ', 'get', 'know', 'teddy', 'bear', 'u', 'call', 'sabrina', 'ballet', 'shoe', '06l', 'sh']",ISTP
44,1364211713365729283,xikersmybabies2,𝐿𝑒𝑡𝑖 𝑎𝑚𝑎 𝑜 𝒙𝒊𝒌𝒆𝒓𝒔 ₍ᐢ⑅•ᴗ•⑅ᐢ₎💕,"['hunter', 'used', 'istp', 'retaking', 'test', 'he', 'istj']",ISTP
45,1368892709490978820,arbzenxyy,elf/ar⁷¹¹,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
46,1466260479752359938,jonghomallow,sushi,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
47,1598533871380799488,lifepostingcel,isa,"['common', 'istp', 'w']",ISTP
48,1495908689118908420,RKCSyd,Sister Rachel 🏳️🌈🇦🇺🦘,"['thekla', 'simona', 'gelsomina', 'reuten', 'aka', 'thekla', 'reuten', 'dr', 'salvius', 'born', 'bussum', 'netherlands', 'dutchitalian']",ISTP
49,1287713507668983812,beomglvrs,-alis saw txt !!! ♡ 22/10,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
50,74842546,annestude,َanne²³,"['hi', 'im', 'new', 'amp', 'im', 'looking', 'study', 'buddy', 'person', 'fencing', 'cala', '08l', 'last', 'year', 'jhs', 'istp', 'gang', 'collision', 'yo']",ISTP
51,1609408818106040320,mreeyaho,miyahoooo 🫐,"['u', 'call', 'infjintpistpinfp', 'dilemma', 'like', 'genuinely', 'know', '4', 'work', 'mbti']",ISTP
52,1376361071322169344,gyuuskipp,kei ✘ 🎧🧸 ACTIVE !,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
53,1466260479752359938,jonghomallow,sushi,"['彡', 'hi', 'im', 'kliya', 'ღ', 'looking', 'interactive', 'moot', 'ღ', '14', 'sheher', 'istp', 'rcbyf', 'ღ', 'ults', 'twice', 'itzy', 'gidle', 'lsrf']",ISTP
54,1657541983622115328,Jalieb_,Jalieb (*:・゚✧edtwt✧゚:・*),"['hi', 'new', 'looking', 'active', 'moot', '28', 'shethey', 'seasian', 'virgo', 'istp', 'demipan', '163cm', 'sw84', 'cw']",ISTP
55,1028544475616792577,f4iryh3ejake,faisyah,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
56,1371309447130222596,Uz2Miko,Miko | sakuragami siblings,"['add', 'mbti', 'put', '4', 'character', 'type', 'estj', 'amp', 'istp', 'tak', 'cukup', '4', 'jadi', 'letak', '2', 'mbti']",ISTP
57,1294789828526186497,Beommiebby02,tOto ✘🦜🪟🧚,"['istp', 'isfp']",ISTP
58,1647917917592494082,httpszyraa,Zyra,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
59,1516596352133836803,beomfys,범규♡,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
60,1575924300263079939,f4iryhachu,₊˚✩彡 clarii !!,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
61,1554447214923370498,giextwt,𖤐,"['heya', 'im', 'lei', 'im', 'new', 'amp', 'lookin', 'interactive', 'moot', 'study', 'rant', 'bud', 'ᴗ', 'cloud']",ISTP
62,1254168393403584515,kiuhlo,hiiro | spicy 🎀,"['istp', 'yes']",ISTP
63,1531733434749493248,soulzhex,erin // UNTZ UNTZ,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
64,1368687082307080193,M1TSU_A_,미츠 (!),"['heya', 'im', 'lei', 'im', 'new', 'amp', 'lookin', 'interactive', 'moot', 'study', 'rant', 'bud', 'ᴗ', 'cloud']",ISTP
65,1562000665227829249,PJSLIFE,Eziro,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
66,1145654682494259200,__istp,e,"['nitiploudly', 'cry', 'face']",ISTP
67,1647660871449997312,haalandmother,✰,"['remembered', 'haaland', 'istp', '9w8']",ISTP
68,1389712965604102146,mintakyy,Eden✨Intak’s wifey💖,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
69,1610081426950574081,arilovestxt,Ari 🩷💛🩵,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
70,1389933606026555392,huntluviv,𝐼𝑣𝑎𝑛 𝑙𝑜𝑣𝑒𝑠 민재♡,"['hunter', 'used', 'istp', 'retaking', 'test', 'he', 'istj']",ISTP
71,1525424042039197696,catwinicat,wini,"['similar', 'add', '10', 'stan', 'atz', '10', 'born', 'nov', '10', 'listen', 'rock', 'khh', 'kpop', 'nd', 'everything', '10', 'p']",ISTP
72,906309636256493568,A_rich2233,A Rich,"['istp', 'yes', 'thing', 'could', 'use', 'murder', 'someone', 'reroll', 'know', 'look', 'body', 'mountain']",ISTP
73,1629855679363141634,NingNave,DreamNaevis ♧~•♤ENHA & DEUKAE COMEBACK IN MAY♤~•♧,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
74,1612551760668672000,suabaka1,🤍♡ Baria Aesthetic ♡🤍| LAILA LOVEBOT ♡♡,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
75,1440544288467607556,Ashkechie,ash /ᐠ。ꞈ。ᐟ\,"['add', 'ur', 'mbti', 'put', '4', 'character', 'type', 'im', 'istp', '3', 'nagi', 'ash', 'lynx', 'shouya', 'tomoe']",ISTP
76,1508295103609286661,bluepeniss,vio ✧˖° fanwars r stupid,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
77,1315846745876770819,belovedhyune,lina misses txt★ ⁵ CSD📌,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
78,1539029467699548160,Mysunsetstay,Lili,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
79,1644072272205053952,v0hyj,:゚☆ help rt 📌,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
80,19043242,olderbrother21,Tarrell Eugene Bellinger,"['heya', 'im', 'lei', 'im', 'new', 'amp', 'lookin', 'interactive', 'moot', 'study', 'rant', 'bud', 'ᴗ', 'cloud']",ISTP
81,1469823659825143817,sup3rcra1g,Grey/Greg (craig enthusiast)🪼,"['craig', 'officially', 'genre', 'character', 'according', 'idk', 'ue', 'craig', 'r', 'istp', 'megumi']",ISTP
82,1374525509313331201,yunjinsera,ava♥︎,"['ˋˏ', 'day', '2', 'finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'filo', 'ults']",ISTP
83,813535165028835328,amornyu,emi,"['applying', 'moa', 'mutuals', 'shethey', 'span', 'eng', 'must', '18', 'minor', 'fr', 'ot5', 'im', 'bamtori', 'moawajunn']",ISTP
84,1518961267280687105,GoldfishGlare,Gold ♡,"['彡', 'hi', 'im', 'kliya', 'ღ', 'looking', 'interactive', 'moot', 'ღ', '14', 'sheher', 'istp', 'rcbyf', 'ღ', 'ults', 'twice', 'itzy', 'gidle', 'lsrf']",ISTP
85,1628087121406832663,shewbin,khloee,"['彡', 'hi', 'im', 'kliya', 'ღ', 'looking', 'interactive', 'moot', 'ღ', '14', 'sheher', 'istp', 'rcbyf', 'ღ', 'ults', 'twice', 'itzy', 'gidle', 'lsrf']",ISTP
86,1641011305627746304,kliyasksk,kliya ! exams,"['彡', 'hi', 'im', 'kliya', 'ღ', 'looking', 'interactive', 'moot', 'ღ', '14', 'sheher', 'istp', 'rcbyf', 'ღ', 'ults', 'twice', 'itzy', 'gi']",ISTP
87,1546368250191421441,hooncall,iya,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
88,1501308187919753216,pinkaurora120,ina ♡,"['esfj', 'hated', 'everyone', 'istp', 'losing', 'passion', 'life', 'estp', 'losing', 'sens', 'interest', 'istj']",ISTP
89,1354245918690856963,friendofborothy,alex 🍎,"['character', 'share', 'emmas', 'personality', 'type', 'istp', 'crafter']",ISTP
90,1647307247918239744,kiieunoia,ღ,"['heya', 'im', 'lei', 'im', 'new', 'amp', 'lookin', 'interactive', 'moot', 'study', 'rant', 'bud', 'ᴗ', 'cloud']",ISTP
91,1039064591416754177,zlot_t,ㅡㅅㅡ ✰,"['hunter', 'used', 'istp', 'retaking', 'test', 'he', 'istj']",ISTP
92,1556306614549762050,ABELXHUNTER,พิว,"['hunter', 'used', 'istp', 'retaking', 'test', 'he', 'istj']",ISTP
93,1608364593063297024,yechanv1be,sya 🍀,"['okay', 'retake', 'mbti', 'test', '2', 'time', 'result', 'isfp', 'istp']",ISTP
94,1187710224,th3ch4ser,jor!!: ALL IN⁺¹ ♡ DARK BLOOD ☾,"['ok', 'im', 'istp']",ISTP
95,1339462885387370498,ETnKnuckles,E ☆T,"['thank', 'also', 'istp', 'think', 'friend', 'love', 'istps', 'useful', 'people']",ISTP
96,1650407711639740416,kwanhrts,ruka ☆,"['im', 'bad', 'guessing', 'loudly', 'cry', 'face', 'maybe', 'isfp', 'istp']",ISTP
97,1436151142971424775,nuclearcatbaby,Victim of OingoStruggles’ Ableist Bigotry,"['dad', 'classic', 'istp', 'could', 'relate', 'level', 'didnt', 'bos', 'around', 'al']",ISTP
98,952709903998599168,nojaem_kimbap,kim,"['shes', 'istp', 'help', 'loudly', 'cry', 'faceface', 'tear', 'joy']",ISTP
99,1501572925664776196,hanneninas,alina starkov's lawyer,"['character', 'share', 'emmas', 'personality', 'type', 'istp', 'crafter']",ISTP
100,1354309300764610562,alicestruggles,alice ♡’s frida,"['add', 'mbti', '4', 'character', 'type', 'istp', 'learnt', 'today', 'chad', 'meme', 'dude', 'perso']",ISTP
101,1453133870719586304,ksnflict_,ًrc | in vertis north,"['hi', 'im', 'zelle', 'call', 'ayii', 'lyz', 'new', 'filo', 'istp', 'shethey', 'minor', 'ults', 'ar']",ISTP
102,1415805343670673419,getoulvrs,hanny,"['quseee', 'istp']",ISTP
103,1579745667391442944,geniuzlie,eljay,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
104,1254411800780476417,xikerhoon,📚sab is missing junghoon | rt-ing,"['junghoons', 'mbti', 'intp', 'tricky', 'house', 'eps', 'dont', 'know', 'film', 'eps', 'april', '7th']",ISTP
105,1654462556596228096,kaliniverse,kali,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
106,1640234696046182402,machuuseok,my,"['hao', 'istp', 'think', 'im', 'becoming', 'extrovert']",ISTP
107,1306619443611676673,bunniminh,mayori ☁︎,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
108,1241560476292702213,ABasementCat,Basement Cat,"['may', '18th', 'flickerkit', 'finchlight', 'nightheart', 'note', 'mostly', 'went', 'taurus', 'nightheart']",ISTP
109,1262301289091751937,AashiArmy7,Aashika ♡ Leeknow ★⁵,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
110,1658199950310645772,sgsdks,uziel.,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
111,1650565201144721408,jigunwoo,nadya 🦋 AI for assignments,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
112,3227934794,sh8llc,.s,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'istp']",ISTP
113,1312559044943585281,adorraa_aa,adora⁷🥢 saw yunki & txt,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
114,1617084723498733568,rie_vhy,Rie,"['hello', 'im', 'looking', 'esp', 'pronoun', 'istp', 'flag', 'philippine', 'stans', 'blackpink', 'red', 'velvet', 'twice', 'enhypen', 'exo']",ISTP
115,1625901922225127424,bonnilyryu,esther - DARK BLOOD limit,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
116,1440985708492046344,shmpli,hane | nie day !,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
117,1228443184621027339,jinnipiee,jiji ★⁵ 🐿️,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp', 'svt']",ISTP
118,1348813869397917696,krvm1130,Kate 🇺🇲🇵🇭 | LF Moots,"['hi', 'im', 'kate', 'lf', 'amp', 'interactive', 'moot', 'new', '03', 'istp', 'leo']",ISTP
119,1489367143968030722,yungidihati,el 💙,"['hunter', 'used', 'istp', 'retaking', 'test', 'he', 'istj']",ISTP
120,1276135770277867521,ME0WT0KKI,🌸,"['super', 'flustered', 'im', 'getting', 'everything', 'wrong', 'shima', 'genuinely', 'thought', 'istp']",ISTP
121,1654991108416638978,stpd_lemondzz,♔〃˖𝖆𝖙𝖊𝖓¦ᴊᴀʏ ▸.🪐 ࣪,"['hii', 'im', 'looking', 'interactive', 'moot', 'fandom', 'welcome', 'cherry', 'blossom', 'cherry', 'blossom', 'sheher', 'cherry', 'blossom', 'stan', 'w1', 'bts', 'svt', 'kep', '1er', 'zb1', 'cherry', 'blossom', 'minor', 'cherry', 'blossom']",ISTP
122,1654991108416638978,stpd_lemondzz,♔〃˖𝖆𝖙𝖊𝖓¦ᴊᴀʏ ▸.🪐 ࣪,"['𖥨', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'msian', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp']",ISTP
123,1630846519485276160,geoksjsn,geo,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
124,1659169112168484866,pjsnetz,ram • lf interactive moots !,"['ˋˏ', 'day', '2', 'finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'filo', 'ults']",ISTP
125,1628960194301501442,v11_page,✰ yuka nim,"['istp', 'month', 'test', 'im', 'intj']",ISTP
126,1488812316020047872,mwakkyuu_06,issang,"['hello', 'im', 'looking', 'esp', 'pronoun', 'istp', 'flag', 'philippine', 'stans', 'blackpink', 'red', 'velvet', 'twice', 'enhypen', 'exo']",ISTP
127,1617084723498733568,rie_vhy,Rie,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
128,2419003116,greenqueenology,Verde,"['personality', 'database', 'vote', 'divided', '50', 'entj', '50', 'istp']",ISTP
129,1226158772306890752,ddoykki,rol ✰,"['bukan', 'ke', 'kita', 'found', 'istp', 'sebab', 'card', 'loudly', 'cry', 'face']",ISTP
130,349761668,dhnblue,julis • military wife,"['hunter', 'used', 'istp', 'retaking', 'test', 'he', 'istj']",ISTP
131,861611477022715904,istp_eth,ISTP ETH,"['warmly', 'thank', 'talk', 'cybersecurity', 'emphasised', 'potential', 'collective', 'intelli']",ISTP
132,1492233739723751429,shijo_xie,Yeo ♡ IFB!,"['𖥨', '4', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp']",ISTP
133,994807528432250882,42_nah,made my day,"['hunter', 'used', 'istp', 'retaking', 'test', 'he', 'istj']",ISTP
134,1403040814574424065,nuhunter55,🐭nuHUNTER.␉◕‿-❤️,"['hunter', 'used', 'istp', 'retaking', 'test', 'he', 'istj']",ISTP
135,1191689739604123648,wooyoungforlife,yin needs xikers moots シ,"['hunter', 'used', 'istp', 'retaking', 'test', 'he', 'istj']",ISTP
136,1622961981044191232,NEJ_YBN19,nej๋ ༘⋆ ; +×+,"['soobin', 'txt', 'sunoo', 'en', 'yoongi', 'bts', 'im', 'istp']",ISTP
137,1598870425936613376,prodyeonz,ً,"['rabbit', 'face', 'finding', 'moot', 'denz', 'pisces', 'istp', 'finding', 'neverland', 'reveluv', 'bli']",ISTP
138,1348459769476960262,Sleincanpooo,Sealionn★,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
139,1647917917592494082,httpszyraa,Zyra,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
140,1633039988119199747,mumuguz,ri 🏹 SPEAK NOW?????,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
141,874589069073829890,Yeomiyayuu,진휴우 🌸,"['hunter', 'used', 'istp', 'retaking', 'test', 'he', 'istj']",ISTP
142,489302833,Aey57,FC LISA,"['hunter', 'used', 'istp', 'retaking', 'test', 'he', 'istj']",ISTP
143,1646148644062609408,hynwyng,ziv,"['istps', 'get', 'intp', 'test', 'smiling', 'face', 'heart']",ISTP
144,978560766478610432,magicbat91,Teddy bear granting wishes,"['whats', 'istp', 'controlling', 'thought', 'mp3', 'player', 'first', 'ngl', 'look', 'closer', 'cutie']",ISTP
145,1646148644062609408,hynwyng,ziv,"['happened', 'istp', 'solidarity', 'junghoon', 'broken', 'heartbroken', 'heart']",ISTP
146,1541799695525089283,mbtibutpinoy,mbti but pinoy,"['submitted', 'anon']",ISTP
147,1656942469995454468,zyukoumi,kian,"['day', '7', 'face', 'spiral', 'eye', 'hi', 'im', 'kian', '07', 'istp', 'filo', 'theyhe', 'still', 'looking', 'interactive', 'new']",ISTP
148,1519260659544117248,rukaedes,︎︎ً,"['omg', 'weh', 'istp', 'k', 'pla']",ISTP
149,1119596750434516992,ycnstar,nay 찬냥~,"['junghoons', 'might', 'inaccurate', 'since', 'talked', 'abt', 'mbti', 'changed', 'intp', 'istp', '230407', 'didnt', 'know']",ISTP
150,1576253856291631105,hypagalaubrutl,hypa parkbin,"['hunter', 'used', 'istp', 'retaking', 'test', 'he', 'istj']",ISTP
151,1293142920858501120,4heemonli,fiva,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
152,1575062753160503296,onlyforhunter,𝒙𝒊𝒌𝒆𝒓𝒔 𝒉𝒖𝒏𝒕𝒆𝒓.,"['hunter', 'used', 'istp', 'retaking', 'test', 'he', 'istj']",ISTP
153,1518941609823334401,urfavvcy,ً,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
154,1561572921159876608,m0thwat3r,chrissy/niko,"['add', 'mbti', '4', 'character', 'type', 'istp', 'wish', 'could', 'add', 'chuuya', 'bitch', 'estp', 'instead']",ISTP
155,1657013579177160706,4suncfe,ً,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
156,1642120694510260228,kseocsf,ً,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
157,1276135770277867521,ME0WT0KKI,🌸,"['haitham', 'intj', 'ume', 'maybe', 'istp', 'logicness', 'similar', 'like', 'speaks']",ISTP
158,1620051128120659969,wonulovv3rr,elli ; lf : moots/friends📌,"['restarting', 'day', '1', 'hi', 'im', 'jinjin', 'looking', 'interactive', 'moot', '17', '05', 'liner', 'sheher']",ISTP
159,1445274005473161216,xikersjh,s e n n a 🦔 XIKEY,"['junghoons', 'mbti', 'intp', 'tricky', 'house', 'eps', 'dont', 'know', 'film', 'eps', 'apr']",ISTP
160,1445274005473161216,xikersjh,s e n n a 🦔 XIKEY,"['dont', 'know', 'tricky', 'house', 'eps', 'filmed', 'maybe', 'recent', 'istp']",ISTP
161,1430356263339053060,xoxocaix,s,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
162,1644810993082531841,lixxielovebot,~lara♡,"['𖥨', '4', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp']",ISTP
163,1508400153086115846,indigominari,Rain ♡ loves jay (mae fan twt),"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
164,3299114206,nlopes952,Nadia 🇵🇹,"['thekla', 'simona', 'gelsomina', 'reuten', 'aka', 'thekla', 'reuten', 'dr', 'salvius', 'born', 'bussum', 'netherlands', 'dutchitalian']",ISTP
165,1497128754673778691,lovuyjin,ً,"['hi', 'im', 'zelle', 'call', 'ayii', 'lyz', 'new', 'filo', 'istp', 'shethey', 'minor']",ISTP
166,1592476757902635009,originallyskyy,mae,"['restarting', 'day', '1', 'hi', 'im', 'jinjin', 'looking', 'interactive', 'moot', '17', '05', 'liner', 'sheher']",ISTP
167,1658132251648081921,xieaa_,xine || enhypen's coming,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
168,1501259201976274945,kuelfts,ً,"['hello', 'im', 'looking', 'esp', 'pronoun', 'istp', 'flag', 'philippine', 'stans', 'blackpink', 'red', 'velvet', 'twice', 'enhypen', 'exo']",ISTP
169,1039945355230695427,aeimako,syl,"['istp', 'ur', 'mbti', 'four', 'character', 'w', 'one']",ISTP
170,1601044081941303302,mnsngiee,Jinjin🦫 active na ulit,"['restarting', 'day', '1', 'hi', 'im', 'jinjin', 'looking', 'interactive', 'moot', '17', '05', 'liner']",ISTP
171,1443246348749344769,bam3_yeon,YeonBam ✘ | Taegyu deprive 😭,"['istp', 'babe']",ISTP
172,1489984075091701765,rinneshuu,🅰️,"['add', 'mbti', 'put', '4', 'character', 'type', 'istp']",ISTP
173,1489984075091701765,rinneshuu,🅰️,"['add', 'mbti', 'put', '4', 'character', 'type', 'istp', 'jir', 'kok', 'jun', 'doang']",ISTP
174,1604654522433155072,loafseita,eirisza,"['add', 'mbti', 'put', '4', 'character', 'type', 'istp']",ISTP
175,1626837728376799232,si4ryki,ْ⭒,"['ˋˏ', 'day', '2', 'finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'f']",ISTP
176,1523753426739474432,frexaki,lia 🪱,"['add', 'mbti', '4', 'character', 'type', 'istp', 'wish', 'could', 'add', 'chuuya', 'bitch', 'estp']",ISTP
177,1317011312866693126,hrtshyune,hollie ★ (5-STAR) | OUTLAW,"['𖥨', '4', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp']",ISTP
178,1595748997548756993,thegyuchapt_r,huh jjeongie 🤗,['istp'],ISTP
179,1595748997548756993,thegyuchapt_r,huh jjeongie 🤗,"['istp', 'help', 'dont', 'know', 'even', 'mean', 'know', 'first', 'letter', 'face', 'savoring', 'foodthumbs', 'uploudly', 'cry', 'facesparkles']",ISTP
180,1480524331163652096,mwyujiem,ila²⁶,"['hi', 'im', 'new', 'amp', 'im', 'looking', 'study', 'buddy', 'person', 'fencing', 'cala', '08l', 'last', 'year', 'jhs', 'istp', 'gang', 'collision', 'yo']",ISTP
181,1519637731668037633,__OO589,luna pengangguran 👩🏻💼,"['hi', 'im', 'new', 'amp', 'im', 'looking', 'study', 'buddy', 'person', 'fencing', 'cala', '08l', 'last', 'year', 'jhs', 'istp', 'gang', 'collision', 'yo']",ISTP
182,1488474844429631493,CityLiwght,kiAAA 🎀 ɞ ׄ⭒,"['hi', 'im', 'new', 'amp', 'im', 'looking', 'study', 'buddy', 'person', 'fencing', 'cala', '08l', 'last', 'year', 'jhs', 'istp', 'gang', 'collision', 'yo']",ISTP
183,1255381191391404035,cowboylikelhl,rei 💤,"['queer', 'istp', 'voiced', 'yuma', 'uchida']",ISTP
184,1466260479752359938,jonghomallow,sushi,"['hi', 'im', 'kate', 'im', 'currently', 'finding', 'moot', 'sheher', 'filo', 'istp', 'new', 'preferably', 'fearnot', 'engen']",ISTP
185,1642075962945970178,_yjwdrafts,Ciara,"['hi', 'im', 'kate', 'im', 'currently', 'finding', 'moot', 'sheher', 'filo', 'istp', 'new', 'preferably', 'fearnot', 'engen']",ISTP
186,1644072272205053952,v0hyj,:゚☆ help rt 📌,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
187,1568108813324288000,beinL0V3,meg,"['heya', 'im', 'lei', 'im', 'new', 'amp', 'lookin', 'interactive', 'moot', 'study', 'rant', 'bud', 'ᴗ', 'cloud']",ISTP
188,1653922112367923201,havviierr,havier,"['𖥨', '4', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp']",ISTP
189,1601614290712408064,adorable_wonyy,𝐸𝑚𝑖𝑙𝑦. ☁︎ | ifb !,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
190,1387255299086512133,wonnievxrse,ً lf interactive moots !,"['hi', 'im', 'kate', 'im', 'currently', 'finding', 'moot', 'sheher', 'filo', 'istp', 'new', 'preferably', 'fearnot']",ISTP
191,1356899682077691905,lvingmina,miks,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
192,1277238096833073154,genosiida,🍍 bismillah lolos snbt 2023!!,"['hi', 'im', 'new', 'amp', 'im', 'looking', 'study', 'buddy', 'person', 'fencing', 'cala', '08l', 'last', 'year', 'jhs', 'istp', 'gang', 'collision', 'yo']",ISTP
193,1659086478406995970,akiocxs,aki | lf mutuals,"['looking', 'active', 'moot', 'day', '3', 'new', 'yori', 'istp', 'filo', 'blackpink', 'newjeans', 'lesserafim', 'ive', 'tw']",ISTP
194,1411181849141923845,joyul_glassy,Bucinnya Hitomi,"['hi', 'im', 'new', 'amp', 'im', 'looking', 'study', 'buddy', 'person', 'fencing', 'cala', '08l', 'last', 'year', 'jhs', 'istp', 'gang', 'collision', 'yo']",ISTP
195,1602511189292244992,sswanlakes,𝑎𝑚𝑖𝑔𝑎 ´ ᭄🪽 . ₊‧ °승.•✩⋆ || 𝖲emi ﺃa 📑˘ ♥︎,"['hi', 'im', 'new', 'amp', 'im', 'looking', 'study', 'buddy', 'person', 'fencing', 'cala', '08l', 'last', 'year', 'jhs', 'istp', 'gang', 'collision', 'yo']",ISTP
196,1414571645449080838,Shivams62794213,Shivamsk.bit 🐐,"['artist', 'palette', 'gabby', 'reveal', '7', 'raise', 'ai', 'artist', 'palette', 'living', 'life', 'edge', 'daring', 'energetic', 'ultimate']",ISTP
197,1518941609823334401,urfavvcy,ً,"['𖥨', '4', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp']",ISTP
198,1644072272205053952,v0hyj,:゚☆ help rt 📌,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
199,1465990271410184194,wntrtrs,ْ,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
200,1191138659094945793,cjxsato,cjxsato,"['istp', 'supremacy', 'relieved', 'face']",ISTP
201,966283840317779968,ItachixVegeta,ITACHI UCHIHA | BitX_Brc20,"['artist', 'palette', 'gabby', 'reveal', '7', 'raise', 'ai', 'artist', 'palette', 'living', 'life', 'edge', 'daring', 'energetic', 'ultimate']",ISTP
202,1605223263562797057,srjssw,shey,"['looking', 'active', 'moot', 'day', '3', 'new', 'yori', 'istp', 'filo', 'blackpink', 'newjeans', 'lesserafim', 'ive', 'tw']",ISTP
203,1637983635264634880,_chiverse,aichi : new pinned,"['𖥨', '4', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp']",ISTP
204,1067713679771213825,AapaDilip,DilipAapa | Suiswap | Vaissel 🛡️⚔️🚢⚪⚫.bit,"['artist', 'palette', 'gabby', 'reveal', '7', 'raise', 'ai', 'artist', 'palette', 'living', 'life', 'edge', 'daring', 'energetic', 'ultimate']",ISTP
205,1658328706581155845,yriqzlx,~,"['looking', 'active', 'moot', 'day', '3', 'new', 'yori', 'istp', 'filo', 'blackpink', 'newjeans', 'lesseraf']",ISTP
206,1529839305593499649,CertifiedWizNot,ryan #UNFORGIVEN,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
207,1208278104243752960,njmnerva,abel but extra. || ia : pspm era !,"['idk', 'yall', 'tapi', 'saya', 'introvert', 'loud', 'introvert', 'people', 'wont', 'believe', 'istp', 'pensive', 'face']",ISTP
208,728833652268797952,Who_Is_The_God,NemoSwap | Fuelet,"['artist', 'palette', 'gabby', 'reveal', '7', 'raise', 'ai', 'artist', 'palette', 'living', 'life', 'edge', 'daring', 'energetic', 'ultimate']",ISTP
209,1647320239682768896,taeriyau,rae,"['mbti', 'istp', 'p', 'reason']",ISTP
210,983511844638769152,yuhximena,x ♔✨,"['jooheon', 'mx', 'wonho', 'moonbin', 'astro', 'amp', 'im', 'istp']",ISTP
211,1647763687753629697,BlxssfulNxghts,Mrs. Alyssa Bahng ★⁵,"['retook', 'mbti', 'test', 'got', 'istp', 'thats', 'crazy']",ISTP
212,1479305828570398723,yyjnggwn,ً,"['looking', 'teume', 'engene', 'moot', 'ㅡ', 'hehim', 'legal', '18', 'gay', 'istp', 'filo', 'flag', 'philippine', 'teume', 'e']",ISTP
213,1112133474100477952,nisasaaff,🌻 nisa.,"['shes', 'istp', 'watch', 'jeanszine']",ISTP
214,1518941609823334401,urfavvcy,ً,"['looking', 'teume', 'engene', 'moot', 'ㅡ', 'hehim', 'legal', '18', 'gay', 'istp', 'filo', 'flag', 'philippine', 'teume', 'e']",ISTP
215,1611674753957531649,cchaessante,◡̈,"['actly', 'list', 'pretty', 'long']",ISTP
216,1122201768992083969,lsrjin,ina,"['u', 'look', 'im', 'istp']",ISTP
217,1363163593902936070,urvrein,ren,"['looking', 'teume', 'engene', 'moot', 'ㅡ', 'hehim', 'legal', '18', 'gay', 'istp', 'filo', 'flag', 'philippine', 'teume', 'e']",ISTP
218,1576451514708594688,soyarexic,soya ୨♡୧,"['hi', 'new', 'looking', 'active', 'moot', '28', 'shethey', 'seasian', 'virgo', 'istp', 'demipan', '163cm']",ISTP
219,1658424477066338307,nrkskiz,nate,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
220,1483770964261601280,purple_istp,퍼플러,"['youre', 'funny', 'ugly']",ISTP
221,2658781123,enhazlove,ًspade,"['looking', 'teume', 'engene', 'moot', 'ㅡ', 'hehim', 'legal', '18', 'gay', 'istp', 'filo', 'flag', 'philippine', 'teume', 'e']",ISTP
222,1658254853205032960,naiarkives,nai,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
223,783149363556077568,kristyn_ahiru,⟬⟭ Kristyn Renee'💜석진 ⟭⟬ ⁷,"['lady', 'gentleman', 'response', 'istp', 'rolling', 'floor', 'laughingrolling', 'floor', 'laughingrolling', 'floor', 'laughing']",ISTP
224,1358698291656015875,bussyriotz,♱ cat ♱,"['intp', 'istp', 'isfp', 'ive', 'rook', 'like', '50', 'quiz', 'always', 'get', 'one']",ISTP
225,1534770925714800640,sye_claude9,°•claude☁️ | semi-ia📚,"['hi', 'im', 'isa', 'im', 'looking', 'interactive', 'moot', 'lt3', '17', 'lesbian', 'istp', 'looking', 'stay', 'atiny', 'nctzen', 'deo']",ISTP
226,1634634271406321664,loafofsunshine,🪷⋆࿐໋,"['hi', 'im', 'new', 'amp', 'im', 'looking', 'study', 'buddy', 'person', 'fencing', 'cala', '08l', 'last', 'year', 'jhs', 'istp', 'gang', 'collision', 'yo']",ISTP
227,1312559044943585281,adorraa_aa,adora⁷🥢 saw yunki & txt,"['𖥨', '4', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp']",ISTP
228,1312559044943585281,adorraa_aa,adora⁷🥢 saw yunki & txt,"['looking', 'teume', 'engene', 'moot', 'ㅡ', 'hehim', 'legal', '18', 'gay', 'istp', 'filo', 'flag', 'philippine', 'teume', 'e']",ISTP
229,1312559044943585281,adorraa_aa,adora⁷🥢 saw yunki & txt,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
230,1493507189360963585,missgyu_,keio — looking 4 moots,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
231,1501636808488202241,loveminniii,aimee ! 爱美,"['hihihi', 'im', 'aimee', 'im', 'looking', 'interactive', 'moot', '6teen', 'istp', 'shethey', 'new']",ISTP
232,1320437919484645378,dietsocks,socks ∘˚˳°,"['isfp', 'mistyped', 'first', 'time', 'istp', 'though', 'ended', 'researching', 'bit', 'retak']",ISTP
233,1650300643138232320,saitodology,`,"['looking', 'teume', 'engene', 'moot', 'ㅡ', 'hehim', 'legal', '18', 'gay', 'istp', 'filo', 'flag', 'philippine', 'teume', 'e']",ISTP
234,1648143855471190017,pshncatz,ٍ,"['looking', 'teume', 'engene', 'moot', 'ㅡ', 'hehim', 'legal', '18', 'gay', 'istp', 'filo', 'flag', 'philippine', 'teume', 'e']",ISTP
235,1657622115489828865,luvjhsn,ً,"['looking', 'teume', 'engene', 'moot', 'ㅡ', 'hehim', 'legal', '18', 'gay', 'istp', 'filo', 'flag', 'philippine']",ISTP
236,1564548874156462081,gwonigt,riri ☆,"['heya', 'im', 'lei', 'im', 'new', 'amp', 'lookin', 'interactive', 'moot', 'study', 'rant', 'bud', 'ᴗ', 'cloud']",ISTP
237,1658997840230887424,nobinnta_,nobi,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
238,1410703542281719812,oneiroscapism,malakbel-vorona ꙮ,"['diagnosis', 'midwit', 'istp']",ISTP
239,1657574765735886850,hrts4wonyos,shri ୨୧ SEEING TWICE,"['hi', 'im', 'isa', 'im', 'looking', 'interactive', 'moot', 'lt3', '17', 'lesbian', 'istp', 'looking', 'stay', 'atiny', 'nctzen', 'deo']",ISTP
240,3184660747,lovelyyungi,sarah ⁺¹ 🍄 TXT THIS WEEK♡,"['yunho', 'amp', 'istp']",ISTP
241,1645293950931193857,xzyarii,arianne,"['heya', 'im', 'lei', 'im', 'new', 'amp', 'lookin', 'interactive', 'moot', 'study', 'rant', 'bud', 'ᴗ', 'cloud']",ISTP
242,1649736628389433344,SHYDEURIN9,khrish💙,"['heya', 'im', 'lei', 'im', 'new', 'amp', 'lookin', 'interactive', 'moot', 'study', 'rant', 'bud', 'ᴗ', 'cloud']",ISTP
243,1612034995329331201,_pagaral,sherb #1 alison basher. CHECK PINNED!,"['heya', 'im', 'lei', 'im', 'new', 'amp', 'lookin', 'interactive', 'moot', 'study', 'rant', 'bud', 'ᴗ', 'cloud']",ISTP
244,1565683997753364480,kaizelstudy,kaizel | studytwt,"['heya', 'im', 'lei', 'im', 'new', 'amp', 'lookin', 'interactive', 'moot', 'study', 'rant', 'bud', 'ᴗ', 'cloud']",ISTP
245,1563715480892096513,leih4tesu,。.゚+,"['heya', 'im', 'lei', 'im', 'new', 'amp', 'lookin', 'interactive', 'moot', 'study', 'rant', 'bud', 'ᴗ', 'cloud']",ISTP
246,1629149814717046784,leistudyarchive,lei ☆,"['heya', 'im', 'lei', 'im', 'new', 'amp', 'lookin', 'interactive', 'moot', 'study', 'rant', 'bud', 'ᴗ', 'cloud']",ISTP
247,1516596352133836803,beomfys,범규♡,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
248,1532358491176058880,meowzdiary,cass | DARK BLOOD!,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
249,1351651942632738818,moonylove_,freddie benson💫,"['general', 'atlas', 'american', 'hetheystar', 'pansexual', 'istp', 'hufflepuff']",ISTP
250,1658254853205032960,naiarkives,nai,"['hi', 'im', 'isa', 'im', 'looking', 'interactive', 'moot', 'lt3', '17', 'lesbian', 'istp', 'looking', 'stay', 'atiny', 'nctzen', 'deo']",ISTP
251,1627285920482312197,IiIyys,malak⁷ ★⁵,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
252,1602511189292244992,sswanlakes,𝑎𝑚𝑖𝑔𝑎 ´ ᭄🪽 . ₊‧ °승.•✩⋆ || 𝖲emi ﺃa 📑˘ ♥︎,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
253,1627285920482312197,IiIyys,malak⁷ ★⁵,"['hi', 'im', 'isa', 'im', 'looking', 'interactive', 'moot', 'lt3', '17', 'lesbian', 'istp', 'looking', 'stay', 'atiny', 'nctzen', 'deo']",ISTP
254,1639312298757230592,illuvechaee,',"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
255,1048694178027327488,DragonEmbers,𝓝𝓪𝓽 🇬🇧,"['mbti', '4', 'character', 'mbti', 'two', 'heart', 'istp', 'unfortunately', 'idea', 'character', 'woul']",ISTP
256,1457356889965342720,wyvlle,ً,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
257,1170433577357664257,relawsan,rena ✧,"['add', 'ur', 'mbti', 'put', '4', 'character', 'type', 'im', 'istplt', '3', 'nagi', 'zoro', 'yosano', 'jiro']",ISTP
258,828267073520406529,woozisplanet,lys💜2YRS AS ATINY,"['ive', 'taken', 'test', '4', 'time', 'different', 'year', 'always', 'get', 'istploudly', 'cry', 'face']",ISTP
259,1467393776457236480,zefyrant,kazuha's flamethrower,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
260,1648113401824960515,gatorexico,gat | sh & ed,"['say', 'bmi', '155', 'loudly', 'cry', 'faceloudly', 'cry', 'faceloudly', 'cry', 'face', 'btw', 'im', 'istp']",ISTP
261,1421188145815621635,yujinroll,lili ᐢ. ֑ .ᐢ,"['istp', 'juric']",ISTP
262,828267073520406529,woozisplanet,lys💜2YRS AS ATINY,"['istp', 'thank', 'u', 'much', 'im', 'scoups', 'hueningkaigrinning', 'cat', 'smiling', 'eye']",ISTP
263,1261804715832049665,GentianSoul,odisea,"['could', 'abandon', 'hua', 'cheng', 'like', 'acct', 'made', 'name', 'he', 'like', 'one']",ISTP
264,1479431189698170884,MMHERO9,MMHERO,"['artist', 'palette', 'gabby', 'reveal', '7', 'raise', 'ai', 'artist', 'palette', 'living', 'life', 'edge', 'daring', 'energetic', 'ultimate']",ISTP
265,924908113676980224,joshthestrummer,stranger on the interwebs,"['add', 'mbti', '4', 'character', 'mbti', 'istp']",ISTP
266,1394904692165988356,MalikaK76379304,APOBANGPO⁷🔍⍤⃝🔎,"['ikr', 'reasonloudly', 'cry', 'face', 'good', 'suga', 'also', 'istploudly', 'cry', 'face']",ISTP
267,1556005430970798081,namjoonie0_097,celine boy☆ ❗ LIMITS ❗,"['actually', 'keep', 'changing', 'sometimes', 'intp', 'sometimes', 'istp']",ISTP
268,1568705116731052032,soobin_xg,𝘀𝗮𝗽𝗽𝗵𝗶 ✶,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
269,1576880520016846851,JosephHarvey01,Joseph Harvey | 'High Roller or Bipolar',"['1519', 'performing', 'art', 'patient', 'likely', 'adapt', 'unless', 'medication', 'interferes', 'independence', 'amp', 'practical', 'life', 'man', 'bouncing', 'ballhammer', 'wrench']",ISTP
270,1576880520016846851,JosephHarvey01,Joseph Harvey | 'High Roller or Bipolar',"['619', 'puzzle', 'piece', 'psychiatrist', 'practical', 'amp', 'handson', 'preferring', 'concrete', 'actionbased', 'therapy', 'abstract', 'theory', 'woman', 'scientisthammer']",ISTP
271,1623301503967453184,nightdaisyx,marili !!,"['omg', 'right', 'u', 'istp', 'well']",ISTP
272,566223131,wyssii,حِكمة,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'istp']",ISTP
273,1629547993614495744,st4rsformoony,havok ⋆。°✩,"['general', 'info', 'havokcam', 'theyhe', '17', 'istp', 'turkish', 'leo']",ISTP
274,1658752167451172864,d0kyeomthinker,robyn☆¹⁷,"['hi', 'im', 'isa', 'im', 'looking', 'interactive', 'moot', 'lt3', '17', 'lesbian', 'istp', 'looking', 'stay', 'atiny', 'nctzen', 'deo']",ISTP
275,852997134206894080,kitapatmiya_ori,"||| ไนท์ | Stress, Tired and Pain","['_ツ_', 'forgive', 'b', 'forget', 'c', 'cut', 'depends']",ISTP
276,1621747525891022850,_snwflwer_,🥛 𝙢𝙤𝙤𝙣𝙘𝙝𝙞𝙡𝙙 ✧ ˚ · . hoseok era,"['hihihi', 'im', 'aimee', 'im', 'looking', 'interactive', 'moot', '6teen', 'istp', 'shethey', 'new']",ISTP
277,1658453786887880705,fvkinyajx,yaj,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
278,1643009850413072391,kaeyagore,—— 𝐂yno TÔ NOIVO ᵃˡᵗ,"['ㅤ', 'modern', 'au', 'ㅤ', 'kaeya', 'florist', 'ㅤ', '40', 'year', 'mono', 'relationship', 'ㅤ', 'cisboy', 'bi', 'ㅤ', 'istp', 'sagittarius']",ISTP
279,1357338957395107843,Nachae15,Nasé_^.^~,"['dog', 'facethought', 'balloon', '230504', '522pm', 'kst', 'jw', '230504', '122am', 'seattle', 'camera', 'flash', 'dudung', 'told', 'changed', 'istp', 'hahahaha']",ISTP
280,1646163667140988931,_sohnset_,grass,"['istp', 'ot11', 'eric', 'ult']",ISTP
281,1210252070462341121,jpgwvil,mars 🐹,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
282,1527245447429242880,Yenimushi,yena ★,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
283,1599788699726020608,_mxvinxz,gavin 🎧,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
284,1516801246761349121,z4yizh,xazianne,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
285,1492166482020618244,peachyseokzie,zie,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
286,1516801246761349121,z4yizh,xazianne,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
287,1655609173957292032,sunnflckz,riri,"['day', '5', 'hi', 'im', 'kian', 'white', 'heart', 'theyhe', '07', 'istp', 'filoeng', 'still', 'looking', 'interactive', 'moot', 'downcast', 'face', 'sweat', 'moa', 'midzy', 'stay', 'engene']",ISTP
288,1562315720071213058,hwang_kirinz,h,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
289,1638820123506245635,parengvantae,akairi saw blackpink 🖤💗,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
290,1312894693261287425,JM202012713483,JM2020 | Suiswap,"['artist', 'palette', 'gabby', 'reveal', '7', 'raise', 'ai', 'artist', 'palette', 'living', 'life', 'edge', 'daring', 'energetic', 'ultimate']",ISTP
291,1630606502003363840,_leohoe_,leohoe(fb limit)⁰⁻¹,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
292,1620240950717988864,fil0derba,s ♱,"['add', 'ur', 'mbti', 'put', '4', 'character', 'type', 'istp']",ISTP
293,1422517212397674499,nyxlixir,nyxie ♡ lf moots,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
294,1400351139183403008,edgwaranpo,li,"['istp', 'sp3', 'ig']",ISTP
295,1656656954662731785,hyunejsm,ry. ★⁵,"['𖥨', '4', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp']",ISTP
296,1363122417866973186,ddeonheee,elle,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
297,1591126357727223809,jjanguricky,짱,"['hi', 'im', 'new', 'amp', 'im', 'looking', 'study', 'buddy', 'person', 'fencing', 'cala', '08l', 'last', 'year', 'jhs', 'istp', 'gang', 'collision', 'yo']",ISTP
298,1217549884380925966,AudSunMoon,🌟 Doll AudSunMoon 💎 RudSweety 🐾,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
299,1654014488763564032,enficxz,D ; ia sa umaga active pag uwian nyo na from skul,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
300,1657654451442966528,seiarive,seia,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
301,1518941609823334401,urfavvcy,ً,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
302,1630606502003363840,_leohoe_,leohoe(fb limit)⁰⁻¹,"['day', '6', 'loudly', 'cry', 'face', 'hi', 'im', 'kian', 'theyhe', '07', 'istp', 'filoeng', 'kind', 'new', 'looking', 'moa', 'engene']",ISTP
303,1518941609823334401,urfavvcy,ً,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
304,1616019183443267584,gguk_rkiveysj,ria,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
305,1620051128120659969,wonulovv3rr,elli ; lf : moots/friends📌,"['day', '6', 'loudly', 'cry', 'face', 'hi', 'im', 'kian', 'theyhe', '07', 'istp', 'filoeng', 'kind', 'new', 'looking', 'moa', 'engene']",ISTP
306,1409905562775478277,sconxee,ًia,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
307,1381539504712912896,chanheesredhair,sha,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
308,1411470242002259969,lhcpeachy,raa,"['hi', 'im', 'new', 'amp', 'im', 'looking', 'study', 'buddy', 'person', 'fencing', 'cala', '08l', 'last', 'year', 'jhs', 'istp', 'gang', 'collision', 'yo']",ISTP
309,1641628990917210112,JUNEHAZL,𝐉une,"['hi', 'im', 'new', 'amp', 'im', 'looking', 'study', 'buddy', 'person', 'fencing', 'cala', '08l', 'last', 'year', 'jhs', 'istp', 'gang', 'collision', 'yo']",ISTP
310,1335392869775917057,unseriousfanacc,lavibia ★⁵,"['hi', 'im', 'isa', 'im', 'looking', 'interactive', 'moot', 'lt3', '17', 'lesbian', 'istp', 'looking', 'stay', 'atiny', 'nctzen', 'deo']",ISTP
311,1529839305593499649,CertifiedWizNot,ryan #UNFORGIVEN,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
312,1373625663962243074,oneof_esta,˖ ࣪ esta²⁴,"['hi', 'im', 'new', 'amp', 'im', 'looking', 'study', 'buddy', 'person', 'fencing', 'cala', '08l', 'last', 'year', 'jhs', 'istp', 'gang', 'collision', 'yo']",ISTP
313,1658067443812827136,lalavienha,sayi,"['𖥨', '4', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp']",ISTP
314,1466260479752359938,jonghomallow,sushi,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa', 'nct']",ISTP
315,1626837728376799232,si4ryki,ْ⭒,"['finding', 'interactive', 'moot', '𖤐', 'hihi', 'im', 'siana', 'sia', 'gt', 'lt', 'pronoun', 'istp', 'ults', 'enhypen', 'le', 'ssera', 'aespa']",ISTP
316,1301919142560387075,rye_mov,rye// u matter!🎗️✈️,"['reason', 'particular', 'istps', 'house', 'tonight']",ISTP
317,1293142920858501120,4heemonli,fiva,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
318,1658090217470070784,ggunrae,ria ☕,"['𖥨', '4', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp']",ISTP
319,1521507509366038529,studzny,Ꮋɑᥒᥙᩛ²⁶ ૮ ˃֊ ˂ ა⋆ ࣪.𖦹,"['hi', 'im', 'new', 'amp', 'im', 'looking', 'study', 'buddy', 'person', 'fencing', 'cala', '08l', 'last', 'year', 'jhs', 'istp', 'gang', 'collision', 'yo']",ISTP
320,1583711146690740224,wofieeblush,Aurel Tanuwilia,"['hi', 'im', 'new', 'amp', 'im', 'looking', 'study', 'buddy', 'person', 'fencing', 'cala', '08l', 'last', 'year', 'jhs', 'istp', 'gang', 'collision', 'yo']",ISTP
321,1466260479752359938,jonghomallow,sushi,"['day', '6', 'loudly', 'cry', 'face', 'hi', 'im', 'kian', 'theyhe', '07', 'istp', 'filoeng', 'kind', 'new', 'looking', 'moa', 'engene']",ISTP
322,1656942469995454468,zyukoumi,kian,"['day', '6', 'loudly', 'cry', 'face', 'hi', 'im', 'kian', 'theyhe', '07', 'istp', 'filoeng', 'kind', 'new', 'looking', 'moa']",ISTP
323,1567426573778952194,Daysiicasy,N4SH,"['hi', 'im', 'new', 'amp', 'im', 'looking', 'study', 'buddy', 'person', 'fencing', 'cala', '08l', 'last', 'year', 'jhs', 'istp', 'gang', 'collision', 'yo']",ISTP
324,2757133623,wrtels,zeeza,"['hi', 'im', 'new', 'amp', 'im', 'looking', 'study', 'buddy', 'person', 'fencing', 'cala', '08l', 'last', 'year', 'jhs', 'istp', 'gang', 'collision', 'yo']",ISTP
325,1625901922225127424,bonnilyryu,esther - DARK BLOOD limit,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
326,1608529580608065536,woncat_9,amara | ENHYPEN CB MAY 22,"['looking', 'active', 'moot', 'day', '2', 'new', 'yori', 'istp', 'filo', 'blackpink', 'newjeans', 'lesserafim', 'ive', 'tw']",ISTP
327,1648609207627976704,i4hjsoo,jo.,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
328,1544589493964906496,Reboisasie,Jie 🥛🐄,"['hi', 'im', 'new', 'amp', 'im', 'looking', 'study', 'buddy', 'person', 'fencing', 'cala', '08l', 'last', 'year', 'jhs', 'istp', 'gang', 'collision', 'yo']",ISTP
329,1310734858012958720,https_ainee,ًaine | vi day !!,"['hi', 'im', 'new', 'amp', 'im', 'looking', 'study', 'buddy', 'person', 'fencing', 'cala', '08l', 'last', 'year', 'jhs', 'istp', 'gang', 'collision', 'yo']",ISTP
330,1639096878704001025,kkeitayoo,arinji`,"['istp', 'zhang', 'hao', '1st', 'look']",ISTP
331,1466783400992260097,kgyuvinc,dei🐾,"['istp', 'zhang', 'hao', '1st', 'look']",ISTP
332,1379817489601679370,mrbuu25210652,🐫🦇🔊 |mrbuu.Cetus | FusionX Finance 🛸⚙️🐐,"['artist', 'palette', 'gabby', 'reveal', '7', 'raise', 'ai', 'artist', 'palette', 'living', 'life', 'edge', 'daring', 'energetic', 'ultimate']",ISTP
333,1639096878704001025,kkeitayoo,arinji`,"['istp', 'zhang', 'hao', '1st', 'look']",ISTP
334,1638364553473064960,gyuvinbengbeng,ce yora 🫧 fb!,"['istp', 'zhang', 'hao', '1st', 'look']",ISTP
335,1653744963858092035,jenowstudy,GisELLa 🎀,"['hi', 'im', 'new', 'amp', 'im', 'looking', 'study', 'buddy', 'person', 'fencing', 'cala', '08l', 'last', 'year', 'jhs', 'istp', 'gang', 'collision', 'yo']",ISTP
336,1552994272269312002,vileoria,ハン.,"['istp', 'sp316so136']",ISTP
337,1437022989602623491,archaeryy,zoey,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
338,1654477237104824320,drixkhw,hendrixton ★⁵ TOPLINE SLAYED‼️,"['𖥨', '4', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp']",ISTP
339,1657023150083780611,cakielle,elle ✧・゚: *,"['hi', 'im', 'new', 'amp', 'im', 'looking', 'study', 'buddy', 'person', 'fencing', 'cala', '08l', 'last', 'year', 'jhs', 'istp', 'gang', 'collision', 'yo']",ISTP
340,1657777953047220229,znxyne,yana🎧,"['hi', 'im', 'new', 'amp', 'im', 'looking', 'study', 'buddy', 'person', 'fencing', 'cala', '08l', 'last', 'year', 'jhs', 'istp', 'gang', 'collision', 'yo']",ISTP
341,1658120375362887683,_rrrca,rachaa,"['hi', 'im', 'new', 'amp', 'im', 'looking', 'study', 'buddy', 'person', 'fencing', 'cala', '08l', 'last', 'year', 'jhs', 'istp', 'gang', 'collision', 'yo']",ISTP
342,1647219004455493632,darialuvsfelix,daria ★⁵,"['𖥨', '4', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp']",ISTP
343,1649977950274715649,ely_bnscartz,ely ★,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
344,1500039545957408769,yvrkzn,tan.,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
345,2683398265,becerraTD,Lex Becerra,"['add', 'mbti', 'put', '4', 'character', 'type', 'istp']",ISTP
346,1629412141911400448,heewon1n,anya,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
347,1482175201412407301,ayatarch1ve,ayat,"['𖥨', '4', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp']",ISTP
348,1565683997753364480,kaizelstudy,kaizel | studytwt,"['hi', 'im', 'new', 'amp', 'im', 'looking', 'study', 'buddy', 'person', 'fencing', 'cala', '08l', 'last', 'year', 'jhs', 'istp', 'gang', 'collision', 'yo']",ISTP
349,1658750992400392195,cdrvit,cit²⁶,"['hi', 'im', 'new', 'amp', 'im', 'looking', 'study', 'buddy', 'person', 'fencing', 'cala', '08l', 'last', 'year', 'jhs', 'istp', 'gang', 'collision', 'yo']",ISTP
350,1650565201144721408,jigunwoo,nadya 🦋 AI for assignments,"['𖥨', '4', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp']",ISTP
351,1633006492550053888,wongaze,ً,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
352,1462629957746642950,r3yyu,ajwa ; ia sch,"['𖥨', '4', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp']",ISTP
353,1657819517689692161,FEARLESST0KKI,rae || looking for moots !,"['𖥨', '4', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp']",ISTP
354,1438610173384282112,urlizlist,liz,"['last', 'time', 'esfp', 'istp', 'isfp', 'intj', 'intp', 'huh']",ISTP
355,1630846519485276160,geoksjsn,geo,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
356,1630846519485276160,geoksjsn,geo,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
357,1372784042932768775,skaiiwater,cala the explorer,"['hi', 'im', 'new', 'amp', 'im', 'looking', 'study', 'buddy', 'person', 'fencing', 'cala', '08l', 'last', 'year', 'jhs', 'istp', 'gang']",ISTP
358,1602511189292244992,sswanlakes,𝑎𝑚𝑖𝑔𝑎 ´ ᭄🪽 . ₊‧ °승.•✩⋆ || 𝖲emi ﺃa 📑˘ ♥︎,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
359,1536602294992527364,Alshaira2nd,Alshaira;Dark blood (very ia bc of school),"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
360,1658067443812827136,lalavienha,sayi,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
361,1492233739723751429,shijo_xie,Yeo ♡ IFB!,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
362,1479305828570398723,yyjnggwn,ً,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
363,1640346704879730688,jungeunsfavvgay,🐰,"['hi', 'im', 'isa', 'im', 'looking', 'interactive', 'moot', 'lt3', '17', 'lesbian', 'istp', 'looking', 'stay', 'atiny', 'nctzen', 'deo']",ISTP
364,1431271092631441411,isAaryav,aaryav,"['athena', 'entj', 'eprox', 'istp']",ISTP
365,1373603726984847362,grelvetre,grace ★ check 📌,"['𖥨', '4', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp']",ISTP
366,1548739904741466115,2hwangssick,★ mrs.seo,"['hi', 'im', 'isa', 'im', 'looking', 'interactive', 'moot', 'lt3', '17', 'lesbian', 'istp', 'looking', 'stay', 'atiny', 'nctzen', 'deo']",ISTP
367,1590748476832468992,ch4erlvrz,ria ✩°。⋆ ★⁵ REST,"['hi', 'im', 'isa', 'im', 'looking', 'interactive', 'moot', 'lt3', '17', 'lesbian', 'istp', 'looking', 'stay', 'atiny', 'nctzen', 'deo']",ISTP
368,1487218188240760833,yeosbinnie,isa,"['hi', 'im', 'isa', 'im', 'looking', 'interactive', 'moot', 'lt3', '17', 'lesbian', 'istp', 'looking', 'stay', 'atiny', 'nct']",ISTP
369,1112133474100477952,nisasaaff,🌻 nisa.,"['haerin', 'istp']",ISTP
370,1367435748094345216,sunarchive_,alex,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
371,1595577905077440512,_wooze4ns,snow ✩,"['looking', 'carat', 'moot', '09', 'sheher', 'istp', 'new', 'new', 'start', 'leaf', 'fluttering', 'wind', 'looking', 'interac']",ISTP
372,1373734712624177152,epr0x,eprox 🇪🇬 ❤️ 🇵🇸 (4 DAYS TO FINISH SCHOOL 🎉),"['yeah', 'seem', 'istp', 'somehow', 'except', 'mechanical', 'thing', 'hate', 'fixing', 'mechanical', 'related', 'stuff', 'e']",ISTP
373,1648247027137130502,akarishimuzu,ً,"['looking', 'active', 'moot', 'day', '2', 'new', 'yori', 'istp', 'filo', 'blackpink', 'newjeans', 'lesserafim', 'ive', 'tw']",ISTP
374,1210252070462341121,jpgwvil,mars 🐹,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
375,504320928,rhyan_bautista,BLINK Ryan | All Eyes on ME! by JISOO,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
376,1620322348166692866,xiiaqn,xian,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
377,1481821785956171777,probsessive,"som .., hehe","['im', 'istp', 'anymore']",ISTP
378,1655784909259280384,kkhiann_,khian || lf moots,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
379,1616282233148674052,vlfmaks,Fir,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
380,1373874912494899205,lvhnni_,ً,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
381,1658377233940242433,Hanshuleia,Leia «follow limit»,"['looking', 'carat', 'moot', '09', 'sheher', 'istp', 'new', 'new', 'start', 'leaf', 'fluttering', 'wind', 'looking', 'interac']",ISTP
382,1530429888544485376,luvlyfullsun,ayaa ✰ exam week 📚,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
383,1550369085154013185,Rubber_ducky_15,Stray Kiss wooh claim ITEM🌟🌟🌟🌟🌟(fan acc #skz),"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
384,1541832977545498624,shuaiboob,sae ♩ read pinned,"['hi', 'im', 'sae', 'im', 'looking', 'interactive', 'moot', 'new', 'ᵎ', 'ᴗᴗshet']",ISTP
385,1652839709130002433,wyattatops,wyatt 📌,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
386,1354616071928467458,euhannaa_,euhanna_,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
387,1347963846229585920,mazuhope,hope⁷🩰,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
388,1362989960115191809,solace_eternal,Fırat Bağ,"['take', 'personality', 'type', 'character', 'littlefinger', 'tywin', 'lannister', 'provide']",ISTP
389,1595728450144567296,est280679,seven,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
390,1604046725853110272,wffiel,sol,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
391,1490276061287895040,silverioblake__,Blake,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
392,1523345947153301506,little_rie_,˚rie | lf moots | flop,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
393,1647219004455493632,darialuvsfelix,daria ★⁵,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
394,1449271086709891073,kiralgii,kira got her 2ha copy,"['mine', 'istp']",ISTP
395,1523345947153301506,little_rie_,˚rie | lf moots | flop,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
396,1620322348166692866,xiiaqn,xian,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
397,1577811304886128640,seonaurr,seu,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
398,1467410950131105792,choimfs,ً,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
399,1402071879888740360,chuuroes_,lou ♡,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
400,1467410950131105792,choimfs,ً,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
401,1654014488763564032,enficxz,D ; ia sa umaga active pag uwian nyo na from skul,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
402,1564920056047235072,xxdaneli,eyn busy era,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
403,1374525509313331201,yunjinsera,ava♥︎,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
404,1637285989910552577,Betabel_RM,Belu 🇨🇴! ⁵⁵,"['completely', 'forgot', 'abt', '16', 'personality', 'test', 'anyway', 'im', 'istp']",ISTP
405,1403336608187777035,iczyeon,jia,"['looking', 'active', 'moot', 'day', '2', 'new', 'yori', 'istp', 'filo', 'blackpink', 'newjeans', 'lesserafim', 'ive', 'tw']",ISTP
406,1644706446163202049,pieonnny,shi ❦ ; d-4,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
407,1420920932596543492,meigurubachira,ؘvisha,"['d5', 'hello', 'im', 'kui', 'im', 'looking', 'interactive', 'esp', 'new', 'pronoun', 'istp', 'min']",ISTP
408,1518906629353541632,satuorugojo,ؘuta,"['d5', 'hello', 'im', 'kui', 'im', 'looking', 'interactive', 'esp', 'new', 'pronoun', 'istp', 'min']",ISTP
409,1485462889146241024,cyrusborgluvr,auggie🌟,"['im', 'istp']",ISTP
410,1602993857377243136,L4SJY,Ioriver | BITE ME,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
411,1466260479752359938,jonghomallow,sushi,"['looking', 'active', 'moot', 'day', '2', 'new', 'yori', 'istp', 'filo', 'blackpink', 'newjeans', 'lesserafim', 'ive', 'tw']",ISTP
412,1636023197496750082,cup11dxx,☾ | 새별,"['looking', 'active', 'moot', 'day', '2', 'new', 'yori', 'istp', 'filo', 'blackpink', 'newjeans', 'lesserafim', 'ive', 'tw']",ISTP
413,901640216070508544,EdgarChihua18,Edgar .,"['looking', 'active', 'moot', 'day', '2', 'new', 'yori', 'istp', 'filo', 'blackpink', 'newjeans', 'lesserafim', 'ive', 'tw']",ISTP
414,1624098606025154561,luckyyyeon,cupid levi /// saw taylor 5/12,"['looking', 'active', 'moot', 'day', '2', 'new', 'yori', 'istp', 'filo', 'blackpink', 'newjeans', 'lesserafim', 'ive', 'tw']",ISTP
415,1385498092955340803,hennyjendeuk,kui ♡,"['d5', 'hello', 'im', 'kui', 'im', 'looking', 'interactive', 'esp', 'new', 'pronoun', 'istp']",ISTP
416,1506147585383272448,yeirenzw,qeiyg,"['looking', 'active', 'moot', 'day', '2', 'new', 'yori', 'istp', 'filo', 'blackpink', 'newjeans', 'lesserafim', 'ive', 'tw']",ISTP
417,1658328706581155845,yriqzlx,~,"['looking', 'active', 'moot', 'day', '2', 'new', 'yori', 'istp', 'filo', 'blackpink', 'newjeans', 'lesseraf']",ISTP
418,1466260479752359938,jonghomallow,sushi,"['day', '2', 'hi', 'im', 'ziaji', 'im', 'currently', 'looking', 'im', 'new', 'moved', 'acc', 'looking', 'f']",ISTP
419,1620322348166692866,xiiaqn,xian,"['right', 'anger', 'bubblerestarting', 'hi', 'im', 'mei', 'sheher', 'istp', 'looking', 'interactive', 'new', 'amp', 'stay']",ISTP
420,1373734712624177152,epr0x,eprox 🇪🇬 ❤️ 🇵🇸 (4 DAYS TO FINISH SCHOOL 🎉),"['interesting', 'istp', 'istj', 'anymore']",ISTP
421,1658026743066939397,saymynamebroski,ziaji/looking for moots,"['day', '2', 'hi', 'im', 'ziaji', 'im', 'currently', 'looking', 'im', 'new', 'moved', 'acc', 'lookin']",ISTP
422,1467393776457236480,zefyrant,kazuha's flamethrower,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
423,1654679331409657858,lynxyjwlvr,azi,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
424,1605386742273437696,cleasaintly,clea,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
425,1651176604272558082,jehsy4enha_,jehsy ; finding moots ! ᰔᩚ,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
426,1639006760202543119,heesngza,eve ?,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
427,1406570740309135360,beomuii,stel | MANISFESTING SECURED A:SM IN BUL TIX,"['hi', 'im', 'ziaji', 'im', 'currently', 'looking', 'im', 'new', 'moved', 'acc', 'looking', 'zb1']",ISTP
428,1654750738604765184,i43aran,lee | lf swith & hunny moots,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
429,1654750738604765184,i43aran,lee | lf swith & hunny moots,"['hi', 'im', 'ziaji', 'im', 'currently', 'looking', 'im', 'new', 'moved', 'acc', 'looking', 'zb1']",ISTP
430,1466260479752359938,jonghomallow,sushi,"['rabbit', 'face', 'finding', 'moot', 'denz', 'pisces', 'istp', 'finding', 'neverland', 'reveluv', 'blink', 'fearno']",ISTP
431,1654750738604765184,i43aran,lee | lf swith & hunny moots,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
432,1608473444181757953,keiishix,xi,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
433,1576916218761555969,Beom2DaGyu,Hitomi ヽ(^︶^)ゝ| flore's gone 😚,"['istp', 'anyways', 'hi', 'non', 'moot']",ISTP
434,1337215409213337601,muqats,pri ⚢,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp', 'son', 'todos', 'mi', 'kin']",ISTP
435,1530429888544485376,luvlyfullsun,ayaa ✰ exam week 📚,"['hi', 'im', 'ziaji', 'im', 'currently', 'looking', 'im', 'new', 'moved', 'acc', 'looking', 'zb1']",ISTP
436,1630548284610863104,chenlefiless,theo,"['day', '2', 'hii', 'im', 'tey', 'im', 'looking', 'interactive', 'exol', 'nctzen', 'moot', 'fandom', 'ꕥ', '18', '04', 'liner', 'ꕥ']",ISTP
437,1396834653152059398,lycenaire999,Lycenaire ❤️🔥,"['add', 'mbti', 'put', 'four', 'character', 'mbti', 'istp']",ISTP
438,1647917917592494082,httpszyraa,Zyra,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
439,1647917917592494082,httpszyraa,Zyra,"['right', 'anger', 'bubblerestarting', 'hi', 'im', 'mei', 'sheher', 'istp', 'looking', 'interactive', 'new', 'amp', 'stay']",ISTP
440,1576297172554973184,sydoot,sydo✷,"['rabbit', 'face', 'finding', 'moot', 'denz', 'pisces', 'istp', 'finding', 'neverland', 'reveluv', 'blink', 'fearno']",ISTP
441,1598870425936613376,prodyeonz,ً,"['rabbit', 'face', 'finding', 'moot', 'denz', 'pisces', 'istp', 'finding', 'neverland', 'reveluv', 'bli']",ISTP
442,1564369886037647361,messyoongi_s,^Lyra👾•^ ia bc of gcses😣,"['day', '2', 'hii', 'im', 'tey', 'im', 'looking', 'interactive', 'exol', 'nctzen', 'moot', 'fandom', 'ꕥ', '18', '04', 'liner', 'ꕥ']",ISTP
443,1650227552412114944,sakurrakiss16,☆(on a limit),"['lf', 'moot', 'white', 'heart', 'im', 'ember', 'new', 'shethey', 'bi', '22', 'istp', 'gemini', 'may', '25th', 'ults', 'bts', 'black']",ISTP
444,1564369886037647361,messyoongi_s,^Lyra👾•^ ia bc of gcses😣,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
445,1539465958947160064,seonflick,zie ⨾ 🍷,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
446,1450311814881947648,iiittas,ra 🇲🇦,"['u', 'istp']",ISTP
447,1648819585796153345,rainkissings,;,"['august', 'rain', 'knight', '98', 'aquarius', 'istp', 'bisexual', 'hopeless', 'romantic', 'wannabe', 'writer']",ISTP
448,1650578209446961153,somebycoups,zhanghao’s hair clip,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
449,1551263219049709570,nwjnsnextdoor,WHO'S emi 🏠🐰,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
450,1365598156331700224,kofinity,Kofi☘️,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
451,1571193406386327553,fag4renjun,michael | roll up to the party roll up roll up,"['day', '2', 'hii', 'im', 'tey', 'im', 'looking', 'interactive', 'exol', 'nctzen', 'moot', 'fandom', 'ꕥ', '18', '04', 'liner', 'ꕥ']",ISTP
452,547881625,mik__sm,Михаил Александрович | Suiswap 🐐,"['artist', 'palette', 'gabby', 'reveal', '7', 'raise', 'ai', 'artist', 'palette', 'living', 'life', 'edge', 'daring', 'energetic', 'ultimate']",ISTP
453,1647219004455493632,darialuvsfelix,daria ★⁵,"['day', '2', 'hii', 'im', 'tey', 'im', 'looking', 'interactive', 'exol', 'nctzen', 'moot', 'fandom', 'ꕥ', '18', '04', 'liner', 'ꕥ']",ISTP
454,1571193406386327553,fag4renjun,michael | roll up to the party roll up roll up,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
455,1619094305246777346,skz1luv,lina⁵ ✧ SKZ COMEBACK D-16,"['day', '5', 'hi', 'im', 'kian', 'white', 'heart', 'theyhe', '07', 'istp', 'filoeng', 'still', 'looking', 'interactive', 'moot', 'downcast', 'face', 'sweat', 'moa', 'midzy', 'stay', 'engene']",ISTP
456,865239040815222785,padsf0ot,Leh¹⁶,"['general', 'letleletleh', 'sheher', 'amp', 'hehim', 'brazilian', 'istp', '5w4', 'ravenclaw']",ISTP
457,1419404813155151875,Im_Arty_,Arty of Lesbos 🌈,"['istpestp', 'fit', 'lmao']",ISTP
458,1021556890046611456,applesan_,nami,"['_ツ_', 'forgive', 'b', 'forget', 'c', 'cut', 'depends']",ISTP
459,1013710836379078656,VerenaZim90,Verena Zimmermann,"['join', 'u', 'wed', 'may', '17', 'engaging', 'talk', 'shifting', 'parad']",ISTP
460,1433600502474977281,laurenishere19,༺☆༻,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp']",ISTP
461,1414538338833506306,Wilaxox,Wila ❀ EXPOSING ERA ! ✦,"['add', 'mbti', 'put', '4', 'character', 'type', 'istp', 'yes', 'im', 'autistic', 'yes', 'anger', 'i']",ISTP
462,1409288057791078405,dryz9_ouo,arix rose,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
463,1414394740762550278,namjoonhcrts,ember // D-7 UNTIL BDAY!! / VIDEO EDIT OUT!!!,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
464,1028544475616792577,f4iryh3ejake,faisyah,"['𖥨', '4', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp']",ISTP
465,1210252070462341121,jpgwvil,mars 🐹,"['right', 'anger', 'bubblerestarting', 'hi', 'im', 'mei', 'sheher', 'istp', 'looking', 'interactive', 'new', 'amp', 'stay']",ISTP
466,1441392593867137024,rkdekdmsS2,ඩි໒꒱,"['cesar', 'torres', 'amp', 'mark', 'heathcliff', 'avatar', '16personalities', 'web', 'edited', 'stevxkey']",ISTP
467,1210252070462341121,jpgwvil,mars 🐹,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
468,1654901009846779906,y07iu,☆,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04', 'liner']",ISTP
469,1647219004455493632,darialuvsfelix,daria ★⁵,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
470,1508400153086115846,indigominari,Rain ♡ loves jay (mae fan twt),"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
471,1624098606025154561,luckyyyeon,cupid levi /// saw taylor 5/12,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
472,1102390804813893632,starsberet,🌿,"['look', 'cognitive', 'function', 'test', 'type', 'based', 'letter', 'reality', 'funct']",ISTP
473,860213173852397568,lovelynahceah,yam,"['day', '2', 'hii', 'im', 'tey', 'im', 'looking', 'interactive', 'exol', 'nctzen', 'moot', 'fandom', 'ꕥ', '18', '04', 'liner', 'ꕥ']",ISTP
474,1657819517689692161,FEARLESST0KKI,rae || looking for moots !,"['hello', 'im', 'rae', 'im', 'looking', 'interactive', 'moot', 'im', 'new', 'amp', 'ᐟ', 'sheher', 'istp', '04']",ISTP
475,1506216800362835977,IstpKako,Miss Kako★⁵BangChan🐺 skz Michelin~,"['fellow', 'istp', 'look', 'good']",ISTP
476,1448492136479936514,wthfeinz,feinz ˏˋ➷,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
477,1601598587791867904,lwjseph,zryx,"['say', 'want', 'tise', 'istp', 'so5', 'bf', 'actually', 'kang', 'taehyun', 'btw']",ISTP
478,107651851,generis111,HHGlobal,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
479,1658328706581155845,yriqzlx,~,"['hi', 'im', 'ziaji', 'im', 'currently', 'looking', 'im', 'new', 'moved', 'acc', 'looking', 'zb1']",ISTP
480,1501636808488202241,loveminniii,aimee ! 爱美,"['hihihi', 'im', 'aimee', 'im', 'looking', 'interactive', 'moot', '6teen', 'istp', 'shethey', 'new']",ISTP
481,1614896774803771393,lunalvr__,luna,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
482,1589565678347960320,zmxlza,ahmad amal,"['add', 'mbti', 'put', '4', 'character', 'type', 'istp', 'overpower', 'character']",ISTP
483,1597444986903175168,dxmnedlxfe,amy ♤ parody,"['august', 'rain', 'knight', '98', 'aquarius', 'istp', 'bisexual', 'hopeless', 'romantic', 'wannabe', 'writer']",ISTP
484,1497251588020502529,_maureeeen,mau | #1 lesserafim fan,"['day', '5', 'hi', 'im', 'kian', 'white', 'heart', 'theyhe', '07', 'istp', 'filoeng', 'still', 'looking', 'interactive', 'moot', 'downcast', 'face', 'sweat', 'moa', 'midzy', 'stay', 'engene']",ISTP
485,831905075735953408,rtsaliovich5,Regina Tsaliovich,"['istp', 'stand', 'wrong', 'answer']",ISTP
486,2815666739,subinoofficial,BRYAN🦊🧃 is seeing Yujin🐶✨,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istpfox']",ISTP
487,1572589815702626304,chimeguru,niko,"['istp', 'think']",ISTP
488,1586340180499525634,namdaneun,‘다은,"['11', 'istp', '12', 'nde']",ISTP
489,1271419991796015105,k_exo_24,kathyyy,"['day', '2', 'hii', 'im', 'tey', 'im', 'looking', 'interactive', 'exol', 'nctzen', 'moot', 'fandom', 'ꕥ', '18', '04', 'liner', 'ꕥ']",ISTP
490,1647970065466404866,inksnskies,seikie,"['day', '5', 'hi', 'im', 'kian', 'white', 'heart', 'theyhe', '07', 'istp', 'filoeng', 'still', 'looking', 'interactive', 'moot', 'downcast', 'face', 'sweat', 'moa', 'midzy', 'stay', 'engene']",ISTP
491,1201869601643978753,samchanchil,Injeolmi 🌈WILL SEE 7 DREAM IN TDS2 ENCORE🌈,"['day', '2', 'hii', 'im', 'tey', 'im', 'looking', 'interactive', 'exol', 'nctzen', 'moot', 'fandom', 'ꕥ', '18', '04', 'liner', 'ꕥ']",ISTP
492,1654014488763564032,enficxz,D ; ia sa umaga active pag uwian nyo na from skul,"['day', '5', 'hi', 'im', 'kian', 'white', 'heart', 'theyhe', '07', 'istp', 'filoeng', 'still', 'looking', 'interactive', 'moot', 'downcast', 'face', 'sweat', 'moa', 'midzy', 'stay', 'engene']",ISTP
493,1562968099334172672,rainystorming,;,"['august', 'rain', 'knight', '98', 'aquarius', 'istp', 'bisexual', 'hopeless', 'romantic', 'wannabe', 'writer']",ISTP
494,2997327473,moonwept,August.,"['august', 'rain', 'knight', '98', 'aquarius', 'istp', 'bisexual', 'hopeless', 'romantic', 'wannabe', 'wri']",ISTP
495,1644344090266591235,lvminji,sai,"['𖥨', '4', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp']",ISTP
496,1571873877537726465,ysalynk,rie,"['day', '5', 'hi', 'im', 'kian', 'white', 'heart', 'theyhe', '07', 'istp', 'filoeng', 'still', 'looking', 'interactive', 'moot', 'downcast', 'face', 'sweat', 'moa', 'midzy', 'stay', 'engene']",ISTP
497,1244509485068099586,4quanrui,🎧,"['cant', 'defend', 'friend', 'ricky', 'kim', 'lip', 'ricky', 'hyeju', 'go', 'istp', 'agenda']",ISTP
498,1466260479752359938,jonghomallow,sushi,"['𖥨', '4', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp']",ISTP
499,1656942469995454468,zyukoumi,kian,"['day', '5', 'hi', 'im', 'kian', 'white', 'heart', 'theyhe', '07', 'istp', 'filoeng', 'still', 'looking', 'interactive', 'moot', 'downcast', 'face', 'sweat', 'moa', 'midzy', 'stay']",ISTP
500,1654991108416638978,stpd_lemondzz,♔〃˖𝖆𝖙𝖊𝖓¦ᴊᴀʏ ▸.🪐 ࣪,"['𖥨', '4', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage']",ISTP
501,912334468278390785,Yujeong9789,17FML🖤유정,"['bust', 'silhouette', 'who', 'park', 'myungsoo', 'seventeen', 'unique', 'istp', 'like', 'alone', 'us', 'blunt', 'word', 'turtle', 'opinion', 'c']",ISTP
502,1032233914033557505,p_ndrghl,`,"['rt', 'winter', 'little', 'istp']",ISTP
503,1276135770277867521,ME0WT0KKI,🌸,"['randomly', 'guessed', 'umehara', 'yuuichiro', 'istp', 'think', 'got', 'right']",ISTP
504,1657067139596169217,sooberriey,miyu ✮,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
505,887656218252242944,jenhawk6248,Dr. Jennifer A Hawkins 🦩 #SupportUkraine #eduFFB,"['istp', 'stand', 'wrong', 'answer']",ISTP
506,1647219004455493632,darialuvsfelix,daria ★⁵,"['right', 'anger', 'bubblerestarting', 'hi', 'im', 'mei', 'sheher', 'istp', 'looking', 'interactive', 'new', 'amp', 'stay']",ISTP
507,1648406599088717826,Heeluvsmenot,𝘼𝙡𝙞𝙭 || 𝘉𝘪𝘵𝘦 𝘮𝘦 || flop era,['istp'],ISTP
508,1614959145807130636,aloharmycarteu,aloharmy - looking for moots,"['hi', 'im', 'pia', '08', 'liner', 'istp', 'looking', 'moot', 'strawberryany', 'fandom', 'welcomed', 'strawberryskztreasure', 'svtnwjns', 'bts', 'le', 'sserafim']",ISTP
509,1650446021347119104,chvlree,r . busy,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
510,1528269700110594049,khainiki,khai,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
511,1483409641736343552,DYOmaluvsss,DYO l lumbay kasi hindi nakita NCT DREAM🥹,"['day', '2', 'hii', 'im', 'tey', 'im', 'looking', 'interactive', 'exol', 'nctzen', 'moot', 'fandom', 'ꕥ', '18', '04', 'liner', 'ꕥ']",ISTP
512,1441597824123109378,i07hy,⋆,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
513,1465292776329908237,PostPhDRoad,PostPhDRoad,"['istp', 'stand', 'wrong', 'answer']",ISTP
514,1434856297267040256,awrysun,aira,"['suprise', 'mbti', 'actually', 'istp']",ISTP
515,1656323155135275010,kpoply_,kat | offline,"['day', 'three', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'wel']",ISTP
516,1605386742273437696,cleasaintly,clea,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
517,794916267216011264,multiseasonie,mar 🦋 #MYWORLD,"['day', 'three', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'wel']",ISTP
518,794916267216011264,multiseasonie,mar 🦋 #MYWORLD,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
519,1609241014417633282,chocovani0_0,Eracat 🌸,"['scared', 'opening', 'istps', 'notice', 'thought', 'hiatus', 'would', 'extended', 'thankfully', 'adju']",ISTP
520,1657819907222827008,iervelvet,ier ⁉️,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
521,1605843265051586560,rkyve07,Yve,"['zッ', 'take', '3ㅠㅠ', 'hii', 'im', 'looking', 'interactive', 'kpop', 'moot', 'new', 'sheher', 'istp', 'minor', 'engen']",ISTP
522,1651562977626312706,iheartlicky,j 🦢,"['im', 'istp', 'tooo', 'wuuu']",ISTP
523,1651562977626312706,iheartlicky,j 🦢,"['im', 'istp', 'loveee']",ISTP
524,1635327067469357059,taehaovin,bina,"['fellow', 'istp']",ISTP
525,1658390855969849346,gabbrievws,gabhsjb♡,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
526,1571492394125918209,crowderNacht,Corvus,"['old', 'mbti', 'infj', 'took', 'test', 'infp', 'wrong', 'im', 'finding', 'enfj', 'b']",ISTP
527,1657560166555078656,wonieruarikis,hayley ♡,"['right', 'anger', 'bubblerestarting', 'hi', 'im', 'mei', 'sheher', 'istp', 'looking', 'interactive', 'new', 'amp', 'stay']",ISTP
528,1643837710929649665,xaesvn,۟,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
529,1331620633726259200,ssefnum,"Ssefnum ON, cek likes. 💚","['greeting', 'everyone', 'im', 'mission', 'make', 'friend', 'currently', 'set', 'eye', 'animanga', 'movie', 'mobile']",ISTP
530,194040304,meikakuko,Meikakuko (New Art on Pinned 📌),"['mbti', 'mami', 'one', 'who', 'cry', 'istp', '8w9', '845', 'nanami', 'one', 'look', 'shocked', 'esfj', '2w1', '216']",ISTP
531,1058215631600795648,chaerryitzy,luvy,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
532,1648247027137130502,akarishimuzu,ً,"['looking', 'carat', 'moot', '09', 'sheher', 'istp', 'new', 'new', 'start', 'leaf', 'fluttering', 'wind', 'looking', 'interac']",ISTP
533,1466260479752359938,jonghomallow,sushi,"['looking', 'carat', 'moot', '09', 'sheher', 'istp', 'new', 'new', 'start', 'leaf', 'fluttering', 'wind', 'looking', 'interac']",ISTP
534,1645424649868812288,junhuibby,NDAAA🌙,"['looking', 'carat', 'moot', '09', 'sheher', 'istp', 'new', 'new', 'start', 'leaf', 'fluttering', 'wind', 'looking', 'interac']",ISTP
535,1649007386148081665,cutiesgea,geaa 🥨,"['looking', 'carat', 'moot', '09', 'sheher', 'istp', 'new', 'new', 'start', 'leaf', 'fluttering', 'wind', 'looking', 'interac']",ISTP
536,1481236177164587008,cloudnayu,chen ☆ | kapanganakan ni red !,"['hao', 'yujin', 'istp']",ISTP
537,1658377233940242433,Hanshuleia,Leia «follow limit»,"['looking', 'carat', 'moot', '09', 'sheher', 'istp', 'new', 'new', 'start', 'leaf', 'fluttering', 'wind', 'looking']",ISTP
538,1331620633726259200,ssefnum,"Ssefnum ON, cek likes. 💚","['greeting', 'everyone', 'im', 'mission', 'make', 'friend', 'currently', 'set', 'eye', 'animanga', 'movie', 'mobile']",ISTP
539,1658351747147124736,0209pradawon,pradawon▽,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
540,1562083572051320833,yjpumas,liza ❤️,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
541,1510344571519221765,skzthots,scorpio eyes 🌟🪐,"['seems', 'happy', 'loudly', 'cry', 'face', 'think', 'hyunjin', 'istp', 'tbh']",ISTP
542,1510344571519221765,skzthots,scorpio eyes 🌟🪐,"['jisung', 'def', 'istp', 'imo', 'maybe', 'isfp', 'he', 'def', 'f', 'gtgt']",ISTP
543,1466260479752359938,jonghomallow,sushi,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
544,1649026425398124544,L0V3KYLE,Emi!! ★ #SPTWT STRONGBO 1 🫶💪,"['whats', 'letter', 'dude', 'istp']",ISTP
545,1636257806985592836,haerinhrs,ًzoy,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive', 'lesseraf']",ISTP
546,1414394740762550278,namjoonhcrts,ember // D-7 UNTIL BDAY!! / VIDEO EDIT OUT!!!,"['rabbit', 'face', 'finding', 'moot', 'denz', 'pisces', 'istp', 'finding', 'neverland', 'reveluv', 'blink', 'fearno']",ISTP
547,1658328706581155845,yriqzlx,~,"['hey', 'im', 'yori', 'looking', 'active', 'moot', 'new', 'ults', 'blackpink', 'newjeans', 'casuals', 'ive']",ISTP
548,1641011305627746304,kliyasksk,kliya ! exams,"['im', 'istp']",ISTP
549,1041830954535403521,tuungsten_,rian ☆,"['istp', 'broken', 'heart']",ISTP
550,1620051128120659969,wonulovv3rr,elli ; lf : moots/friends📌,"['day', '2', 'hii', 'im', 'tey', 'im', 'looking', 'interactive', 'exol', 'nctzen', 'moot', 'fandom', 'ꕥ', '18', '04', 'liner', 'ꕥ']",ISTP
551,1484526642060206081,wolfsbanepages,cas ☕︎,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istpballoon']",ISTP
552,2206494691,DreamySky_,La🍋✨,"['bust', 'silhouette', 'who', 'park', 'myungsoo', 'seventeen', 'unique', 'istp', 'like', 'alone', 'us', 'blunt', 'word', 'turtle', 'opinion', 'c']",ISTP
553,1368892709490978820,arbzenxyy,elf/ar⁷¹¹,"['day', '2', 'hii', 'im', 'tey', 'im', 'looking', 'interactive', 'exol', 'nctzen', 'moot', 'fandom', 'ꕥ', '18', '04', 'liner', 'ꕥ']",ISTP
554,1650397202626519041,1gyaon,arlea,"['day', '2', 'hii', 'im', 'tey', 'im', 'looking', 'interactive', 'exol', 'nctzen', 'moot', 'fandom', 'ꕥ', '18', '04', 'liner', 'ꕥ']",ISTP
555,1280464221386321920,JJKprodi,A.,"['day', '2', 'hii', 'im', 'tey', 'im', 'looking', 'interactive', 'exol', 'nctzen', 'moot', 'fandom', 'ꕥ', '18', '04', 'liner', 'ꕥ']",ISTP
556,887349205022502912,SophiaGable,soph🫧is going to korea in 16 days❕,"['day', '2', 'hii', 'im', 'tey', 'im', 'looking', 'interactive', 'exol', 'nctzen', 'moot', 'fandom', 'ꕥ', '18', '04', 'liner', 'ꕥ']",ISTP
557,1234636515998715904,aia_wtnb,aia,"['right', 'anger', 'bubblerestarting', 'hi', 'im', 'mei', 'sheher', 'istp', 'looking', 'interactive', 'new', 'amp', 'stay']",ISTP
558,1466260479752359938,jonghomallow,sushi,"['day', '2', 'hii', 'im', 'tey', 'im', 'looking', 'interactive', 'exol', 'nctzen', 'moot', 'fandom', 'ꕥ', '18', '04', 'liner', 'ꕥ']",ISTP
559,2509179860,jeonwonwo,kela,"['istp', 'realness']",ISTP
560,1354095204521787392,myjaemle,tey- (ミዎ ﻌ ዎミ)ノ,"['day', '2', 'hii', 'im', 'tey', 'im', 'looking', 'interactive', 'exol', 'nctzen', 'moot', 'fandom', 'ꕥ', '18', '0']",ISTP
561,1656551337306492929,lhyrl_,★ Alia !,"['day', 'three', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'wel']",ISTP
562,1612861789229965314,roppizz,로피,"['bebe', 'say', 'mbti', 'istp', 'look', 'photo', 'mbti', 'cute']",ISTP
563,1435146128245231621,delicatexrush,aurora ✨ eras 7/29,"['omg', 'istp', 'kinda', 'close', 'loudly', 'cry', 'face', 'idk', 'much', 'agree', 'result', 'though', 'might', 'take']",ISTP
564,1582242076770463744,hhyvniiz,🎧🗯 jas ★⁵ | 5 STAR IN 14 DAYS,"['rabbit', 'face', 'finding', 'moot', 'denz', 'pisces', 'istp', 'finding', 'neverland', 'reveluv', 'blink', 'fearno']",ISTP
565,1567658130829414401,yunjinsbby,el ☽ semi ia,"['rabbit', 'face', 'finding', 'moot', 'denz', 'pisces', 'istp', 'finding', 'neverland', 'reveluv', 'blink', 'fearno']",ISTP
566,1168937162345275392,KazSpeaksFax,Kaz | 📠 | ♛,['istp'],ISTP
567,1466260479752359938,jonghomallow,sushi,"['rabbit', 'face', 'finding', 'moot', 'denz', 'pisces', 'istp', 'finding', 'neverland', 'reveluv', 'blink', 'fearno']",ISTP
568,1598870425936613376,prodyeonz,ً,"['rabbit', 'face', 'finding', 'moot', 'denz', 'pisces', 'istp', 'finding', 'neverland', 'reveluv', 'bli']",ISTP
569,1223891093781008386,mahaespresso,𖤐,"['right', 'anger', 'bubblerestarting', 'hi', 'im', 'mei', 'sheher', 'istp', 'looking', 'interactive', 'new', 'amp', 'stay']",ISTP
570,1419428648914882560,skelechuuchuu,ELiO,"['god', 'course', 'ur', 'istp', 'fucking', 'hate', 'sincerely', 'istj']",ISTP
571,1654750738604765184,i43aran,lee | lf swith & hunny moots,"['right', 'anger', 'bubblerestarting', 'hi', 'im', 'mei', 'sheher', 'istp', 'looking', 'interactive', 'new', 'amp', 'stay']",ISTP
572,1164272366207328257,sscmertens,L3dy Bird,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'noi', 'istp', 'woman', 'lotus', 'position', 'light', 'skin', 'tone']",ISTP
573,1502289779802742786,heartzaynzy,zayn,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp']",ISTP
574,1606242300509798401,FennecCookie,🦄Cream/Felix/Fennec🦊 • 🧈 ROYAL MARGARINE‼️‼️🧈,"['bro', 'guy', 'end', 'entj', 'intj', 'istp', 'swear', 'ill', 'go', 'crazy']",ISTP
575,1610013849335353344,rivertheratx,river,"['theyre', 'istp']",ISTP
576,1631458512311123969,songs4drella,jt/andy 🎸🎷🎹🏳️⚧️ =w=,"['also', 'like', 'alone', 'time', 'completely', 'possible', 'extrovertedambiverted', 'intp', 'intj', 'istp', 'etc', 'b']",ISTP
577,1549114220712796160,EV4SJACKS,۟cáitín ☽,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp']",ISTP
578,1488090449952845824,Vinterunhinged,Vinter,"['istp', 'great', 'quality', 'dont', 'coldest', 'bitch', 'earth', 'good', 'istp', 'hehe']",ISTP
579,1239530891774275584,aespicykali,♡☾☆ꕤ,"['rt', 'winter', 'little', 'istp']",ISTP
580,1651537462919831554,halazia_san,San's right shoulder,"['day', 'hi', 'lovely', 'im', 'alex', '18', 'istp', 'multi', 'stan', 'post', 'ateez', 'enha', 'mostly', 'wenee', 'monbebe', 'carat', 'moo']",ISTP
581,1595621962977611780,lovingminjaee,sana love eli | elysian FOR FANDOM NAME,"['hunter', 'october', '5th', '2005', 'istp', 'dance', 'vocal', 'thai']",ISTP
582,1461101612441772037,redmeemsvng,Red 🔞,"['fact', 'mbti', 'istp', 'know', 'doesnt', 'mean', 'anything', 'cute', 'loudly', 'cry', 'faceloudly', 'cry', 'face', 'introverted', 'muscle', 'baby', 'seenoevil', 'monkey']",ISTP
583,1511030337106808842,mnsvngr,🍮thena🔞★★★★★ MinorsDNI,"['also', 'said', 'istp', 'someone', 'asked', 'like', 'cheese', 'wedge', 'cakr', 'said', 'yea', 'loudly', 'cry', 'face']",ISTP
584,1623301503967453184,nightdaisyx,marili !!,"['omg', 'im', 'istp', 'well', 'light', 'skin', 'tone']",ISTP
585,1623301503967453184,nightdaisyx,marili !!,"['according', 'website', 'he', 'istp', 'idk', 'woman', 'shrugging']",ISTP
586,1623301503967453184,nightdaisyx,marili !!,"['add', 'mbti', 'add', 'four', 'character', 'mbti', 'istp']",ISTP
587,1592875334189207552,wyniethebear,Wynea//finals q po pagdasal niyo naman buhay ko,"['rt', 'winter', 'little', 'istp']",ISTP
588,1395732835038679045,bbyitayo,Ayangnya Keita ♡ || Stan Ciipher,"['bebe', 'say', 'mbti', 'istp', 'look', 'photo', 'mbti', 'cute']",ISTP
589,1371464873222287361,EggSandwich77,𝓝𝓸𝓸𝓻𝓪,"['according', 'mbti', 'test', 'suga', 'im', 'istpthat', 'last', 'year']",ISTP
590,1422583826266693649,jouvamp,juno,"['istp', 'like', 'see', 'pizza', 'hungry', 'grinning', 'face', 'sweatface', 'tear', 'joyface', 'tear', 'joyface', 'tear', 'joyrolling', 'floor', 'laughingrolling', 'floor', 'laughingrolling', 'floor', 'laughinglawl']",ISTP
591,1422583826266693649,jouvamp,juno,"['fucking', 'course', 'youre', 'istp', 'thats', 'jounos', 'type', 'worst', 'one', 'ill', 'leave', 'alone', 'shitt']",ISTP
592,1422583826266693649,jouvamp,juno,"['youre', 'aggravating', 'want', 'everyone', 'answer', 'question', 'baaah', 'true', 'istp', 'think']",ISTP
593,1316030427467898891,kixtcat,captain hanna💞,"['tbl', '39', 'na', 'ar', '57', 'na', 'hutao', 'main', 'actually', 'sold', 'soul', 'prns', 'istp', '18', 'im', 'drinking', 'age', 'ok']",ISTP
594,1602511189292244992,sswanlakes,𝑎𝑚𝑖𝑔𝑎 ´ ᭄🪽 . ₊‧ °승.•✩⋆ || 𝖲emi ﺃa 📑˘ ♥︎,"['hi', 'im', 'pia', '08', 'liner', 'istp', 'looking', 'moot', 'strawberryany', 'fandom', 'welcomed', 'strawberryskztreasure', 'svtnwjns', 'bts', 'le', 'sserafim']",ISTP
595,1577628793275023360,deceasdmarc,mac₁₁,"['proud', 'istp']",ISTP
596,1577628793275023360,deceasdmarc,mac₁₁,"['ohhh', 'though', 'zendaya', 'rue', 'techno', 'ctechno', 'im', 'istp', 'thats']",ISTP
597,1577628793275023360,deceasdmarc,mac₁₁,"['u', 'istp']",ISTP
598,1085728366580228096,nanakyujcm,𝓷𝓪𝓷𝓪 ヅ,"['similarity', 'like', 'bias', 'like', 'fan', 'love', 'language', 'giving', 'song', 'recomendation', 'woa', 'mbti', 'isfpt', 'istp', 'actually']",ISTP
599,1646339898935332866,noandany,انا المتير,"['wont', 'say', 'anything', 'istp', 'know', 'well', 'good']",ISTP
600,1413989205890457601,HIRA_SHIZU,𝐓𝐇𝐄𝐘 𝐂𝐀𝐋𝐋 𝐌𝐄 𝐇𝐈𝐑𝐀 𒉭,"['introduce', 'intp', 'istp', 'mommy']",ISTP
601,758298094429573120,gAysinyoareaa,ramé,"['rt', 'winter', 'little', 'istp']",ISTP
602,876079679538511873,lyrebird_0619,火腿炒蛋包飯🌶,"['rt', 'winter', 'little', 'istp']",ISTP
603,1488013350629888000,wntrghstrr,𝙭𝙘𝙫𝙞 | 冬子 | 📵,"['rt', 'winter', 'little', 'istp']",ISTP
604,1587072384212688896,jchngpotato,Brier🥀 | JAY CHANG DEBUT 🎸🌟,"['eyyy', 'fellow', 'istp', 'raising', 'hand']",ISTP
605,1485843052182663169,mnjng111,aj,"['rt', 'winter', 'little', 'istp']",ISTP
606,1420863522989387782,lialovesnai,lia ϟ,"['infp', 'im', 'istp']",ISTP
607,1650631683341778944,venuslowr,vivi 🧸,"['restarting', 'elo', 'gois', 'im', 'kai', 'laging', 'scorpio', '05', 'istp', 'shethey', '11stem']",ISTP
608,1612782162415345666,zeryueis,🐝,"['add', 'mbti', 'put', '4', 'character', 'type', 'im', 'istp']",ISTP
609,1446177116270174209,chaemintcho,^,"['rt', 'winter', 'little', 'istp']",ISTP
610,1495625345789169665,kmnjeong,kali 🌶️,"['rt', 'winter', 'little', 'istp']",ISTP
611,1089880535139180544,dnnhpt,Elo.,"['rt', 'winter', 'little', 'istp']",ISTP
612,1265191156196900864,notyourminjeong,❄️,"['rt', 'winter', 'little', 'istp']",ISTP
613,1299382264204161028,aespinksure_06,shi,"['rt', 'winter', 'little', 'istp']",ISTP
614,923551809733648384,nrcj_,verona ⁰⁻¹ 🐾,"['nooo', 'disaster', 'istp', 'disappointed', 'face']",ISTP
615,1420863522989387782,lialovesnai,lia ϟ,"['add', 'mbti', 'add', 'four', 'character', 'mbti', 'istp']",ISTP
616,1587415598891356162,winteoomyluv,ad #SPICY🌶,"['rt', 'winter', 'little', 'istp']",ISTP
617,1025577695973756929,kuromi_luvur,enqi,"['wait', 'istp', 'thing', 'smth', 'co', 'think', 'got', 'hear', 'smth', 'like']",ISTP
618,1011100897315733504,mbtitime,MJ ☻ Jungian Onion,"['_ツ_', 'forgive', 'b', 'forget', 'c', 'cut', 'depends']",ISTP
619,1627285920482312197,IiIyys,malak⁷ ★⁵,"['right', 'anger', 'bubblerestarting', 'hi', 'im', 'mei', 'sheher', 'istp', 'looking', 'interactive', 'new', 'amp', 'stay']",ISTP
620,1627285920482312197,IiIyys,malak⁷ ★⁵,"['looking', 'interactive', 'moot', 'day', '6', 'new', 'amp', 'xdh', 'nct', 'nwjns', 'skz', 'ive', 'lsf', 'p1h', 'enha', 'skz']",ISTP
621,1429548861815615489,taglamaeg,minter.,"['rt', 'winter', 'little', 'istp']",ISTP
622,1600402407287971840,albegojo,jo!,"['add', 'mbti', 'put', '4', 'character', 'type', 'istp', 'umkenapa', 'om', 'om', 'semua']",ISTP
623,1195992383806066688,merleanse,prabu,"['add', 'mbti', 'put', '4', 'character', 'type', 'istp', 'cold', 'facecold', 'facecold', 'face']",ISTP
624,1282278556035280899,ndyshonwan,Ian Pororo,"['rt', 'winter', 'little', 'istp']",ISTP
625,1549087287870619648,flwrkrna,caia.,"['rt', 'winter', 'little', 'istp']",ISTP
626,1468266100034998273,jeongminminn,ley.,"['rt', 'winter', 'little', 'istp']",ISTP
627,4419768437,mystolenmidnght,C (taylors version),"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp']",ISTP
628,1609961077307211777,zmkyjn,raven.,"['rt', 'winter', 'little', 'istp']",ISTP
629,1504109280173068301,kmjwintr,camz,"['rt', 'winter', 'little', 'istp']",ISTP
630,731808122155622400,kayleehh91,Kaylee,"['bust', 'silhouette', 'who', 'park', 'myungsoo', 'seventeen', 'unique', 'istp', 'like', 'alone', 'us', 'blunt', 'word', 'turtle', 'opinion', 'c']",ISTP
631,1130816215905996800,riskywiggywigi_,M 🖤,"['rt', 'winter', 'little', 'istp']",ISTP
632,967950102366007296,bae_taengoo,LY | 💜,"['rt', 'winter', 'little', 'istp']",ISTP
633,820244766109511686,taengspark,chuchay,"['rt', 'winter', 'little', 'istp']",ISTP
634,1409904033775587331,kukuisabird,azi,"['rt', 'winter', 'little', 'istp']",ISTP
635,1445075507125493763,LoveKimMinjeong,Rish ♡☾☆ꕤ,"['rt', 'winter', 'little', 'istp']",ISTP
636,1479116100374003714,elora__a,ً,"['rt', 'winter', 'little', 'istp']",ISTP
637,1450357819882889220,httpyooji,ash.,"['winter', 'little', 'istp']",ISTP
638,1490748759009071104,erinryding,erin😊,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'istp']",ISTP
639,1587072384212688896,jchngpotato,Brier🥀 | JAY CHANG DEBUT 🎸🌟,"['eyyy', 'istp', 'raising', 'hand']",ISTP
640,1657752650304323585,kzsnrf_,franz | nangf-fb po ako,"['d4', 'hello', 'im', 'kui', 'im', 'looking', 'interactive', 'esp', 'new', 'pronoun', 'istp', 'min']",ISTP
641,1647381311902953472,yeywvsjudbdi,jay’s hype girl,"['lmao', 'im', 'istp', 'well', 'isfp', 'well', 'still', 'doesnt', 'get', 'better', 'face', 'tear', 'joyface', 'tear', 'joy']",ISTP
642,1587126129478860800,_kvaori,nika,"['day', '4', 'hi', 'im', 'kian', 'teddy', 'bear', '07', 'istp', 'filo', 'fileng', 'currently', 'still', 'looking', 'interactive', 'moot', 'loudly', 'cry', 'face']",ISTP
643,1205173622597246976,wintersprinkle,lily | 마요싫어 🔆,"['world', 'hate', 'istp', 'good', 'bye', 'skull']",ISTP
644,1205173622597246976,wintersprinkle,lily | 마요싫어 🔆,"['ayy', 'fellow', 'istp', 'let', 'group', 'hug', 'least', 'keita', 'istp']",ISTP
645,1656942469995454468,zyukoumi,kian,"['day', '4', 'hi', 'im', 'kian', 'teddy', 'bear', '07', 'istp', 'filo', 'fileng', 'currently', 'still', 'looking', 'interactive', 'moot']",ISTP
646,1331348780864696322,sangokakutrees,sitara hates thua !! 🌺,"['istp', '8', 'cognitive', 'function', 'top', '4', 'strongest']",ISTP
647,1575230300287819776,cloudyweatherr_,Weather's future bf,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp', 'character', 'traumatized', 'badasses']",ISTP
648,1649977950274715649,ely_bnscartz,ely ★,"['day', 'one', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
649,1560601292292366337,ryuunizm,panggil aja Ryuu,"['istp', 'gt', 'istipar']",ISTP
650,1626568031903051778,zhnghopookie,zen!! | JAYCHANG ILY🎸🌟,"['omg', 'fellow', 'istp', 'loudly', 'cry', 'faceloudly', 'cry', 'face', 'always', 'disaster', 'fsloudly', 'cry', 'face']",ISTP
651,1576774617418571777,euncookies,𝙱𝙻𝚄𝙴|𝙱𝙻𝙸𝙽𝙺 𝙸𝙽 𝙻𝙰𝚆,"['hi', 'im', 'pia', '08', 'liner', 'istp', 'looking', 'moot', 'strawberryany', 'fandom', 'welcomed', 'strawberryskztreasure', 'svtnwjns', 'bts', 'le', 'sserafim']",ISTP
652,1458353381957718024,ThinkAbtCele,Celestine || is Tired,"['hi', 'im', 'pia', '08', 'liner', 'istp', 'looking', 'moot', 'strawberryany', 'fandom', 'welcomed', 'strawberryskztreasure', 'svtnwjns', 'bts', 'le', 'sserafim']",ISTP
653,1565663774706528257,rivn_ve,ًian,"['hi', 'im', 'pia', '08', 'liner', 'istp', 'looking', 'moot', 'strawberryany', 'fandom', 'welcomed', 'strawberryskztreasure', 'svtnwjns', 'bts', 'le', 'sserafim']",ISTP
654,1550835888414158848,jnrixs,'closed',"['hi', 'im', 'pia', '08', 'liner', 'istp', 'looking', 'moot', 'strawberryany', 'fandom', 'welcomed', 'strawberryskztreasure', 'svtnwjns', 'bts', 'le', 'sserafim']",ISTP
655,1331620633726259200,ssefnum,"Ssefnum ON, cek likes. 💚","['rl', 'nighty', 'night', 'everyone', 'anyone', 'interested', 'befriending', 'go', 'masc', 'pronoun', 'im', 'quite', 'loud']",ISTP
656,1639244895960592384,Keiii_Dumps,ᴋᴇɪ 🍞 || PAUSE 📌,"['day', 'two', 'cloud', 'restarting', 'hello', 'kirk', 'new', 'amp', 'im', 'find', 'interactive', 'moot']",ISTP
657,1611681509727170561,mily_banana,mil★⁵|| ia because of exams😔,"['hi', 'im', 'pia', '08', 'liner', 'istp', 'looking', 'moot', 'strawberryany', 'fandom', 'welcomed', 'strawberryskztreasure', 'svtnwjns', 'bts', 'le', 'sserafim']",ISTP
658,1545578961203531777,zenquanxi,zen.,"['add', 'mbti', 'put', '4', 'character', 'type', 'istp']",ISTP
659,839549711065427970,minhoes4thcat,Li | ★★★★★,"['intp', 'im', 'still', 'convinced', 'im', 'istp']",ISTP
660,1601614290712408064,adorable_wonyy,𝐸𝑚𝑖𝑙𝑦. ☁︎ | ifb !,"['hi', 'im', 'pia', '08', 'liner', 'istp', 'looking', 'moot', 'strawberryany', 'fandom', 'welcomed', 'strawberryskztreasure', 'svtnwjns', 'bts', 'le', 'sserafim']",ISTP
661,1646807853716611076,altkmsn,giyuu,"['day', 'two', 'cloud', 'restarting', 'hello', 'kirk', 'new', 'amp', 'im', 'find', 'interactive', 'moot']",ISTP
662,1623901812897222657,Nikolaiigogll,Kolyaa,"['add', 'mbti', 'put', '4', 'character', 'type', 'istp', 'victory', 'hand', 'mediumlight', 'skin', 'tone']",ISTP
663,1272559684503781377,nolongerhum4n_,zall,"['add', 'mbti', 'put', '4', 'character', 'type', 'istp', 'gang']",ISTP
664,1646508506202411014,izkyav,skyravًi. | temporarily closed,"['hi', 'im', 'ziaji', 'im', 'currently', 'looking', 'im', 'new', 'moved', 'acc', 'looking', 'zb1']",ISTP
665,482943872,JohnLeKak,Jean Kak 🍂,"['istp', '6w5', 'sparkle']",ISTP
666,3315354691,kaithect,kaithect🍒🥐🥕,"['bust', 'silhouette', 'who', 'park', 'myungsoo', 'seventeen', 'unique', 'istp', 'like', 'alone', 'us', 'blunt', 'word', 'turtle', 'opinion', 'c']",ISTP
667,3253281157,meleonhrt,mel,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'istp']",ISTP
668,1658026743066939397,saymynamebroski,ziaji/looking for moots,"['hi', 'im', 'pia', '08', 'liner', 'istp', 'looking', 'moot', 'strawberryany', 'fandom', 'welcomed', 'strawberryskztreasure', 'svtnwjns', 'bts', 'le', 'sserafim']",ISTP
669,1658026743066939397,saymynamebroski,ziaji/looking for moots,"['hi', 'im', 'ziaji', 'im', 'currently', 'looking', 'im', 'new', 'moved', 'acc', 'looking']",ISTP
670,1496493733667295233,beaniemantism,du!,"['mine', 'also', 'changed', 'recently', 'infp', 'intp', 'tho', 'get', 'istp', 'like', 'one', 'test', 'lost', 'feeling', 'igj']",ISTP
671,1637983635264634880,_chiverse,aichi : new pinned,"['hi', 'im', 'pia', '08', 'liner', 'istp', 'looking', 'moot', 'strawberryany', 'fandom', 'welcomed', 'strawberryskztreasure', 'svtnwjns', 'bts', 'le', 'sserafim']",ISTP
672,1277605951667933186,Simp_Pastels,🩷Pastel for Narafugo and Kirafumi/p 2023 🧡,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp', 'character', 'traumatized', 'bad']",ISTP
673,2937612762,wjnkyfl,nuri⁺¹,"['ntm', 'start', 'ridiculous', 'u', 'seriously', 'get', 'lighthearted', 'one', 'bc', 'reason', 'someone']",ISTP
674,1217549884380925966,AudSunMoon,🌟 Doll AudSunMoon 💎 RudSweety 🐾,"['hi', 'im', 'pia', '08', 'liner', 'istp', 'looking', 'moot', 'strawberryany', 'fandom', 'welcomed', 'strawberryskztreasure', 'svtnwjns', 'bts', 'le', 'sserafim']",ISTP
675,1630865105729761283,rryhs208,ray ⁵★ 레이는귀여워,"['right', 'anger', 'bubblerestarting', 'hi', 'im', 'mei', 'sheher', 'istp', 'looking', 'interactive', 'new', 'amp', 'stay']",ISTP
676,1466260479752359938,jonghomallow,sushi,"['right', 'anger', 'bubblerestarting', 'hi', 'im', 'mei', 'sheher', 'istp', 'looking', 'interactive', 'new', 'amp', 'stay']",ISTP
677,1267837747286413313,meix_sk,mei ★⁵ » #1 lino & seungmin stan!!,"['right', 'anger', 'bubblerestarting', 'hi', 'im', 'mei', 'sheher', 'istp', 'looking', 'interactive', 'new', 'amp']",ISTP
678,1466260479752359938,jonghomallow,sushi,"['hii', 'im', 'tey', 'im', 'looking', 'interactive', 'exol', 'nctzen', 'moot', 'fandom', 'ꕥ', '18', '04', 'liner', 'ꕥ', 'sheher', 'f']",ISTP
679,1654901009846779906,y07iu,☆,"['d4', 'hello', 'im', 'kui', 'im', 'looking', 'interactive', 'esp', 'new', 'pronoun', 'istp', 'min']",ISTP
680,1386943527934775297,8joshui,paul saw svt ! | svt fxck my life ?!,"['hello', 'im', 'yanna', 'im', 'new', 'im', 'looking', 'moot', 'bit', 'new', 'sheher', 'istp', 'seventeen']",ISTP
681,1385498092955340803,hennyjendeuk,kui ♡,"['d4', 'hello', 'im', 'kui', 'im', 'looking', 'interactive', 'esp', 'new', 'pronoun', 'istp']",ISTP
682,1263125617404338176,golchanes,mey🍞,"['istp', 'wey']",ISTP
683,1562294731488391169,corpsecomet,max⁺ !! 🦌,"['think', 'right', 'googled', 'istp', 'character']",ISTP
684,1647970065466404866,inksnskies,seikie,"['hii', 'im', 'tey', 'im', 'looking', 'interactive', 'exol', 'nctzen', 'moot', 'fandom', 'ꕥ', '18', '04', 'liner', 'ꕥ', 'sheher', 'f']",ISTP
685,1654901009846779906,y07iu,☆,"['hii', 'im', 'tey', 'im', 'looking', 'interactive', 'exol', 'nctzen', 'moot', 'fandom', 'ꕥ', '18', '04', 'liner', 'ꕥ', 'sheher', 'f']",ISTP
686,1476663112547897346,AYNHGAK,zay ★⁵,"['thiught', 'might', 'myers', 'briggs', 'research', 'thing', 'dont', 'tjink', 'im', 'istp', 'idk', 'else', 'use']",ISTP
687,1354095204521787392,myjaemle,tey- (ミዎ ﻌ ዎミ)ノ,"['hii', 'im', 'tey', 'im', 'looking', 'interactive', 'exol', 'nctzen', 'moot', 'fandom', 'ꕥ', '18', '04', 'liner', 'ꕥ']",ISTP
688,1622486791386431489,cxseil,sei | finding moots,"['day', 'one', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
689,1492233739723751429,shijo_xie,Yeo ♡ IFB!,"['hello', 'im', 'kirk', 'use', 'hehim', 'pronoun', 'new', 'stan', 'twt', 'hope', 'help', 'find', 'new', 'moot']",ISTP
690,1492233739723751429,shijo_xie,Yeo ♡ IFB!,"['day', 'two', 'cloud', 'restarting', 'hello', 'kirk', 'new', 'amp', 'im', 'find', 'interactive', 'moot']",ISTP
691,1492233739723751429,shijo_xie,Yeo ♡ IFB!,"['hi', 'im', 'pia', '08', 'liner', 'istp', 'looking', 'moot', 'strawberryany', 'fandom', 'welcomed', 'strawberryskztreasure', 'svtnwjns', 'bts', 'le', 'sserafim']",ISTP
692,1656025651420250120,Rerikaz,Reriyaki Kamikaze | ☆BON VOYAGE IS COMING ☆,"['day', 'one', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
693,1460046270,Shxwbiz_,"𝐋𝐞𝐭 𝐦𝐞 𝐠𝐨, 𝐥𝐞𝐭 𝐦𝐞 𝐛𝐞.","['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp']",ISTP
694,861611477022715904,istp_eth,ISTP ETH,"['join', 'u', 'wed', 'may', '17', 'engaging', 'talk', 'shifting']",ISTP
695,1433377793908219906,honeygoldlight,🍯,"['begging', 'everyone', 'ditch', 'mbti', 'learn', 'jungian', 'cognitive', 'function', 'instead', 'dominant', 'extr']",ISTP
696,1433377793908219906,honeygoldlight,🍯,"['took', 'mbti', 'test', 'got', 'istp', 'first', 'time', 'life', 'got', 'instead', 'n', 'know', 'mbti']",ISTP
697,345839124,joonjungkookie,Ann⁷🥢seeing Yoongi 🇮🇩🇹🇭🇸🇬🇸🇬🇸🇬,"['im', 'tired', 'im', 'tired', 'im', 'done', 'raya', 'end', 'life', 'go', 'back', 'normal', 'socialising']",ISTP
698,1414394740762550278,namjoonhcrts,ember // D-7 UNTIL BDAY!! / VIDEO EDIT OUT!!!,"['day', 'two', 'cloud', 'restarting', 'hello', 'kirk', 'new', 'amp', 'im', 'find', 'interactive', 'moot']",ISTP
699,1414394740762550278,namjoonhcrts,ember // D-7 UNTIL BDAY!! / VIDEO EDIT OUT!!!,"['looking', 'interactive', 'moot', 'day', '6', 'new', 'amp', 'xdh', 'nct', 'nwjns', 'skz', 'ive', 'lsf', 'p1h', 'enha', 'skz']",ISTP
700,901640216070508544,EdgarChihua18,Edgar .,"['day', 'one', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
701,1634094676973342721,yujinqt_07,𝘁𝘂𝗹𝗶𝗽 🫧,"['im', 'istp']",ISTP
702,1654750738604765184,i43aran,lee | lf swith & hunny moots,"['day', 'two', 'cloud', 'restarting', 'hello', 'kirk', 'new', 'amp', 'im', 'find', 'interactive', 'moot']",ISTP
703,1582751449901314049,chardign,delle²⁴🐚,"['hello', 'im', 'looking', 'new', 'moot', 'new', 'study', 'buddy', '౨ৎ', 'get', 'know', 'teddy', 'bear', 'u', 'call', 'sabrina', 'ballet', 'shoe', '06l', 'sh']",ISTP
704,1632548366055014400,xueyinator2000,april ✷ 📌 BEST HSR CHARACTER POLL,"['add', 'mbti', '4', 'character', 'mbti', 'istp', 'also', 'apparently', 'share', 'mbti', 'rock']",ISTP
705,1580947275723210752,_azizyzy,zi,"['hi', 'im', 'pia', '08', 'liner', 'istp', 'looking', 'moot', 'strawberryany', 'fandom', 'welcomed', 'strawberryskztreasure', 'svtnwjns', 'bts', 'le', 'sserafim']",ISTP
706,1283663320315080704,istp_r07,らおん.라온,"['wishing', 'ze_rose', 'happy', 'coming', 'age', 'day', 'rose']",ISTP
707,1283663320315080704,istp_r07,らおん.라온,"['congratulation', '𝓡𝓲𝓬𝓴𝔂', 'amp', '𝗚𝗬𝗨', '𝗩𝗜𝗡', 'rose']",ISTP
708,1467410950131105792,choimfs,ً,"['day', 'one', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
709,1654462556596228096,kaliniverse,kali,"['hi', 'im', 'pia', '08', 'liner', 'istp', 'looking', 'moot', 'strawberryany', 'fandom', 'welcomed', 'strawberryskztreasure', 'svtnwjns', 'bts', 'le', 'sserafim']",ISTP
710,1443729263505465345,astral_ev_,astral | #1 fragile fan,"['tf', 'go', 'infp', 'istp', 'month', 'happening']",ISTP
711,1654462556596228096,kaliniverse,kali,"['hello', 'im', 'kirk', 'use', 'hehim', 'pronoun', 'new', 'stan', 'twt', 'hope', 'help', 'find', 'new', 'moot']",ISTP
712,1433710191208394753,jenomouche,arel || blue blood 🩵,"['looking', 'interactive', 'sheher', 'minor', 'istp', 'dive', 'blink', 'fearnot', 'fandom', 'welcomed']",ISTP
713,1104963482045304838,atzlegacy,kaitlyn ☾☼,"['way', 'im', 'border', 'line', 'isfp', 'istp', 'every', 'time', 'take', 'test', 'get', 'different', 'one', 'time']",ISTP
714,1479704273814372353,alsstudied,aliaa²⁶,"['hello', 'im', 'looking', 'new', 'moot', 'new', 'study', 'buddy', '౨ৎ', 'get', 'know', 'teddy', 'bear', 'u', 'call', 'sabrina', 'ballet', 'shoe', '06l', 'sh']",ISTP
715,1444392539113541635,l0velyrh3a,rhea,"['day', 'one', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
716,1641185528367202305,weirdfiishess,nenisinkiutview.com,"['istp', 'typoshitsmiling', 'face', 'smiling', 'eyesunicornunicornunicornunicorn']",ISTP
717,1376361071322169344,gyuuskipp,kei ✘ 🎧🧸 ACTIVE !,"['day', 'one', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
718,1640887796478124032,leknwsv,Sav,"['hello', 'im', 'kirk', 'use', 'hehim', 'pronoun', 'new', 'stan', 'twt', 'hope', 'help', 'find', 'new', 'moot']",ISTP
719,1533844665459687425,un1cornnnnnn,kayyl *ੈ✩‧₊˚,"['hello', 'im', 'looking', 'new', 'moot', 'new', 'study', 'buddy', '౨ৎ', 'get', 'know', 'teddy', 'bear', 'u', 'call', 'sabrina', 'ballet', 'shoe', '06l', 'sh']",ISTP
720,1600906360866017281,jwnzby,ً,"['hi', 'im', 'kian', '07', 'theythem', 'istp', 'filo', 'new', 'please', 'nice', 'loudly', 'cry', 'face', 'looking', 'awesome', 'interactive']",ISTP
721,1633313613506043907,xk3tamine,ketta ★,"['prns', 'sheher', 'age', '23', 'stand', 'sure', 'yet', 'confounded', 'faceconfounded', 'facedouble', 'exclamation', 'mark', 'gender', 'transfem', 'sure', 'abt', 'sexuality', 'yet', 'appearance']",ISTP
722,1339561618464600065,KAACHUprogress,chu 🧸|| D-17 SAT,"['hello', 'im', 'looking', 'new', 'moot', 'new', 'study', 'buddy', '౨ৎ', 'get', 'know', 'teddy', 'bear', 'u', 'call', 'sabrina', 'ballet', 'shoe', '06l', 'sh']",ISTP
723,1652903973366681602,4jkeyjj,saby ♡,"['day', 'two', 'cloud', 'restarting', 'hello', 'kirk', 'new', 'amp', 'im', 'find', 'interactive', 'moot']",ISTP
724,1644331249354563586,gavsflur,ً,"['day', 'two', 'cloud', 'restarting', 'hello', 'kirk', 'new', 'amp', 'im', 'find', 'interactive', 'moot']",ISTP
725,1579632660632068096,OT7ENHYPEN_LHS,LHS,"['day', 'two', 'cloud', 'restarting', 'hello', 'kirk', 'new', 'amp', 'im', 'find', 'interactive', 'moot']",ISTP
726,1466260479752359938,jonghomallow,sushi,"['day', 'two', 'cloud', 'restarting', 'hello', 'kirk', 'new', 'amp', 'im', 'find', 'interactive', 'moot']",ISTP
727,1466260479752359938,jonghomallow,sushi,"['rabbit', 'face', 'finding', 'moot', 'denz', 'pisces', 'istp', 'finding', 'neverland', 'reveluv', 'blink', 'fearno']",ISTP
728,1643600431300640776,renvricills,"ren²³, limit fb","['hello', 'im', 'looking', 'new', 'moot', 'new', 'study', 'buddy', '౨ৎ', 'get', 'know', 'teddy', 'bear', 'u', 'call', 'sabrina', 'ballet', 'shoe', '06l', 'sh']",ISTP
729,1647970065466404866,inksnskies,seikie,"['rabbit', 'face', 'finding', 'moot', 'denz', 'pisces', 'istp', 'finding', 'neverland', 'reveluv', 'blink', 'fearno']",ISTP
730,1637079392420794372,rizos0_0,rizos is graduating soon🎓,"['looking', 'moot', 'hehim', 'transgender', 'flag', 'istp', 'ar56', 'america', 'server', 'dni', 'ed']",ISTP
731,1652230064111751169,tifaistudying,tifa²⁶ ; study acc,"['hello', 'im', 'looking', 'new', 'moot', 'new', 'study', 'buddy', '౨ৎ', 'get', 'know', 'teddy', 'bear', 'u', 'call', 'sabrina', 'ballet', 'shoe', '06l', 'sh']",ISTP
732,1338740195924070401,mindietz,gogo,"['wdym', 'istp']",ISTP
733,1598870425936613376,prodyeonz,ً,"['rabbit', 'face', 'finding', 'moot', 'denz', 'pisces', 'istp', 'finding', 'neverland', 'reveluv', 'bli']",ISTP
734,1647970065466404866,inksnskies,seikie,"['day', 'two', 'cloud', 'restarting', 'hello', 'kirk', 'new', 'amp', 'im', 'find', 'interactive', 'moot']",ISTP
735,1657622115489828865,luvjhsn,ً,"['day', 'two', 'cloud', 'restarting', 'hello', 'kirk', 'new', 'amp', 'im', 'find', 'interactive']",ISTP
736,1557085809517465601,raspberrylazuli,mars ☆ dan heng era,"['𓆩𓆪', 'lf', 'mutuals', 'reach', 'mar', 'istp', '9w8', 'sx', 'sp', 'berserk', 'csm', 'vinland', 'sag']",ISTP
737,4912592437,kyuntentt,𖦹⋆彡🫧꩜♪⋆,"['day', '2', 'finding', 'interactive', 'mootslight', 'skin', 'tone', 'bcs', 'im', 'friendless', 'sheher', 'istp', 'new', 'looking']",ISTP
738,1393815957554954242,dubuuuu_hi,closed,"['day', '2', 'finding', 'interactive', 'mootslight', 'skin', 'tone', 'bcs', 'im', 'friendless', 'sheher', 'istp', 'new', 'looking']",ISTP
739,1312056213014630400,mallevil,adler von tenshouin 🍯,"['istp', 'character', 'insanely', 'popular', 'another', 'notable', 'one', 'kirito', 'sword', 'art', 'online']",ISTP
740,1466260479752359938,jonghomallow,sushi,"['looking', 'interactive', 'moot', 'day', '6', 'new', 'amp', 'xdh', 'nct', 'nwjns', 'skz', 'ive', 'lsf', 'p1h', 'enha', 'skz']",ISTP
741,1466260479752359938,jonghomallow,sushi,"['day', '2', 'finding', 'interactive', 'mootslight', 'skin', 'tone', 'bcs', 'im', 'friendless', 'sheher', 'istp', 'new', 'looking']",ISTP
742,1576774617418571777,euncookies,𝙱𝙻𝚄𝙴|𝙱𝙻𝙸𝙽𝙺 𝙸𝙽 𝙻𝙰𝚆,"['hii', 'im', 'leelee', 'looking', '4', 'interactive', 'moot', '14', 'sheher', 'istp', 'flag', 'united', 'kingdom', 'looking', 'fea']",ISTP
743,1179741745048780802,cinnam0ngirl1z,riri,"['people', 'always', 'give', 'impression', 'estpentp', 'person', 'flirty', 'fun', 'true', 'seen', 'ho']",ISTP
744,178447761,heyitsmevirgo,V🌼,"['add', 'mbti', '4', 'character', 'type', 'istp']",ISTP
745,1650125113293938688,MaggiePark84368,Lee might know~ ★⁵🌋🪐,"['looking', 'interactive', 'moot', 'day', '6', 'new', 'amp', 'xdh', 'nct', 'nwjns', 'skz', 'ive', 'lsf', 'p1h', 'enha', 'skz']",ISTP
746,1625471289283543045,imr_nati,suni || DARK BLOOD,"['hi', 'im', 'lee', 'desperately', 'looking', 'shethey', '6teen', 'istp', 'gereng', 'new']",ISTP
747,1521669166071173122,leebitorg,chloe.,"['looking', 'interactive', 'moot', 'day', '6', 'new', 'amp', 'xdh', 'nct', 'nwjns', 'skz', 'ive', 'lsf', 'p1h', 'enh']",ISTP
748,1522451580523401216,dalsoyves,Heteronice,"['good', 'cuz', 'entjs', 'like', 'one', 'mbtis', 'isnt', 'mess', 'istp', 'ideal', 'match', 'think']",ISTP
749,1254466495033171968,im_istp_,구경하는 잇팁,['song'],ISTP
750,1275269609965400068,MeowReow3,abby ♡,"['4', 'character', 'mbti', 'istp', 'cat', 'wry', 'smilecat', 'wry', 'smile']",ISTP
751,1576774617418571777,euncookies,𝙱𝙻𝚄𝙴|𝙱𝙻𝙸𝙽𝙺 𝙸𝙽 𝙻𝙰𝚆,"['day', 'one', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
752,744423456981188608,Baueresbian,Cᐰss💫,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp']",ISTP
753,1627285920482312197,IiIyys,malak⁷ ★⁵,"['day', 'one', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
754,1384084593964290052,PSYCH0LOOMIS,colby / billy ⛧,"['istps', 'rare', 'uk', 'um', 'hi', 'im', 'istp', 'uk', 'smiling', 'face', 'hearteyes']",ISTP
755,1622458997805834242,fieryravenette,Aʀɪᴀ M. Mᴏɴᴛɢᴏᴍᴇʀʏ,"['ive', 'eliminated', 'number', 'enneagram', 'attempting', 'type', 'jughead', 'jones', 'he', 'either', '784', 'e']",ISTP
756,946968629979033600,canonkeef,max || resident evil era,"['omg', 'im', 'istp']",ISTP
757,1381539504712912896,chanheesredhair,sha,"['hi', 'im', 'pia', '08', 'liner', 'istp', 'looking', 'moot', 'strawberryany', 'fandom', 'welcomed', 'strawberryskztreasure', 'svtnwjns', 'bts', 'le', 'sserafim']",ISTP
758,1361449125452140547,fuckmaster9000,FUCKMASTER9000,"['istp', 'shrek', 'professor', 'mcgonagall', 'daryl', 'dixon', 'aragorn']",ISTP
759,1311542798512988160,heeheehee_ena,lina ._. DARK MOON || ★⁵ ._. moots??,"['hi', 'im', 'pia', '08', 'liner', 'istp', 'looking', 'moot', 'strawberryany', 'fandom', 'welcomed', 'strawberryskztreasure', 'svtnwjns', 'bts', 'le', 'sserafim']",ISTP
760,1522451580523401216,dalsoyves,Heteronice,"['go', 'like', 'ur', 'exxx', 'get', 'istp', 'everywhere', 'cant', 'relate']",ISTP
761,1647219004455493632,darialuvsfelix,daria ★⁵,"['hi', 'im', 'pia', '08', 'liner', 'istp', 'looking', 'moot', 'strawberryany', 'fandom', 'welcomed', 'strawberryskztreasure', 'svtnwjns', 'bts', 'le', 'sserafim']",ISTP
762,837219748068765696,enstazu,LEO🐱,"['youre', 'istp', 'take', 'list']",ISTP
763,1529975244886183936,PowerfulBaeSuzy,Powerful BaeSuzy 😎😉😘,"['dont', 'want', 'lover', 'helping', 'friend', 'pick', 'pickled', 'sesame', 'leaf', 'current', 'mbti', 'istp']",ISTP
764,1509640508506787841,LibraryofKG,KG 🗡❤️🔥🦂,"['add', 'ur', 'mbti', 'put', 'four', 'character', 'mbti', 'istp', 'relieved', 'face']",ISTP
765,18142653,hewworeese,reese (they/them) schrodinger’s fujo,"['add', 'mbti', 'put', '4', 'character', 'type', 'istp', 'team', 'tsudaken', 'kumatani', 'round', 'fucked']",ISTP
766,1491089389614612482,Keikkuuu,Kazuha4life | Saw bp and itzy!,"['hi', 'im', 'pia', '08', 'liner', 'istp', 'looking', 'moot', 'strawberryany', 'fandom', 'welcomed', 'strawberryskztreasure', 'svtnwjns', 'bts', 'le', 'sserafim']",ISTP
767,1646163667140988931,_sohnset_,grass,"['1', 'basically', 'sohn', 'sunset', 'combined', '2', 'istp', '3', 'lol']",ISTP
768,194269631,DukePPC,duke - 自己人,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp', 'weirdo', 'gang']",ISTP
769,1103430773456150528,ereskgal,⚧︎,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp']",ISTP
770,1235342756165320704,vicktozier,vicky,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp']",ISTP
771,1304276968863461376,utkrista_ts13,Utkrista: speak now tv finally on july 7th💜,"['qrt', 'personality', 'type', '4', 'character', 'share', 'enfj', 'also', 'sometimes', 'istp']",ISTP
772,1318580257524363264,Sushishoes1,🍣👟,"['nice', 'another', 'istp', 'beaming', 'face', 'smiling', 'eye']",ISTP
773,1569116862654423041,katebishopsbow,Summer⚔️,"['add', 'mbti', 'add', '4', 'character', 'mbti', 'istp']",ISTP
774,1455632953132949504,eresidian,kazere 𖹭,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp']",ISTP
775,1522451580523401216,dalsoyves,Heteronice,"['istp', 'gang', 'u', 'shld', 'treta', 'food']",ISTP
776,1191322569590202369,hyunhostars,faye,"['im', 'istp']",ISTP
777,1647219004455493632,darialuvsfelix,daria ★⁵,"['day', 'one', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
778,726844869713358848,cypherpt_d,r⁷,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp', 'course', 'literally', 'chara']",ISTP
779,1106586604771008512,takenakera,Ano❕,"['idk', 'promounce', 'infp', 'infeepee', 'enfp', 'en', 'feepee', 'istp', 'estp', 'pronounce', 'normally']",ISTP
780,1538087956338348033,mayurakii,Mayu,"['yes', 'put', '2', 'mbtis', 'hahah', 'personality', 'test', 'cant', 'boil', '1', 'xd', 'say', 'former', 'others', 'wil']",ISTP
781,1522451580523401216,dalsoyves,Heteronice,"['every', 'test', 'say', 'im', 'istp', 'im', 'wrong']",ISTP
782,1522451580523401216,dalsoyves,Heteronice,"['istp', 'strong']",ISTP
783,1297394482980089857,SourabhStephen,stephen | stephenwolf.bnb | Suiswap .bit 🐐 🌊📘⚪⚫,"['artist', 'palette', 'gabby', 'reveal', '7', 'raise', 'ai', 'artist', 'palette', 'living', 'life', 'edge', 'daring', 'energetic', 'ultimate']",ISTP
784,1427642383383019537,Hameedmoyal1,"Hameedmoyal.| Fuelet Free, Own🧟♂️","['artist', 'palette', 'gabby', 'reveal', '7', 'raise', 'ai', 'artist', 'palette', 'living', 'life', 'edge', 'daring', 'energetic', 'ultimate']",ISTP
785,828267073520406529,woozisplanet,lys💜2YRS AS ATINY,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp']",ISTP
786,1646878257198018560,hiraya_luvwonsm,ray ! ❀,"['hii', 'im', 'leelee', 'looking', '4', 'interactive', 'moot', '14', 'sheher', 'istp', 'flag', 'united', 'kingdom', 'looking', 'fea']",ISTP
787,1641448388616159232,spicyrue6,rue,"['looking', 'interactive', 'sheher', 'minor', 'istp', 'dive', 'blink', 'fearnot', 'fandom', 'welcomed']",ISTP
788,1503983610084270080,shinnnluv,𝗌𝗁𝗂𝗇𝗇 | (๑•ᴗ•๑),"['day', 'one', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
789,1602511189292244992,sswanlakes,𝑎𝑚𝑖𝑔𝑎 ´ ᭄🪽 . ₊‧ °승.•✩⋆ || 𝖲emi ﺃa 📑˘ ♥︎,"['day', 'one', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
790,1588682102236651526,bungousdtwt,bsdtwt mutuals ☆ REMOVE @ WHEN REPLYING,"['looking', 'moot', 'hehim', 'transgender', 'flag', 'istp', 'ar56', 'america', 'server', 'dni', 'ed']",ISTP
791,1645085739099770881,Gemmpur,Davis.,"['istp', 'dont', 'close', 'friend', 'neutral', 'face']",ISTP
792,1529413130190995456,kyot092,kyou,"['took', 'test', 'type', 'istp', 'im', 'type', 'btw']",ISTP
793,1651003369367175169,sunghopng,WHO's ira 🍜,"['gue', 'istp', 'pls', 'boynextdoor', 'moving', 'profile']",ISTP
794,1390846143437881344,trillasbitch,spencer || ⚰️ era,"['istp', 'four', 'character', 'mbti', 'im', 'sorry', 'megara', 'billy', 'mbti', 'sending', 'skull']",ISTP
795,1612551760668672000,suabaka1,🤍♡ Baria Aesthetic ♡🤍| LAILA LOVEBOT ♡♡,"['day', 'two', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
796,1612551760668672000,suabaka1,🤍♡ Baria Aesthetic ♡🤍| LAILA LOVEBOT ♡♡,"['day', 'one', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
797,1647145767302463495,dollowony,ً,"['day', 'one', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
798,1632048342590160898,lghtrkb,light,"['always', 'feel', 'like', 'mine', 'isnt', 'accurate', 'every', 'try', 'always', 'get', 'istp']",ISTP
799,1632048342590160898,lghtrkb,light,"['tl', 'whats', 'mbti', 'mine', 'istp']",ISTP
800,1515885610678071298,Natlantis01,Nat/Atlas,"['istp', 'rise', 'got', 'weddy', 'gevanni', 'aswell']",ISTP
801,1650227552412114944,sakurrakiss16,☆(on a limit),"['day', 'one', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
802,1648568750172672007,mizumaxxchi_,mizumachi.,"['day', 'one', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
803,1607559127668035586,azy_paprika,azy ♥︎,"['gurl', 'katniss', 'everdeen', 'literally', 'typed', 'istp', 'million', 'people', 'aint', 'intj', 'loudly', 'cry', 'face']",ISTP
804,1375883975844098050,cr0nenbergesque,∘°∘♡∘°∘ 𝐂𝐚𝐫𝐮 ∘°∘♡∘°∘,"['istp', 'dont', 'know', 'feel', 'traumatised', 'people', 'iguess']",ISTP
805,1279033224673419264,nichtelysian,tiff,"['dango', 'im', 'lily', 'new', '୨୧', 'ᵎᵎ', 'know', 'shamrock', '18', 'istp', 'shamrock', 'engfil', 'shamrock', 'stem', '𓍼', 'fu']",ISTP
806,1656942469995454468,zyukoumi,kian,['istp'],ISTP
807,1646941626323877888,missdaisyjay,bia,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp', 'kissing', 'face']",ISTP
808,1611698769061416960,lukedaneslover,sab 🥐,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'lt3', 'istp']",ISTP
809,1649736628389433344,SHYDEURIN9,khrish💙,"['restarting', 'hi', 'im', 'aela', 'new', 'ପ', 'sheher', '16', 'istp', 'ପ', 'fil']",ISTP
810,1279033224673419264,nichtelysian,tiff,"['day', '1', 'hi', 'new', 'looking', 'moot', 'ꈍᴗꈍ', '06', 'virgo', 'istp', 'fileng', 'ab']",ISTP
811,1527592985717776388,_starchaser_21,stars/lou ✩,"['im', 'somewhere', 'intp', 'istp', 'told', 'friend', 'im', 'istp']",ISTP
812,1527592985717776388,_starchaser_21,stars/lou ✩,"['trueee', 'love', 'istp', 'people', 'much', 'think', 'sherlock', 'intp', 'sure', 'kind', 'k']",ISTP
813,1517279863392010240,angrbda,۟,"['liked', 'idea', 'istj', 'istp', 'lt3']",ISTP
814,986227506096164864,troyesdemigods,vrash #1 cardan defender brina's bday!! 💌,"['btw', 'istp', 'fictional', 'character', 'r', 'superior', 'youve', 'peter', 'parker', 'andrew', 'version', 'ur', 'side']",ISTP
815,1247039115599765504,BlTCHYHORROR,sage,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp']",ISTP
816,1657366991123152896,lilies_x,☆,"['day', 'one', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
817,1358898835188314114,fleprizz,Moonie 🪷kinda ia,['istp'],ISTP
818,1611681509727170561,mily_banana,mil★⁵|| ia because of exams😔,"['day', 'one', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
819,1654750738604765184,i43aran,lee | lf swith & hunny moots,"['hi', 'im', 'pia', '08', 'liner', 'istp', 'looking', 'moot', 'strawberryany', 'fandom', 'welcomed', 'strawberryskztreasure', 'svtnwjns', 'bts', 'le', 'sserafim']",ISTP
820,1653922112367923201,havviierr,havier,"['day', 'one', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
821,1601934593501892608,wooyoscherry,우영‘s fav borderline ♡ ATEEZ COMEBACK,"['day', 'hi', 'lovely', 'im', 'alex', '18', 'istp', 'multi', 'stan', 'post', 'ateez', 'enha', 'mostly', 'wenee', 'monbebe', 'carat', 'moomoo', 'u']",ISTP
822,1370143504735875073,superboyswife,k ✧,"['youre', 'istp', 'oh', 'god']",ISTP
823,1657282732660228099,luvrnjminji,minji | on limit :3,"['day', 'one', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
824,1375640801896591363,nftureprfct,ai | unpad'²⁴,"['hello', 'im', 'looking', 'new', 'moot', 'new', 'study', 'buddy', '౨ৎ', 'get', 'know', 'teddy', 'bear', 'u', 'call', 'sabrina', 'ballet', 'shoe', '06l']",ISTP
825,1499980387401240583,chaecites,ً,"['day', 'one', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
826,1527592985717776388,_starchaser_21,stars/lou ✩,"['thing', 'istp', 'dont', 'remember', 'much', 'told', 'care', 'people', 'interest']",ISTP
827,1580411467647447041,shopanaaa,13-DAY LAGI PAT,"['hello', 'im', 'looking', 'new', 'moot', 'new', 'study', 'buddy', '౨ৎ', 'get', 'know', 'teddy', 'bear', 'u', 'call', 'sabrina', 'ballet', 'shoe', '06l']",ISTP
828,1647970065466404866,inksnskies,seikie,"['hello', 'im', 'kirk', 'use', 'hehim', 'pronoun', 'new', 'stan', 'twt', 'hope', 'help', 'find', 'new', 'moot']",ISTP
829,1657023150083780611,cakielle,elle ✧・゚: *,"['day', '1', 'hi', 'new', 'looking', 'moot', 'ꈍᴗꈍ', '06', 'virgo', 'istp', 'fileng', 'ab']",ISTP
830,1611907917602783235,snkivle_,kaeris 🍓,"['day', 'one', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
831,1624940801733296128,syfacabie,acaa²³,"['day', '1', 'hi', 'new', 'looking', 'moot', 'ꈍᴗꈍ', '06', 'virgo', 'istp', 'fileng', 'ab']",ISTP
832,1256020342541135872,MIMONELOID,みもねる,"['istp', '8w7836sosp']",ISTP
833,1656561822298963968,jjensprios,ria.,"['day', 'one', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
834,1492233739723751429,shijo_xie,Yeo ♡ IFB!,"['day', 'one', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
835,1657654451442966528,seiarive,seia,"['hello', 'im', 'kirk', 'use', 'hehim', 'pronoun', 'new', 'stan', 'twt', 'hope', 'help', 'find', 'new', 'moot']",ISTP
836,1536084631204016128,conniemoreausgf,paige,"['4', 'character', 'mbti', 'istp']",ISTP
837,1606896444824514560,i43333,012 🪐 OUTLAW,"['day', 'one', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
838,1641448388616159232,spicyrue6,rue,"['hii', 'im', 'leelee', 'looking', '4', 'interactive', 'moot', '14', 'sheher', 'istp', 'flag', 'united', 'kingdom', 'looking', 'fea']",ISTP
839,1649438807748673537,madnrkz,max 💌,"['hello', 'im', 'kirk', 'use', 'hehim', 'pronoun', 'new', 'stan', 'twt', 'hope', 'help', 'find', 'new', 'moot']",ISTP
840,1657654451442966528,seiarive,seia,"['tulip', 'hi', 'im', 'venize', 'im', 'looking', 'interactive', 'istp', 'minor', 'new']",ISTP
841,1656277803078393856,sfvhoon,coco ❀,"['hello', 'im', 'kirk', 'use', 'hehim', 'pronoun', 'new', 'stan', 'twt', 'hope', 'help', 'find', 'new', 'moot']",ISTP
842,3970089372,MegumiBandicot,Megumi Bandicoot,"['looking', 'moot', 'hehim', 'transgender', 'flag', 'istp', 'ar56', 'america', 'server', 'dni', 'ed']",ISTP
843,1156544035663859714,claudia_draws34,◇ᴄʟᴀᴜ◇ commissions open,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'dont', 'know', 'say', 'im', 'confused', 'skull', 'istp']",ISTP
844,1466260479752359938,jonghomallow,sushi,"['tulip', 'hi', 'im', 'venize', 'im', 'looking', 'interactive', 'istp', 'minor', 'new']",ISTP
845,1656277803078393856,sfvhoon,coco ❀,"['day', 'one', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
846,1635489337004654599,castielsb1tch,camisha | GOTG VOL. 3 | #SaveTheWinchesters,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp', 'eyemoutheye', 'notice', 'badass']",ISTP
847,1624940801733296128,syfacabie,acaa²³,"['dango', 'im', 'lily', 'new', '୨୧', 'ᵎᵎ', 'know', 'shamrock', '18', 'istp', 'shamrock', 'engfil', 'shamrock', 'stem', '𓍼', 'fu']",ISTP
848,1657639691532005377,missycakepop,Missy,"['d2', 'hello', 'im', 'kui', 'im', 'looking', 'interactive', 'esp', 'pronoun', 'istp', 'minor', 'flag', 'philippine', 'stans', 'b']",ISTP
849,1223740756382420992,hrts4lixie,hiko ❛ stream FML !,"['3', 'it', 'pearl', 'im', 'trying', 'find', 'moot', 'minor', 'istp', 'sthey', 'artist', 'palette', 'new']",ISTP
850,1326787983392055297,ashvrse,ash,"['istp', 'winnn']",ISTP
851,1657639691532005377,missycakepop,Missy,"['d3', 'hello', 'im', 'kui', 'im', 'looking', 'interactive', 'esp', 'new', 'pronoun', 'istp', 'min']",ISTP
852,1639843071121854464,rozuyarozu,Rozu ろずや。,"['tulip', 'hi', 'im', 'venize', 'im', 'looking', 'interactive', 'istp', 'minor', 'new']",ISTP
853,1393452090962321409,gyuvinace,َ,"['hello', 'im', 'kirk', 'use', 'hehim', 'pronoun', 'new', 'stan', 'twt', 'hope', 'help', 'find', 'new', 'moot']",ISTP
854,1657340340632944642,themainmoazen,💭| moot hunting!,"['tulip', 'hi', 'im', 'venize', 'im', 'looking', 'interactive', 'istp', 'minor', 'new']",ISTP
855,1245651617828843521,jikillhyde_istp,지킬앤하이드,['song'],ISTP
856,1430611223280816131,Vityokboyc,Vityok,"['artist', 'palette', 'gabby', 'reveal', '7', 'raise', 'ai', 'artist', 'palette', 'living', 'life', 'edge', 'daring', 'energetic', 'ultimate']",ISTP
857,1657289710803341314,F4EHWA,☆,"['day', 'one', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
858,971607117323943936,Cameoliob,Emma // star wars ⁉️,"['add', 'mbti', '4', 'character', 'personality', 'type', 'istp']",ISTP
859,1354107615375208450,irlr4y,em || probably playing totk ‼️‼️,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'except', 'slightly', 'concerning', 'istp']",ISTP
860,1466260479752359938,jonghomallow,sushi,"['hello', 'im', 'kirk', 'use', 'hehim', 'pronoun', 'new', 'stan', 'twt', 'hope', 'help', 'find', 'new', 'moot']",ISTP
861,1318580257524363264,Sushishoes1,🍣👟,"['nice', 'another', 'istp']",ISTP
862,1642586746738323456,jscvpid,jesh,"['hello', 'im', 'kirk', 'use', 'hehim', 'pronoun', 'new', 'stan', 'twt', 'hope', 'help', 'find', 'new', 'moot']",ISTP
863,1646424073600372737,ccrenjhan,caca loaf jihan ✩,"['ohh', 'istp']",ISTP
864,1138726725817257986,sshxxxbi,R Y L ★⁵,"['hello', 'im', 'kirk', 'use', 'hehim', 'pronoun', 'new', 'stan', 'twt', 'hope', 'help', 'find', 'new', 'moot']",ISTP
865,1263125617404338176,golchanes,mey🍞,"['istp', 'wey']",ISTP
866,1324656001589542913,FroggyTheFresh,froggy!! 💙💙,"['add', 'mbti', 'amp', '4', 'character', 'mbti', 'yes', 'kin', '4', 'istp']",ISTP
867,1329548621637771264,presidentmeyer,atlas,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp']",ISTP
868,1657622115489828865,luvjhsn,ً,"['hello', 'im', 'kirk', 'use', 'hehim', 'pronoun', 'new', 'stan', 'twt', 'hope', 'help', 'find', 'new', 'moot']",ISTP
869,1639953010033037312,antloCk0u,tepab solo,"['hmmm', 'istp']",ISTP
870,1609755698715561985,chaticaljohn,Kyle/Damien :3 (Stangory Lover),"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp']",ISTP
871,1251005413140492288,adyverxe,𔓘,"['dango', 'im', 'lily', 'new', '୨୧', 'ᵎᵎ', 'know', 'shamrock', '18', 'istp', 'shamrock', 'engfil', 'shamrock', 'stem', '𓍼', 'fu']",ISTP
872,1414394740762550278,namjoonhcrts,ember // D-7 UNTIL BDAY!! / VIDEO EDIT OUT!!!,"['day', 'one', 'henlo', 'im', 'venize', 'looking', 'interactive', 'bns', 'moot', 'filo', 'eng', 'istp', 'leo', 'fandom', 'appre']",ISTP
873,1414394740762550278,namjoonhcrts,ember // D-7 UNTIL BDAY!! / VIDEO EDIT OUT!!!,"['lf', 'moot', 'white', 'heart', 'im', 'ember', 'new', 'shethey', 'bi', '22', 'istp', 'gemini', 'may', '25th', 'ults', 'bts']",ISTP
874,1609917258662567938,bananakuji,kujibanana,"['istp', 'bio', 'make', '10', 'time', 'intimidating', 'youre', 'coote']",ISTP
875,1654863153547857922,rukamazin,ruka ♬,['istp'],ISTP
876,1654750738604765184,i43aran,lee | lf swith & hunny moots,"['d4', 'ᐟ', 'lf', 'interactive', 'moot', 'hi', 'im', 'misha', 'filo', 'istp', '୭', 'l4', 'bnsstan', 'moot', 'gtlt', 'new']",ISTP
877,1570381366721916931,honamitruther,nikoo // Kai belovs,"['add', 'mbti', 'amp', '4', 'character', 'mbti', 'istp']",ISTP
878,1654750738604765184,i43aran,lee | lf swith & hunny moots,"['𖥨', '3', 'looking', 'interactive', 'moot', 'fandom', 'welcomed', 'chocolate', 'bar', 'ᵔ', 'ᵔ', 'atenjay', 'sheher', 'hot', 'beverage', '07l', 'hot', 'beverage', 'istp']",ISTP
879,1318580257524363264,Sushishoes1,🍣👟,"['hoo', 'istp', 'interesting']",ISTP
880,1646359123339132930,StrawberrieRems,Remiclipse♡。*,"['add', 'mbti', 'amp', '4', 'character', 'mbti', 'istp']",ISTP
881,1552971513292210176,wonzi_04,Sam,['submitted'],ISTP
882,1654817825805025285,janastudies,Qiwu,"['dango', 'im', 'lily', 'new', '୨୧', 'ᵎᵎ', 'know', 'shamrock', '18', 'istp', 'shamrock', 'engfil', 'shamrock', 'stem', '𓍼', 'fu']",ISTP
883,1373988573200875521,strxwsnberries,𝐌𝐈𝐘𝐀ఌ 🦋🙎🏻♀️👑🙎🏼♀️,"['add', 'mbti', 'four', 'character', 'type', 'istp', 'skull']",ISTP
884,1420920932596543492,meigurubachira,ؘvisha,"['d3', 'hello', 'im', 'kui', 'im', 'looking', 'interactive', 'esp', 'new', 'pronoun', 'istp', 'min']",ISTP
885,1518906629353541632,satuorugojo,ؘuta,"['d3', 'hello', 'im', 'kui', 'im', 'looking', 'interactive', 'esp', 'new', 'pronoun', 'istp', 'min']",ISTP
886,1385498092955340803,hennyjendeuk,kui ♡,"['d3', 'hello', 'im', 'kui', 'im', 'looking', 'interactive', 'esp', 'new', 'pronoun', 'istp']",ISTP
887,1639453362344333312,4ster_0id_,aster | 100 BILLION!!,"['looking', 'moot', 'hehim', 'transgender', 'flag', 'istp', 'ar56', 'america', 'server']",ISTP
888,1548203890696343554,ceyyow,cey 🥑,"['hello', 'im', 'looking', 'new', 'moot', 'new', 'study', 'buddy', '౨ৎ', 'get', 'know', 'teddy', 'bear', 'u', 'call', 'sabrina', 'ballet', 'shoe', '06l']",ISTP
889,1169241660913532928,chronocanary,cin,"['wait', 'omg', 'ive', 'never', 'met', 'another', 'istp', 'thats', 'crazy']",ISTP
890,1565683997753364480,kaizelstudy,kaizel | studytwt,"['day', '1', 'hi', 'new', 'looking', 'moot', 'ꈍᴗꈍ', '06', 'virgo', 'istp', 'fileng', 'ab']",ISTP
891,1423878287613386757,soobinsprinkles,☆,"['try', 'something', 'lost', 'count', 'hello', 'im', 'star', 'im', 'looking', 'interactive', 'new']",ISTP
892,1607238859544494083,eyaprxv,eya•°.👩🏻💼 | ia,"['day', '1', 'hi', 'new', 'looking', 'moot', 'ꈍᴗꈍ', '06', 'virgo', 'istp', 'f']",ISTP
893,1466260479752359938,jonghomallow,sushi,"['try', 'something', 'lost', 'count', 'hello', 'im', 'star', 'im', 'looking', 'interactive', 'new']",ISTP
894,1466260479752359938,jonghomallow,sushi,"['3', 'it', 'pearl', 'im', 'trying', 'find', 'moot', 'minor', 'istp', 'sthey', 'artist', 'palette', 'new']",ISTP
895,904796545966592001,rossbestie,mery; RWT,"['add', 'mbti', 'put', 'four', 'character', 'mbti', 'istp']",ISTP
896,1598870425936613376,prodyeonz,ً,"['try', 'something', 'lost', 'count', 'hello', 'im', 'star', 'im', 'looking', 'interactive', 'new']",ISTP
897,1598870425936613376,prodyeonz,ً,"['3', 'it', 'pearl', 'im', 'trying', 'find', 'moot', 'minor', 'istp', 'sthey', 'artist', 'palette', 'new']",ISTP
898,1148121982174547968,tea_kewt,🍀xya.♡,"['hi', 'im', 'pia', '08', 'liner', 'istp', 'looking', 'moot', 'strawberryany', 'fandom', 'welcomed', 'strawberryskztreasure', 'svtnwjns', 'bts', 'le', 'sserafim']",ISTP
899,1645622990653079556,soysoull,michael🦝,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp', 'flexed', 'biceps']",ISTP
900,1369391782929305601,MYD1NO,pearl ★ semi ia,"['3', 'it', 'pearl', 'im', 'trying', 'find', 'moot', 'minor', 'istp', 'sthey', 'artist', 'palette', 'new']",ISTP
901,1378114620070588418,mika0294651314,mika02,"['nagi', 'intp', 'istp', 'sae', 'kinigami', 'istp']",ISTP
902,1477525865730916355,_Love_theory,𝓗𝓪𝓷 !! I 🖤 Soph!,"['try', 'something', 'lost', 'count', 'hello', 'im', 'star', 'im', 'looking', 'interactive', 'new']",ISTP
903,1646141360456491013,yunrhi,em✩,"['try', 'something', 'lost', 'count', 'hello', 'im', 'star', 'im', 'looking', 'interactive', 'new']",ISTP
904,1650546571753271314,eumppapparazzi,willie eumppappa agenda,"['try', 'something', 'lost', 'count', 'hello', 'im', 'star', 'im', 'looking', 'interactive', 'new']",ISTP
905,1485439691910488064,vinisdumbaf,Vincent 🦝,"['try', 'something', 'lost', 'count', 'hello', 'im', 'star', 'im', 'looking', 'interactive', 'new']",ISTP
906,1423878287613386757,soobinsprinkles,☆,"['try', 'something', 'lost', 'count', 'hello', 'im', 'star', 'im', 'looking', 'interactive', 'new']",ISTP
907,1476663112547897346,AYNHGAK,zay ★⁵,"['istp', 'maker', 'an', 'definitely', 'make', 'shit']",ISTP
908,1383541195213664262,povwilmon,isabella⸆⸉ | TONIGHT ✪,"['add', 'mbti', 'put', '4', 'character', 'one', 'istp']",ISTP
909,1476663112547897346,AYNHGAK,zay ★⁵,"['im', 'istp', 'idt', 'rivht', 'got', '3', 'time', 'think', 'ill', 'take']",ISTP
910,1630666365114654722,archivescate,lou ★ (not miller),"['add', 'mbti', '4', 'character', 'mbti', 'istp', 'love', 'hehheheh']",ISTP
911,2195131489,Supcrncva,Baylee,"['august', 'rain', 'fairchild', '98', 'aquarius', 'istp', 'bisexual', 'hopeless', 'romantic', 'wannabe', 'writer']",ISTP
912,1627167379074719745,ALIENH0NEY,sasha 👑 (fake),"['august', 'rain', 'fairchild', '98', 'aquarius', 'istp', 'bisexual', 'hopeless', 'romantic', 'wannabe', 'writer']",ISTP
913,1562968099334172672,rainystorming,;,"['august', 'rain', 'fairchild', '98', 'aquarius', 'istp', 'bisexual', 'hopeless', 'romantic', 'wannabe', 'writer']",ISTP
914,2997327473,moonwept,August.,"['august', 'rain', 'fairchild', '98', 'aquarius', 'istp', 'bisexual', 'hopeless', 'romantic', 'wannabe']",ISTP
915,1313174713208918017,zedrichie69,zed richie🎧,"['istp', 'grind']",ISTP
916,1146514067290542080,Ieecheongsan,kai ★★★★★,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp', 'samo', 'tudo', 'hahahayahahahahaha', 'qie', 'depres']",ISTP
917,1483484419973332992,chesxire_,iaz ☆,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'istpgt']",ISTP
918,1249005851274145800,pbeginstoread,pm 🌸 ia bc 📚,"['bust', 'silhouette', 'who', 'park', 'myungsoo', 'seventeen', 'unique', 'istp', 'like', 'alone', 'us', 'blunt', 'word', 'turtle', 'opinion', 'c']",ISTP
919,1154167100971376640,yoongisarmpitss,wooyoungs left toe 🆔️ zoluna,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp', 'mbti', 'platypus']",ISTP
920,1051860434,zakaslope,🍎nyan,"['freaking', 'love', 'istp', 'huge', 'stage', 'presence', 'bless', 'yall']",ISTP
921,1604190967824801793,ruivosensacao,ؘ,"['muse', 'bissexual', 'muse', '22', 'amp', 'istp']",ISTP
922,1626296308301729793,stabahs,ethan landry,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp', 'hell', 'correlation', 'herehel']",ISTP
923,824742293466992640,thearcherandfox,Ritz // xadenviolet,"['add', 'mbti', 'put', 'four', 'character', 'mbti', 'lt3', 'loren', 'hale', 'jace', 'herondale', 'joey', 'lynch', 'charli']",ISTP
924,1450557923843878913,naezu4nae,syndia • hiatus 퀸카,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'istp', 'seksowniki']",ISTP
925,1644298478422487044,hutaospot,rurka,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'istp']",ISTP
926,1651537462919831554,halazia_san,San's right shoulder,"['day', 'hi', 'lovely', 'im', 'alex', '18', 'istp', 'multi', 'stan', 'post', 'ateez', 'enha', 'mostly', 'wenee', 'monbebe', 'carat']",ISTP
927,1391607250620346373,ihrtbatz,max ?!,"['add', 'mbti', 'put', '4', 'character', 'type', 'istp']",ISTP
928,1628150722180050945,NapOfAStar413,Luz 🦉 Soob to Lesa's Beom SEEING TXT D-10,"['hii', 'im', 'leelee', 'looking', '4', 'interactive', 'moot', '14', 'sheher', 'istp', 'flag', 'united', 'kingdom', 'looking', 'fea']",ISTP
929,1466260479752359938,jonghomallow,sushi,"['hii', 'im', 'leelee', 'looking', '4', 'interactive', 'moot', '14', 'sheher', 'istp', 'flag', 'united', 'kingdom', 'looking', 'fea']",ISTP
930,1337844449209167873,greyriddlez,"grey, certified thrawn enjoyer","['im', 'istp', 'add', 'mbti', 'four', 'character', 'youd', 'like']",ISTP
931,1322385312362962945,anabsmaciel,ana maciel.,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp']",ISTP
932,985851173751140353,hhannahroseee,hannah 𖤓 mars luvr,"['hii', 'im', 'leelee', 'looking', '4', 'interactive', 'moot', '14', 'sheher', 'istp', 'flag', 'united', 'kingdom', 'looking', 'fea']",ISTP
933,1524046676658380801,Charell4008,♡Goodwill♡,"['intro', '15yofemale', 'istpaquarius', '160cm53', 'ugw', '50kg110lb', 'toxic', 'edtwt', 'dnifatphobic', 'dni', 'moot', 'musicgt']",ISTP
934,1644398196867706880,yoojungs_n,naru ♡ rie,"['hii', 'im', 'leelee', 'looking', '4', 'interactive', 'moot', '14', 'sheher', 'istp', 'flag', 'united', 'kingdom', 'looking', 'fea']",ISTP
935,1565047253579997186,eykIarsen,rafaela,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp', 'win', 'always']",ISTP
936,1424349792621182978,moominzuhaa,leelee !! 🎧,"['hii', 'im', 'leelee', 'looking', '4', 'interactive', 'moot', '14', 'sheher', 'istp', 'flag', 'united', 'kingdom', 'looking', 'f']",ISTP
937,1495785257781841922,iStanDgreatest,Estoy 💙 Biu for Biutiful 💙,"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
938,1213044768596344834,brekkerini,Kae Ivy 𓅨,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp', '3']",ISTP
939,1635422557762465794,K4ZBRKKR,dray,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp']",ISTP
940,1546173738479243265,k1nglotus,Pìmǎwē (He/Him),"['sun', 'huli', 'another', 'general', 'sun', 'wukong', 'expressive', 'he', 'ba', 'younger', 'brother', 'come', 'low']",ISTP
941,1307909595294126081,nefarxious,Dawn.,"['intj', 'closest', 'intp', 'istp']",ISTP
942,1269315867575152640,cla1reredfield,claire ☆,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'idk', 'im', 'infp', 'istp', 'man']",ISTP
943,1078018842939588608,badbatched,Vic🤍,"['wave', 'istp']",ISTP
944,1628164118233616384,MlDSUMM3R,ᴶᵃᶜᵏ,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp']",ISTP
945,1543060238810714112,snfdre,ً,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp']",ISTP
946,1617638160837533709,danieli07469784,danieli,"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
947,4242374052,codeslayronica,kiara☀︎,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'istp', 'babe']",ISTP
948,183301979,xstaygoldxxx,카밀라ㅅ.ㅅ,"['istp', 'way', 'hundred', 'pointsskull']",ISTP
949,1388720367640842242,Sed_lif,MOBCoffee (lol),"['add', 'mbti', 'post', 'four', 'character', 'mbti', 'istp']",ISTP
950,1544793485320011777,tamedsh,fay ⨾,"['istpj', 'unsure', 'taurus', 'jake']",ISTP
951,1604256516743520256,biuluveme,Jake'sRose 💙🥀,"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
952,1657059130782236672,AsRo_Baemon,AsRo,"['day', '2', 'hi', 'im', 'ellen', 'looking', 'interactive', 'baemonstan', 'moot', 'ꔛ', '05', 'sheher', 'istp', 'ꔛ', 'use', 'inaeng', 'mostly', 'idn', 'ꔛ']",ISTP
953,1560905107981606913,ladyoscar_reads,oscar☆,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp']",ISTP
954,1421253093426188293,isagictrl,kit,"['sometimes', 'get', 'istp', 'though', 'dont', 'know', 'one']",ISTP
955,1530918968390656000,stuwziy,ziy²⁴ || free tag,"['hello', 'im', 'looking', 'new', 'moot', 'new', 'study', 'buddy', '౨ৎ', 'get', 'know', 'teddy', 'bear', 'u', 'call', 'sabrina', 'ballet', 'shoe', '06l']",ISTP
956,1606896444824514560,i43333,012 🪐 OUTLAW,"['hi', 'im', 'pia', '08', 'liner', 'istp', 'looking', 'moot', 'strawberryany', 'fandom', 'welcomed', 'strawberryskztreasure', 'svtnwjns', 'bts', 'le', 'sserafim']",ISTP
957,1383539189484982282,Hamy_Bbb,Kate,"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
958,2719564057,ateljieKuutamo,Toni T. Timonen 🟩🟥⬛,"['istpcharacters', 'redemptiontheme']",ISTP
959,1203871133893828608,biomythril,dom🔪,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp']",ISTP
960,1492184330860433416,4cerz,quinn,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'istp']",ISTP
961,1450323955894546437,lewmeowxiw,lewmeow,"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
962,1397878020610793478,nxtdoorreader,Aki,"['add', 'ur', 'mbti', 'qrt', '4', 'character', 'mbti', 'istp']",ISTP
963,1488477804555603979,_patiris_,Fel☆,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'intpistp']",ISTP
964,1343353321256484864,Warlock3947,Prashant 😶🌫️,"['tho', 'doesnt', 'mean', 'thatll', 'give', 'ya', 'correct', 'personality', 'like', 'gave', 'intp', 'istp', 'many', 'time']",ISTP
965,905873586140872704,ArkooSDK,armin,"['know', 'istp', 'idk', 'character', 'like', 'u', 'know']",ISTP
966,905873586140872704,ArkooSDK,armin,['istp'],ISTP
967,1627693789455298564,spinningbee_,˳✧°Lazy Amy ☁️💜 semi ia,"['want', 'know', 'something', 'funny', 'people', 'database', 'debating', 'month', 'nagi', 'mbti', 'betwe']",ISTP
968,2420684494,San1Henry,rubí✨,"['add', 'ur', 'mbti', 'put', '4', 'character', 'type', 'istp']",ISTP
969,1657400843447021570,cnnamonrollseu,🍓ichigo・♡・,"['hi', 'im', 'pia', '08', 'liner', 'istp', 'looking', 'moot', 'strawberryany', 'fandom', 'welcomed', 'strawberryskztreasure', 'svtnwjns', 'bts', 'le', 'ssera']",ISTP
970,869711609169629184,alifhjjaa,Alison Castro 🪷,"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
971,1650983046336729089,dyershealer,soya',"['know', 'levi', 'ackerman', 'istp', 'like', 'thats', 'enough', 'reason', 'love']",ISTP
972,1127697930515881984,wrongshiro,q!Shiro 🩷,"['istp', 'one']",ISTP
973,1312604200400896000,B_y_l_on0615,BYL.,"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
974,4700397495,AnaAna301212,ANA 💜 ⁷. D-DAY 🖤 AgustD,"['face', 'tear', 'joy', 'dont', 'even', 'answer', 'thats', 'istp', 'hahahahaha']",ISTP
975,1635644597073334272,haikento,miraj,"['istp', 'istp', '6w5', 'like', 'except', 'rei']",ISTP
976,1597847200490745856,biubuildza,biubuildza,"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
977,1208240548483489793,sialan56675404,berkah,"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
978,1605058868597256192,zozozo9294,zozozo,"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
979,1643807730526978048,oil5007840,ทำทุกวันให้ดีที่สุด,"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
980,142352770,hoedidasysl,Kat,"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
981,1560639101958688771,BBBB19380786,BB..BB,"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
982,1068135814180171777,PolcaHoney,🫧นู๋ฟอง🫧 - เป็นฟองอากาศที่แข็งแกร่ง (。・。・)ノ,"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
983,1619744658296565761,DaDiep27,Dạ Điệp,"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
984,1544031539637395456,LuveBuildfv,LuveBuildfv,"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
985,1321568253492125696,mingyukimlover,jha saw svt🥹🫶,"['bust', 'silhouette', 'who', 'park', 'myungsoo', 'seventeen', 'unique', 'istp', 'like', 'alone', 'us', 'blunt', 'word', 'turtle', 'opinion', 'c']",ISTP
986,1423139775037382663,TKTMMm357,TK_TM”(Mm)”,"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
987,1283663320315080704,istp_r07,らおん.라온,"['ze_rose', 'rose']",ISTP
988,1617217604460113921,luvedbybiu,DAN. (BLOCK me if you hate SOLO BYL),"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
989,1252961460260503552,hzz_yy,yyzyq.,"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
990,1348851438,candwert05,ca,"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
991,1551553582700212224,itsmeeseaaa,✨ SEA.♒,"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
992,855611346674622466,nipaponngam1,เรียกฉัน แด-ดอก,"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
993,182856064,blejakehusbands,🖤 BibleBuild💙,"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
994,1455969409240023044,Leka3096,Leila 🪷,"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
995,1572695099443904514,Planet_phi,Planet,"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
996,1549284709108432896,marianatwin7,@marianatwin,"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
997,1468238654741127169,LobaMalditaBBB,💙LOBA 🐺 Always with Biu💙,"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
998,1445948538249121794,TTDPhu,Quyên Trần,"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
999,1130127198772498433,adanolis3,Adasupport 💙Bua 🪷Byl🐲-bubble🫧-Bsb🪛,"['tag', 'booster', 'whats', 'mbti', 'guy', 'admins', 'go', 'first', 'cat', 'wry', 'smile', 'kate', 'istj', 'alora', 'istp', 'valerie', 'owen', 'infp']",ISTP
|