-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathglobal_variables.lua
More file actions
10055 lines (10044 loc) · 285 KB
/
global_variables.lua
File metadata and controls
10055 lines (10044 loc) · 285 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--[[
Many people tell me its bad to create a lot of global variables. Most addons probably only create ~50, so I tested it with 10.000 by generating random strings and assigning it a value.
Result: Nothing changed
--]]
--[[
Before 0.00044090000005781
After 0.00043160000018361
table.Count(_G) before: 3133
table.Count(_G) after: 13144
Fprofiler metamethod __index of player:
before, 10:00 seconds measured:
total time in ms (inclusive): 6.4681799991718
Amount of times called: 46127
Average time in ms (inclusive): 0.00014022546446055
after, 10:01 seconds measured:
total time in ms (inclusive): 6.3728199997513
Amount of times called: 46146
Average time in ms (inclusive): 0.00013810124387274
--]]
--if true then return end
local testab = {}
for i=1,10000 do
testab[i] = math.random(1,999999)
end
local ss = SysTime()
for k,v in pairs(testab) do
a = math.random(math.min(999999,math.ceil(v)))
end
print("Before",SysTime()-ss)
soznorlsxwluun = math.random
nuvlktjcpvyrwt = math.random
noteeswxxbkyro = math.random
wtucitdxbtfcic = math.random
wjuhxgqmbrczzd = math.random
llzgdabvpyuioh = math.random
xgfybwsnqrftry = math.random
hgtacfkoivivma = math.random
sllfqevpgelycy = math.random
dllqgwwfxreyoo = math.random
jpmzlgwrofbgxe = math.random
mdadzuhkcnbcxi = math.random
qobavygjxttrzb = math.random
ntzlazmmgmohdn = math.random
cbklwfeuypdadu = math.random
oxvjivluvovwum = math.random
uvhudimaraiuax = math.random
jaqvahgtldzvim = math.random
pkiizrvfqevnfl = math.random
vdjqqjbbliqoqn = math.random
xhvjyvvufoicxh = math.random
pdknswbrfwgpyt = math.random
ivohxsfcgegqng = math.random
kloltngawwfynx = math.random
zvxjyjmuxosuor = math.random
aicvqcgchmkmtx = math.random
ktgwfgsgroxjcp = math.random
bcvlxmftkwmcrz = math.random
jzbgicylelimnq = math.random
wtxcqiurpncqey = math.random
tilqgcsnsjprhj = math.random
pqgzdjfrnaglgu = math.random
rhypumgnrrogye = math.random
dszrlkvmmsqcpo = math.random
tvochzgdfymyst = math.random
tofzepkxvrfqiu = math.random
fivtrgjsenzpad = math.random
gwgnpgfffhvofi = math.random
oqhmwdgcgseqzf = math.random
ibeyrbhzsfcsuc = math.random
otkhmsgesrdatf = math.random
itndsofijerbrq = math.random
dpkfdxgkmdomys = math.random
pznjjjwwlqamkk = math.random
zapdrbxctaaczx = math.random
pojoxflaclfumu = math.random
akjtaaojefbmra = math.random
ezenhjilqotsxb = math.random
tqrcytnsjtratz = math.random
ldgsqsixrinzkq = math.random
uzfdntatnpgyve = math.random
citicrmuzyebhb = math.random
gszdvnalelsdae = math.random
crficdiieuntto = math.random
hnewakeuosbrxu = math.random
wpbcmklnzqvhgh = math.random
jsnfwhspawknxa = math.random
yaijfjtadbpufv = math.random
osergfsphyudin = math.random
atqaosgppnnlpz = math.random
jtinuzzmlmlydm = math.random
eflfvcmbvywiap = math.random
nzftwcyrkenzki = math.random
pbufugfbqmiefr = math.random
cowvxuwffrhmoj = math.random
yqkevvwivpcqor = math.random
nriaofgdnzqxsy = math.random
fexsickjmttxnz = math.random
rhjfawicccnxss = math.random
zphkrnhsysjpjt = math.random
mdljafqufffzgn = math.random
gbqjhyawljzbfn = math.random
aiwanslkkhzqka = math.random
oskwaqaywvdghc = math.random
mpguolakaqccax = math.random
dyjxhpypzpdnrg = math.random
kkpcaauukkpyfl = math.random
syuliorojrryfy = math.random
ahgvbjkdclufgg = math.random
btnebgmeojleer = math.random
tzhwczjassklvm = math.random
ljqdzowtmjfizd = math.random
vjzckcyeuqlfak = math.random
xdbrprzqpkqaat = math.random
wtxkhnnqizgcgx = math.random
utbsakvwvxssqn = math.random
qcgsmkqufiotkv = math.random
snqaydnathyqgv = math.random
ejpjddweqbimqy = math.random
ntwczlqtarluwe = math.random
bedbunpdykirap = math.random
xxsqdgzckmavnd = math.random
fmiwoftqwoeayg = math.random
egktzskeqvivge = math.random
hsxpmjjxggksax = math.random
hkffrtngrmjmpi = math.random
qazvquldyyzgma = math.random
qgjyckqxmjgkqr = math.random
gehfhgvtwdcvum = math.random
pthhommrycvnub = math.random
nzbdkpblhzczoy = math.random
ppexcdsuldfsen = math.random
vnovlzkjldqfwa = math.random
tdhpibnggjpbah = math.random
zwclepeifusgrs = math.random
jcqxwyejiiygrq = math.random
vpssizikgyfawx = math.random
wwttazoyaylhvo = math.random
zxfyhldvljdmmj = math.random
lkrwywabagpdgb = math.random
cyhkfcfvcabkza = math.random
gvffiixqsklcfi = math.random
mdqiwyumvwocqo = math.random
qgwyqbmrnyxujm = math.random
jivuoehukrmxjz = math.random
ksvkekjtlawrtj = math.random
kgyjbtnksqsgfs = math.random
rkxrwbihivqyue = math.random
itiipxofwucgwo = math.random
qigsfwakjdfexy = math.random
hzrtmjjlajohdu = math.random
ijfhqunqojzkcw = math.random
linrlzjfqkbqnr = math.random
hkshumqdhvncwh = math.random
xfsmeqtkhdfmui = math.random
lacsutsebwusln = math.random
warlvbzysdowbh = math.random
xuhsvpswvsgijc = math.random
momsvjypgtxypf = math.random
ejdcecpcytxvjc = math.random
ntchdlmeobgual = math.random
cdlyzwthyicyql = math.random
jjfdzqecnafswj = math.random
dgntqobbpqurne = math.random
qaeyzrebhckdpd = math.random
wcrlvegwczqaow = math.random
rwotajqtkmqnmy = math.random
zduudcheayrani = math.random
hjhksxopafbkue = math.random
pkgxcpmoavgaat = math.random
vvlwaiuqwehzdc = math.random
xliexfohndixnm = math.random
skxaiehkifgsha = math.random
rfgfqxiwdrhrkj = math.random
nvlifeolhqtcxn = math.random
cwzzlsczkxvjtx = math.random
qbvtywvetnekao = math.random
ppiumrlirnrzqf = math.random
ejvwodydncagpo = math.random
utrcsenqnqdowr = math.random
obehvmndwyclrp = math.random
nkxobsxgtqetpo = math.random
mqnqddihhymnuj = math.random
dnmaruzzgaexvs = math.random
hjninijsbkuoam = math.random
tfxhmsnymtyhtz = math.random
iysranalkoqbss = math.random
mmrwmdyueujnga = math.random
rbiwapvnpkyfkz = math.random
mlpkpairjvhcjy = math.random
emjnpksrjbxusc = math.random
hufhcephowyoff = math.random
dhdzxtstjkeufg = math.random
ohafzdoxijdnrw = math.random
acvqbivvyslbtk = math.random
fvwraqmodhkrhi = math.random
ljyfchzvcrrxkh = math.random
fyjxovzdqsirzs = math.random
rrdkgvovjkxykt = math.random
jbzqxldnvskbdq = math.random
ptznulgtfvvbyg = math.random
jzveuwclrfiqgw = math.random
etitancjtgpudx = math.random
vmeqfbyqaucvqk = math.random
qdhzlurzladpen = math.random
cfuyabxwttalkj = math.random
utszqtozejytoa = math.random
swvcfingpinnjh = math.random
doxaqeleqrcfxh = math.random
gprlhjexzdyzqk = math.random
lvdvvwsyuczrmb = math.random
xpjpstkhvcxaao = math.random
hnphsqhtphavpk = math.random
bgsddbidiusord = math.random
lvuzphuaxojxga = math.random
bpshmqnmfxvvjo = math.random
woilysfgzkqluq = math.random
jxnzwiaxzdoxzv = math.random
ryshfgisbqacka = math.random
bfcqadozpbnvms = math.random
rkiaprodhtnsvf = math.random
gvoxnduqrqpmwb = math.random
aytenldcskiwoo = math.random
gakaznwvlppqee = math.random
djviwduveqkbwe = math.random
vccpggwwpzazzz = math.random
wpjekkulfggpxp = math.random
btnbyasbirppna = math.random
hxvqpxgldyogkg = math.random
owmrqkcvujehev = math.random
dwrdgayxpagjig = math.random
tmxeytjrvndeor = math.random
axpuvgnatahvro = math.random
yeoplsnbtabpuv = math.random
skpvolynuplgis = math.random
rlyfvvgpsejudk = math.random
dfzrpbibblxbyv = math.random
dopxzksgvkxzhr = math.random
moxzbyuuarmopj = math.random
wwlqxlidknsvgs = math.random
zrutzhycbkjibv = math.random
hthpymlwgrjvmq = math.random
cnxdelgdhjlgdv = math.random
mqvrlyhnmpqutn = math.random
ntpqajoyjresbv = math.random
cabajdtkkiuvnj = math.random
xsevlonvmdusrm = math.random
yjpojprvcllewo = math.random
ttrizgbodjfjff = math.random
gwmreukvchsidr = math.random
iibegibuehlkyt = math.random
bqkjwmwcsmknff = math.random
uxckqgecdmmtqq = math.random
tdezgpyatneuwq = math.random
qbciudtpcyuqux = math.random
nhuvwtnrfnoyem = math.random
rcylrwkgnkplef = math.random
ittryygukywyyh = math.random
efdoepmitvdkjm = math.random
bvkpzfdhruwbux = math.random
rrcpvnmgcwmpov = math.random
njckskzgntgxjx = math.random
wtflzfmsnoxnfu = math.random
mbqxzagrpdmxwy = math.random
usrenrmgvkqcvv = math.random
ruplisylygtmrd = math.random
wuclvxneudbplx = math.random
awggfckroulqgx = math.random
gwqeytzfwahfpq = math.random
eozhjenahxcinn = math.random
mtgvdiruauadfi = math.random
nqushkyjfepheu = math.random
itasdrltcdxwee = math.random
hzbzgndcdfggrr = math.random
fprqpzsdvopacc = math.random
ydrevcxrofmxhs = math.random
qunkcfeeusvkip = math.random
szacmfcdtkszhi = math.random
shtvlzfgmbarra = math.random
grwvritbppcakd = math.random
udmqvjwuhdtsij = math.random
mmayhdswavxttn = math.random
ugbzisblmavlrd = math.random
raofthdufkgeki = math.random
aiensxxbfvatac = math.random
onzdvdskthwkzs = math.random
ujiirgxdtfxulm = math.random
khjbunpkhkkrvb = math.random
uaxhbmsnkwrztc = math.random
nuunrfvxtjqdcc = math.random
fgabgzzdrixpjc = math.random
dmdhrbqspfblqf = math.random
czhcafkclmzkge = math.random
fefkbdgpfmoton = math.random
yvnfnywekkdouq = math.random
exgvqhkxvghfcw = math.random
zmfidmogpkciol = math.random
xuvwxvfhbdquzd = math.random
itfycvrskvgmtg = math.random
dzancxrugkplvc = math.random
kzkfrzdbkjbydz = math.random
rsndnhkpuxrdbr = math.random
vnoayhuyyhqtjr = math.random
sbdxsanukqiuvz = math.random
tijqogakuvfuhf = math.random
wjvuxaalxgyhje = math.random
gowdexbviuhfcl = math.random
nnnkxljqirhthx = math.random
sgpixakthvdksj = math.random
urllcjeezyxbqt = math.random
uyaednycutuyda = math.random
ciqvowkznccnbr = math.random
kjlhlzhjelmadj = math.random
gtgnwolqpcjack = math.random
kowabnarqvjtil = math.random
upyhbbntytwhhn = math.random
mqimgkdvnfpfpa = math.random
qmglgfmnpilqbm = math.random
bavmqmbcdhyafy = math.random
urgmyppmwahcwt = math.random
ugupumlolpjfpj = math.random
mlwjsjjcgwnabp = math.random
lrieegjciccvrd = math.random
uzeogtifqdgbax = math.random
kqibqlwttcfhvo = math.random
pemoqbyorjqanv = math.random
ofviijgpxajwcs = math.random
gygxzjqzwctlnf = math.random
smmkjdvhdczfwk = math.random
iyscstfclijguw = math.random
hezfihvebqsdod = math.random
wydrqggplpcdsk = math.random
qyxnktvrphwter = math.random
nkemhihyfqmhhd = math.random
wwegofxrjyobfs = math.random
ykcagmtysqgyur = math.random
kxwufefnkqspro = math.random
mfivuyfmcydfvc = math.random
pcdmftdjzwfgal = math.random
nrawyjrgsxixwj = math.random
golucoudltfpto = math.random
fyhcrnhwjoarub = math.random
xdrzuzyuunjhoj = math.random
wczatrxmglsvlb = math.random
rphkqqjvfelgfc = math.random
sfkgnysthteten = math.random
vkmjffygtppawz = math.random
rivwwjmzoglawe = math.random
pogoemduaejuec = math.random
yrbzoaoabejnth = math.random
vpjjxkbibvcoei = math.random
wrltlgmqwwbrhb = math.random
zdsaixdemtmsde = math.random
vphgocuacwijjf = math.random
ofghomhvyutkne = math.random
elerzjuywtksjg = math.random
qvenaxcmycnzzk = math.random
mdokfweaxckxnp = math.random
ajccsawrtqbwus = math.random
ssgppnkgkfruyv = math.random
wylleofizvwaih = math.random
ypqpyzznhnhgib = math.random
jnrcnctzshznta = math.random
eiajlgxnkihazr = math.random
kexikebdjwxxzy = math.random
atlbvrnysohyka = math.random
jxnugwcgdddtgq = math.random
nwuyptwkthlnim = math.random
dxgkdzdbgoshiq = math.random
upvwghnxiokrkg = math.random
vclsnkxftfnpfi = math.random
anzbapkyeaplja = math.random
qffagtkedaabou = math.random
ssqxipgfhowujt = math.random
ixihdstfkbaixe = math.random
hsempbdebknpuq = math.random
uvzmzudtbyfclw = math.random
qfhlzwxemeefsn = math.random
ssujmygvlzrozd = math.random
zyibkwmbwppfdm = math.random
ymblxnjccphwnt = math.random
sqgkisueqqcfwk = math.random
nkinnppigqxmts = math.random
nsltzrpvyyyvyd = math.random
rijgvrkscrnrat = math.random
cngbrfdmhyphtm = math.random
yjeslxkyndtcka = math.random
qqwfxhupgxzixf = math.random
qsaoiwxfugauud = math.random
onqhqneyzpevmg = math.random
mcjezwvshargxa = math.random
oawayzfghjrzxz = math.random
cdehkhyrnirbup = math.random
shiqgwbpnkgksx = math.random
zsciiclvploydk = math.random
ychkbcjwxfsaqw = math.random
nrprxhtboftvdm = math.random
yifnmhlawadhai = math.random
ozfuxnqgqbofsl = math.random
kndocznjmbzujf = math.random
dlerivpmsxiwcm = math.random
qgpupqvfpshlqa = math.random
djgydmeeiyhwdw = math.random
khcxphzlaxxfex = math.random
jbottoxvmkctsz = math.random
vmhzlsmjwfexll = math.random
cubpahdgwymsgg = math.random
fybadfcivlhbqw = math.random
ubjnwcxkkxupbr = math.random
nwdfbubzzmcpmk = math.random
mqgmaugjrpmjkt = math.random
enlafjumzotcjx = math.random
eazntsvfwwpidw = math.random
bqhixihnpdlpvy = math.random
qswsuqlsloznky = math.random
xclfakcvcmmaff = math.random
vwgaabfrxoazkq = math.random
jndxkiogaabwbq = math.random
glmmcryapqndrv = math.random
xkwkyroarxlvel = math.random
wuhxhiifzxjzjb = math.random
hknzrmrpvtyuwj = math.random
rfkshrtmgvyihf = math.random
notippmjqierdk = math.random
okrpbprjphwecf = math.random
cjepgstxjxfkrp = math.random
mrklgjhlpjxxzq = math.random
qqralrkmzslsxd = math.random
msobqoeweezmto = math.random
uciyalipohyfly = math.random
qvauhkcondvprh = math.random
kpzjotkjqelntp = math.random
yewvdwesbudoon = math.random
dtwknjmfibbzrq = math.random
erfqgmfkhhpszg = math.random
yzqvdcwftmqady = math.random
pklunxwehahytn = math.random
fycplwsbcyxjqn = math.random
ncwsbiqsfvyfei = math.random
zperholgqhfltc = math.random
ztsxmxkjnbzqhh = math.random
kuauwdavilzeze = math.random
wfnkcqyxputfbz = math.random
wrdlvotbpukyio = math.random
dadtbqtnysqfgc = math.random
rshukuctncmtys = math.random
znjrvejdhyjiph = math.random
gitqnkmvpfisfx = math.random
vqdawxuanehjlm = math.random
cooippmnhupcra = math.random
uuqhyewgklsbkn = math.random
wwtkollllqdalg = math.random
qjdgxsyvzljrzm = math.random
bpopqawhseroaq = math.random
pwynijonkttbyq = math.random
niianphqrlyvio = math.random
gwesbydnunmdpc = math.random
eamslemqymgram = math.random
yuwhagokbuajzh = math.random
fgzblsrdlbvfho = math.random
tchewtlamihjjy = math.random
mycewbldnzkdch = math.random
dyqpetnfazaxxm = math.random
oopqfuwpkrmtgb = math.random
skajsjcaybpydb = math.random
wvbzxuwaziqdcc = math.random
ictvjkwggwqgad = math.random
dbhrqfyaimtpbq = math.random
mpriofsxqyoulp = math.random
bxkmclxlribean = math.random
sypawvsqrylokn = math.random
gqonjzdziogdpv = math.random
wtfrhpcymjpgba = math.random
gtkpncdapxmxtu = math.random
gcjuaaefyiodcq = math.random
bfiqvokgsbmsko = math.random
jmybhseyjakqpe = math.random
dapdezycfkvgzf = math.random
dfixrbweqozksv = math.random
hcnghqrqsrzddm = math.random
smustidzzshffi = math.random
jjugmbptlciqwf = math.random
bqfitquzxqftzj = math.random
iuilnscpzdufkg = math.random
xuigxqlchlryxm = math.random
uguerodxlmcnck = math.random
xnfejtaobndqii = math.random
jbygyidibquqna = math.random
cniozkceftbloa = math.random
celuibzipzejlj = math.random
yhdxlhpxxqxgpc = math.random
nnctzkxqrttwch = math.random
edmuwipnrepimu = math.random
tuhxjmaderrdne = math.random
afmzmzcxvfgwda = math.random
rivxjkdloumxgg = math.random
mrzabfyfavlcmy = math.random
zujvgdrvldmpiy = math.random
hxfwdkiusatkev = math.random
rudoiizjvfrnzy = math.random
zcvqfyfrgqihbs = math.random
ermxusqdjfhjve = math.random
jieklzvpcpgmjh = math.random
hcixqdfvuuqbuj = math.random
ydfbmtkozgfxld = math.random
qsprkjyviuigha = math.random
eifodmvbrmoiwa = math.random
okszioicbzluck = math.random
fopgzyqewldpcw = math.random
jpqtflixtmktwq = math.random
fhmxsixxzgopmu = math.random
zprifdxhlfojzd = math.random
uewchysvntnsdz = math.random
vopqklwwijvqtz = math.random
foimpbrrxykhda = math.random
gzpddalgjglous = math.random
xexzxaeefdibfo = math.random
arzeuvlzrbdgjr = math.random
hqzxjchibtkjmh = math.random
iruygvzoawpslf = math.random
nkpqlolnmqchev = math.random
fpljzjbyptwrcz = math.random
bvnrxuklavikhx = math.random
ysulvaqkhdxmjm = math.random
eorbuwpqnuynpl = math.random
ewnrxxortnrpsy = math.random
egqkeqhnxehkva = math.random
qpqpkcohclabzz = math.random
bitlipeynqvmem = math.random
etgmndcbbzdrll = math.random
libxqvillsjzcy = math.random
ksptihdefbzaiu = math.random
jmiorjmfzbkpag = math.random
legqaweleqkqgp = math.random
illtmhdbxyvuim = math.random
oesqhaicahkels = math.random
hrqgfluvyjkiaz = math.random
xbkwtcmfsfwfgb = math.random
jrmouftilshtsb = math.random
gfgnthiuavsrjt = math.random
ivufoxibxmwjvs = math.random
rbquihjnixmyft = math.random
lrygmpcvzytjqq = math.random
cqtqhimuxxeicc = math.random
lhyafjzaisrhca = math.random
sxflgetifyzjof = math.random
xjzspdbrkkbjhg = math.random
rmzvqzbhxiwexi = math.random
ohisinyrjsdwip = math.random
bjgneqfkolvidw = math.random
ukccxktplfeqnc = math.random
kmunwvvslmrukw = math.random
dkljotlyyjvpsd = math.random
ccyaexzprvbbmp = math.random
oegythecdmsbjs = math.random
sauqzdkrcfvhkf = math.random
apuhotduwfduvc = math.random
trapfktvtzkuot = math.random
kiprnogtgxnbfb = math.random
jbsqfqkadptmab = math.random
vlwjnyaajrdklo = math.random
mknorwihkfzwmn = math.random
dxbcvuqctqvrzq = math.random
crrsevlamlykaq = math.random
sjanxricfbplhl = math.random
cgfddfzevddgjn = math.random
uinwvcidwjcuvo = math.random
xzdwprboyttszl = math.random
lasaabjhxttyio = math.random
tnodfokhbujipe = math.random
csliaczixnjqun = math.random
pzznbztiuxepun = math.random
jpjnmphzanbqir = math.random
ldpmpmajmuafnb = math.random
niimvpaarmskbr = math.random
oxpwttsefbkapi = math.random
onfeuqxoyaaxek = math.random
ajywcirjxbrvye = math.random
ldqhgcoqoxvbxq = math.random
cmzfwuvkqxhcqg = math.random
dgkgojioipcvgy = math.random
tkkadfkimxcitr = math.random
zraemzkftowyvx = math.random
tgphbaiitachso = math.random
dwuvgnujzoolml = math.random
ufmbbjwayzdpnj = math.random
qsevdkbkjditwm = math.random
crovvttjyuvdvu = math.random
vcxlpchilfqzpd = math.random
gumnnfikouceqm = math.random
bojkxryaoylwsl = math.random
upvsascsppruol = math.random
qkjbqjdltdehln = math.random
tkjcvkcvzwlkvx = math.random
mtdynuvmnpezag = math.random
mbgtygkhguduia = math.random
mojhgxcswuhggf = math.random
fclwiaqqsyllbx = math.random
dagrshgvzufssw = math.random
ljcklchisgrjwg = math.random
bbzxvsbhhzeubd = math.random
rtalgzxglxpnps = math.random
jkuwmstoxvjadw = math.random
unkbknkoocmvxt = math.random
ebxwojundtimnq = math.random
nbshxcunqoiruf = math.random
igivshnqcowpyy = math.random
oohxiweahkossy = math.random
ecwdqhrudzkpuk = math.random
vuhlxyfctlnimc = math.random
ftkimklbibzzbu = math.random
azczhyjfgnlflc = math.random
datjoiststtcap = math.random
cloggzxavdrjua = math.random
qegtokpxdofddj = math.random
dnikgsrhivcnjd = math.random
kxcilhqdfdgsov = math.random
ggojibofddcqbx = math.random
mogihgbwxnhewv = math.random
bxivstxrzxzxjd = math.random
aceopgzoxipsym = math.random
gblhzujwvwjedd = math.random
rfqftxcizvqyzr = math.random
etyckukrdjywfw = math.random
iumwhnggrnwyoa = math.random
aetzkpsftfuhoa = math.random
ksbpmamdwfxcdd = math.random
menkotxhnkuzkx = math.random
ygxyqlcmopkuoy = math.random
llqmaiqhmwppzu = math.random
jjtziawgkljwfg = math.random
yzkrsstneqefmc = math.random
ghysjevszfdywn = math.random
teygfavgwaunth = math.random
ismcbqlianjjot = math.random
hqyhkbdqcmxbtu = math.random
lciupgxaicilkw = math.random
sdbvfmczffqsyi = math.random
klanjutbtwpbis = math.random
bqwnnqvsgfmvfi = math.random
lizxdnxyjjrdsc = math.random
misxzzgroeagcz = math.random
efzqetzzwwwxsw = math.random
mvaayzrwwozlwv = math.random
iapdkwjkuvwzbu = math.random
motsrmexwdnfvy = math.random
yhrtayxihbrcaf = math.random
ljyctejruvcrse = math.random
razedagojjdmvo = math.random
solbacahceesrn = math.random
reeevhagqdshqh = math.random
dukctylikjbkje = math.random
sccptjhqigtifq = math.random
obuglawfzhgzbn = math.random
cjqsfyhnnnsadx = math.random
ogjkwywenycfbe = math.random
zfdjcdhuhwtmtr = math.random
quzlkoaapykjdp = math.random
vgbdnqaefnelsx = math.random
jmdaeuwortednr = math.random
xcozvurjbhtobr = math.random
zjpcfomgnhvmli = math.random
rwgeduyjhoycsa = math.random
jbizmmxleftwhn = math.random
fisfwqamthgina = math.random
xwakfsgdohjbss = math.random
sxheuaohvakndt = math.random
truvxcedsfzgcc = math.random
iuhfjonwstlwvi = math.random
qvhoymhvfpkmra = math.random
rzomeswsyokmbe = math.random
encqpoqnncqebv = math.random
pdnptxxdziupwe = math.random
eykcyfakjxxgkx = math.random
vkqvlhjwipnbgi = math.random
djgqbuewwfstfr = math.random
ozkqhhytkobsqj = math.random
bzitrhvaojlrjw = math.random
gqxxhkrhcouchm = math.random
bkptonneaftozc = math.random
xnimjgzkwqqnmz = math.random
kmnxydboyusgto = math.random
zgoiisuvdmqczm = math.random
uyskjkvmeeqapp = math.random
kvobgvwgwlsgte = math.random
nwuglyfzfgtmkc = math.random
tjnmzkmwxlbbjg = math.random
qlfgyarnqmdoxl = math.random
kmjiusxpsjbsrt = math.random
abocnnwzagcarf = math.random
eknrafirfrzdvz = math.random
ruoyucdqnjwwql = math.random
dihtrytkuqjljz = math.random
qwygnqojntpfyi = math.random
gpzihjeuibynab = math.random
xjbqzcigznsuyh = math.random
qkegosdykcjoor = math.random
qeaeutavqhawpi = math.random
jdwxeudirwvefp = math.random
nrfnedhukkqhde = math.random
cvodawuwnosklv = math.random
bjiveixhnguwce = math.random
gphqexxtlfdzyc = math.random
cfbuvcdyivrooz = math.random
nvysrlaceshzjy = math.random
poambgxjnotwqw = math.random
pthyzrwvboofgn = math.random
vdisutfcfcdmfl = math.random
hwjhiazxuomzio = math.random
xsyejitichfqis = math.random
reiewydvdljrhz = math.random
sctpwmdsabfrnw = math.random
nybfhfysdejtmn = math.random
nlsvqhjefmteoa = math.random
soxebbsvrtytbw = math.random
qvyxtvduhchhdx = math.random
qzjoxjulonkfuk = math.random
fpbgnulgkclxuz = math.random
haqcgeqickfbko = math.random
zdzjsdbfmcahnj = math.random
wkxtmjseggjpyy = math.random
nrvwxlkyhdcrkj = math.random
nkcgymjzgulujb = math.random
ipogkggmllwldp = math.random
skwhpqyuftdrfd = math.random
wrlnlagriehkuw = math.random
lycibchuixsgzi = math.random
nztxwcqrynoepy = math.random
ncldjnrjhjrphf = math.random
kqdtkigdnixcxd = math.random
yxzhyxoetswlck = math.random
aotjjxhgurrpko = math.random
tomxqadodmcxau = math.random
gcfyerwjocsovb = math.random
cgvjnwwbupmjwh = math.random
etfxayqbxuhaow = math.random
nykqvuxavvcdxz = math.random
iohajdykyurtyj = math.random
irrolpusxbsdqp = math.random
devdqcgvaymbpk = math.random
pdlnswgzcexgko = math.random
kaoxkmeatxzxso = math.random
jujuwksgusjphb = math.random
qmufwyjtccslqz = math.random
rbgmmbkxrbevyb = math.random
zjguvdsbfqstxm = math.random
jaisnabmofsngg = math.random
yogwezclmncpyc = math.random
xmymagregazcat = math.random
daapmhlrihtlsf = math.random
zohblztlnfohlt = math.random
xjpswlqpdqinba = math.random
cvmhdciwwcjyod = math.random
gknesaygoignww = math.random
atiaroaomcfmxv = math.random
htiuluwumnrogh = math.random
uszfeamvtwntzm = math.random
tnrofdaledterg = math.random
alvyrioltmohec = math.random
vgsquqaljsjjmw = math.random
hvlvgydspjsjdt = math.random
ogssiasklqbsuo = math.random
sqvbtcpoftjoxk = math.random
ooxjpsngxrtbbp = math.random
ljxvennyjhzgvk = math.random
jpalwuduozemym = math.random
lnmzsyefsadpzp = math.random
awzdcoymnujphx = math.random
sotmhbvvrytmjm = math.random
dkpbpxwaburmai = math.random
ofdcrlymcojpqw = math.random
vqutyvldjpvyjg = math.random
esoqdkjaiiqlzf = math.random
qrgvjfyxiyrgdy = math.random
frzkhkmlxsaopg = math.random
rsucnqtfrreasg = math.random
hkovkosnypofef = math.random
ykmwguuturwrpb = math.random
tcealmzuyzogah = math.random
bgqzuudymmebsz = math.random
rjalaxjhyxkffr = math.random
wtpcuszvzcicyh = math.random
ybknjzqxvysqed = math.random
pfdumsbdmdydrl = math.random
olnfkihdwrwffr = math.random
bjsdplleoulgjh = math.random
hhqavmfmayobem = math.random
pdnxzrqiavlggn = math.random
kqjgznvhsfiwwv = math.random
ldtopufdqjkjlx = math.random
gviitovwyypixb = math.random
tbaqblrvuyryxk = math.random
xcakxrfqzweaqz = math.random
dkepdogatjlnhp = math.random
desghabntpeucq = math.random
qqxbfcqlfweodc = math.random
uqkiombdxvlyxw = math.random
gcvhwiscztwktv = math.random
tovlyteitqvkea = math.random
jpdnudikktplxv = math.random
cyrlbqkxwtnogk = math.random
ssjiglxvxkypsu = math.random
voixuoyqyyelid = math.random
pchwgxhyhglbos = math.random
tdmuxwerdrksjy = math.random
ynnpqtimjeyecz = math.random
gexwbitxkxaolb = math.random
yzmxaeqwdvcrjo = math.random
kfuahyyjxpatgy = math.random
ratiumhcyqetme = math.random
kfbsauapxinfcl = math.random
nczhnecmwgqybw = math.random
gpwbtngufecfpj = math.random
hdrdjiiismmnec = math.random
vmuilnscxrcpgj = math.random
efxpzprqgqnylz = math.random
rbvkwoxdjcxodx = math.random
iljitfgpzcvowq = math.random
bqizwykfiukwck = math.random
ecpdsvocapdbhq = math.random
smxksioyjzdgkl = math.random
tihrszfmlnxgvy = math.random
sobqtoizajkklk = math.random
udxdsehdhompgi = math.random
qlsukzlmcjhwom = math.random
ijorlwntbezuss = math.random
gzachbntruvytg = math.random
noynfslsffkhnp = math.random
kjewiiqbzvxbzo = math.random
rrqgllagvuwxkq = math.random
stzruzmtufemhg = math.random
iaihfmvgigbsxv = math.random
fcfovnqnavvlfx = math.random
tssheemtxdgayu = math.random
nwoyqsxfpbfayx = math.random
pkiztvgvfpsvlp = math.random
mmvczijqpyjshh = math.random
kyujezibxhsklb = math.random
jyylpofwgtzmlj = math.random
kaxkyzxzhopmrt = math.random
qkubozkrysxlpj = math.random
vkkqbwbcxqzpkt = math.random
qfnalvdvfwivdm = math.random
plixjhbtbkwaok = math.random
faeqdaivqiifxv = math.random
tybaaexzgtbnad = math.random
otqppbgseknotf = math.random
utdxfglbjqlbyo = math.random
fuxwwsldnrpylc = math.random
zgpkfckfwlaicg = math.random
qcmbdfkclnywvv = math.random
ifklvqwtzkujlj = math.random
ljidbpkvdntgbx = math.random
ufooxodnxzlcqm = math.random
cwppewftsahhbo = math.random
irqfblxuvymflm = math.random
nbjehgyptgpagh = math.random
owylgeylhxrhcb = math.random
ikkifipjtwmvfc = math.random
azwtwdbvdbfqfi = math.random
gcknabuqwwoqrh = math.random
pvobygziuhtfdk = math.random
qglfgstllfknwx = math.random
wbggoaitvumyua = math.random
ohzgwjmclqrpvi = math.random
elzweazrschjvd = math.random
ybdbwtvdiprspv = math.random
grhhfitcgerzdx = math.random
svjvfwkwtlwvip = math.random
ziylbtzktdtorq = math.random
cukxdezbhxgsmh = math.random
xvqysmzvywudnw = math.random
khkubzvnhlgimw = math.random
hdkjpfsecegtox = math.random
dxswywamofoakz = math.random
chdcxzuktafiyk = math.random
ahtmlbiblmpxzt = math.random
jpuaaxuwhelccb = math.random
qbuvbpzdqhhmil = math.random
kfdqgzuatlllko = math.random
erdjqptwnzcaad = math.random
ocrlowfkizackd = math.random
gadapxldtgpwjm = math.random
vyyvuqgmdbntfu = math.random
tktwtnxpgfrpiu = math.random
bfgcgzdsyadybw = math.random
munggmaxximpao = math.random
wxtvviyikysrwd = math.random
jovyyaebpfqemv = math.random
sbhjdnqmwrskfq = math.random
bchgeslfvqhdds = math.random
qelvuekkquzzfp = math.random
tgvwynlrmeiqju = math.random
knwgjpmeocswjl = math.random
ypztfoepbsppni = math.random
japwweqgybjzcc = math.random
bwnlfaqybabwdq = math.random
cuqvdbosiwules = math.random
nvmceomazbvzxl = math.random
imjmitazsehgqv = math.random
hjvxwklrmzhewz = math.random
zcvvqdjerhtvab = math.random
jyqracwvjkvyyk = math.random
ejyoxumsavxffy = math.random
svfluzkwtexgaz = math.random
csprhzypfoczim = math.random
mahqcieffjvinw = math.random
msioudrvxgawkb = math.random
qmdqynkzytatbo = math.random
daxfeimpnxpjjh = math.random
qutnytqglkaahy = math.random
peumflxriudimv = math.random
jucdkbzopoopex = math.random
vtmjxxhlrlvftw = math.random
vlvudetcenxjsz = math.random
tmdyhpuuytvvpe = math.random
eeghbssjgwyyim = math.random
vxbvjmltrnhlfs = math.random
hdiajygslkgiuv = math.random
tyjffiyjyhgjxc = math.random
oyyuqbyrvydelj = math.random
lbteaampdvdnrj = math.random
qpzpsgmanfbalg = math.random
mqwayrcfkmpxng = math.random
qizsjgbyrvklxr = math.random
shhlhzqmmzpyye = math.random
wifronibjdiopd = math.random
ieojlenbuuxebu = math.random
roemraqribfddc = math.random
njsgtreeppiizb = math.random
sonjsmkvnsniqy = math.random
boyuysefzclmjo = math.random
vaqwtfoltnexcd = math.random
gnlbnwykzoljmg = math.random
fvqrnqhvyrcwbi = math.random
fdmtbndniammaw = math.random
bfrcluwnmobhho = math.random
ogladoxiipdgkf = math.random
eamqxznueauvvg = math.random
aevbwyhpktjqto = math.random
bjtkgjtaiatwjk = math.random
tgclbgetylsite = math.random
xqeglffqikybdt = math.random
dmncrqkhfkprzr = math.random
xmoevozafutewl = math.random
doogrbccjllrst = math.random
nqbxypwvvkdgtk = math.random
iiqgnjglbghmui = math.random
fhtyerfickzfrr = math.random
lntssfyfazbatl = math.random
pvnqqhjebalbnr = math.random
fmbixoxihunwgd = math.random
iyrederqpynaiq = math.random
vuousmcvjflpwy = math.random
yoikojryaoidds = math.random
utgrltczzozvva = math.random
ymoiayiihktcqs = math.random
fwaxcvqefzyvgg = math.random
xhvdaogzgoiphs = math.random
zfuxdgwwzppheb = math.random
eapndmengmtecm = math.random
pidwhsimahczeo = math.random
kfsbkevrnbufna = math.random
enlmjpaphoykmy = math.random
efgmhrzmjkdfhj = math.random
neujskrjoocdoa = math.random
xubiuibepullea = math.random
utjvemhqjbmtts = math.random
ahyugvragjeiyu = math.random
wllczonptbxamt = math.random
vetxoenaccdtox = math.random
frxmrzffmgjdex = math.random
cvgrfejafxrdzk = math.random
sdklplxgnawemo = math.random
secljpfttkkshm = math.random
ifymarxfycdtsb = math.random
xaqlfwvpbxyafo = math.random
gpetzbyfqvrgud = math.random
tisvzwoezkmomw = math.random
blmmxufekyypso = math.random
woaippxwoafnnv = math.random
arefvmsthiitte = math.random
asvqsvyysedqyy = math.random
owgsoyqqlixmzm = math.random
ccfdyjhhqsdzqj = math.random
rmmpcjxpxbhmvb = math.random
dfehsiagnnfufi = math.random
hgnwjbkglvhlbp = math.random
biictxgtrwvepy = math.random
psshmkdwkrwozk = math.random
yrbbiiviboqkey = math.random
detmcmlzppjpim = math.random
wttomspomdobvu = math.random