-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1065 lines (1018 loc) · 82.2 KB
/
index.html
File metadata and controls
1065 lines (1018 loc) · 82.2 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
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<!-- lol I have to include the entire spritesheet css otherwise I'll get cross origin errors -->
<style title="botb">
.botb-icon{display:inline-block;vertical-align:text-bottom;image-rendering: -webkit-crisp-edges;image-rendering: -moz-crisp-edges;image-rendering: pixelated;background-image:url("botb-spritesheet.png");}.botb-icon.icons-BotB{width:16px;height:16px;background-position:-0px -0px;}
.botb-icon.icons-admins{width:16px;height:16px;background-position:-16px -0px;}
.botb-icon.icons-ascended{width:16px;height:16px;background-position:-32px -0px;}
.botb-icon.icons-battles{width:16px;height:16px;background-position:-48px -0px;}
.botb-icon.icons-battles-ann_arbor{width:16px;height:16px;background-position:-64px -0px;}
.botb-icon.icons-battles-chiptune{width:16px;height:16px;background-position:-80px -0px;}
.botb-icon.icons-battles-detroit{width:16px;height:16px;background-position:-96px -0px;}
.botb-icon.icons-battles-ohb{width:16px;height:16px;background-position:-112px -0px;}
.botb-icon.icons-battles-ohc{width:16px;height:16px;background-position:-128px -0px;}
.botb-icon.icons-battles-pit_fight{width:16px;height:16px;background-position:-144px -0px;}
.botb-icon.icons-battles-remix{width:16px;height:16px;background-position:-160px -0px;}
.botb-icon.icons-battles-triple_theme{width:16px;height:16px;background-position:-176px -0px;}
.botb-icon.icons-battles-winter_chip{width:16px;height:16px;background-position:-192px -0px;}
.botb-icon.icons-bed{width:16px;height:16px;background-position:-208px -0px;}
.botb-icon.icons-boons{width:12px;height:12px;background-position:-224px -0px;}
.botb-icon.icons-bug{width:16px;height:16px;background-position:-236px -0px;}
.botb-icon.icons-bulletins{width:16px;height:16px;background-position:-0px -16px;}
.botb-icon.icons-chipist{width:16px;height:16px;background-position:-16px -16px;}
.botb-icon.icons-criticist{width:16px;height:16px;background-position:-32px -16px;}
.botb-icon.icons-disk{width:16px;height:16px;background-position:-48px -16px;}
.botb-icon.icons-donloads{width:9px;height:9px;background-position:-64px -16px;}
.botb-icon.icons-door{width:16px;height:16px;background-position:-73px -16px;}
.botb-icon.icons-eye{width:16px;height:16px;background-position:-89px -16px;}
.botb-icon.icons-favfive{width:16px;height:16px;background-position:-105px -16px;}
.botb-icon.icons-favoriteAdd{width:16px;height:16px;background-position:-121px -16px;}
.botb-icon.icons-favoriteRemove{width:16px;height:16px;background-position:-137px -16px;}
.botb-icon.icons-feature{width:16px;height:16px;background-position:-153px -16px;}
.botb-icon.icons-formats-adlib{width:16px;height:16px;background-position:-169px -16px;}
.botb-icon.icons-formats-ahx{width:16px;height:16px;background-position:-185px -16px;}
.botb-icon.icons-formats-allgear{width:16px;height:16px;background-position:-201px -16px;}
.botb-icon.icons-formats-amigamod{width:16px;height:16px;background-position:-217px -16px;}
.botb-icon.icons-formats-ascii{width:16px;height:16px;background-position:-233px -16px;}
.botb-icon.icons-formats-aym{width:16px;height:16px;background-position:-0px -32px;}
.botb-icon.icons-formats-channelf{width:16px;height:16px;background-position:-16px -32px;}
.botb-icon.icons-formats-chipbattle_art{width:16px;height:16px;background-position:-32px -32px;}
.botb-icon.icons-formats-deflemask{width:16px;height:16px;background-position:-48px -32px;}
.botb-icon.icons-formats-doom{width:16px;height:16px;background-position:-64px -32px;}
.botb-icon.icons-formats-famitracker{width:16px;height:16px;background-position:-80px -32px;}
.botb-icon.icons-formats-fsound{width:16px;height:16px;background-position:-96px -32px;}
.botb-icon.icons-formats-gameboy{width:16px;height:16px;background-position:-112px -32px;}
.botb-icon.icons-formats-hes{width:16px;height:16px;background-position:-128px -32px;}
.botb-icon.icons-formats-html{width:16px;height:16px;background-position:-144px -32px;}
.botb-icon.icons-formats-html5{width:16px;height:16px;background-position:-160px -32px;}
.botb-icon.icons-formats-lgpt{width:16px;height:16px;background-position:-176px -32px;}
.botb-icon.icons-formats-mariopaint{width:16px;height:16px;background-position:-192px -32px;}
.botb-icon.icons-formats-mariopantse{width:16px;height:16px;background-position:-208px -32px;}
.botb-icon.icons-formats-midi{width:16px;height:16px;background-position:-224px -32px;}
.botb-icon.icons-formats-mixbattle_art{width:16px;height:16px;background-position:-240px -32px;}
.botb-icon.icons-formats-mod12k{width:16px;height:16px;background-position:-0px -48px;}
.botb-icon.icons-formats-mod16k{width:16px;height:16px;background-position:-16px -48px;}
.botb-icon.icons-formats-mod24k{width:16px;height:16px;background-position:-32px -48px;}
.botb-icon.icons-formats-mod32k{width:16px;height:16px;background-position:-48px -48px;}
.botb-icon.icons-formats-mod48k{width:16px;height:16px;background-position:-64px -48px;}
.botb-icon.icons-formats-mod64k{width:16px;height:16px;background-position:-80px -48px;}
.botb-icon.icons-formats-mp3{width:16px;height:16px;background-position:-96px -48px;}
.botb-icon.icons-formats-mptm{width:16px;height:16px;background-position:-112px -48px;}
.botb-icon.icons-formats-nsf{width:16px;height:16px;background-position:-128px -48px;}
.botb-icon.icons-formats-nsfplus{width:16px;height:16px;background-position:-144px -48px;}
.botb-icon.icons-formats-ntrq{width:16px;height:16px;background-position:-160px -48px;}
.botb-icon.icons-formats-panda{width:16px;height:16px;background-position:-176px -48px;}
.botb-icon.icons-formats-pixel{width:16px;height:16px;background-position:-192px -48px;}
.botb-icon.icons-formats-pixel_old{width:16px;height:16px;background-position:-208px -48px;}
.botb-icon.icons-formats-pxtone{width:16px;height:16px;background-position:-224px -48px;}
.botb-icon.icons-formats-remix{width:16px;height:16px;background-position:-240px -48px;}
.botb-icon.icons-formats-renoise{width:16px;height:16px;background-position:-0px -64px;}
.botb-icon.icons-formats-s3xmodit{width:16px;height:16px;background-position:-16px -64px;}
.botb-icon.icons-formats-sample{width:16px;height:16px;background-position:-32px -64px;}
.botb-icon.icons-formats-sap{width:16px;height:16px;background-position:-48px -64px;}
.botb-icon.icons-formats-sapx2{width:16px;height:16px;background-position:-64px -64px;}
.botb-icon.icons-formats-sgen{width:16px;height:16px;background-position:-80px -64px;}
.botb-icon.icons-formats-sid{width:16px;height:16px;background-position:-96px -64px;}
.botb-icon.icons-formats-sms{width:16px;height:16px;background-position:-112px -64px;}
.botb-icon.icons-formats-spc{width:16px;height:16px;background-position:-128px -64px;}
.botb-icon.icons-formats-sunvox{width:16px;height:16px;background-position:-144px -64px;}
.botb-icon.icons-formats-svg{width:16px;height:16px;background-position:-160px -64px;}
.botb-icon.icons-formats-tia{width:16px;height:16px;background-position:-176px -64px;}
.botb-icon.icons-formats-vic20{width:16px;height:16px;background-position:-192px -64px;}
.botb-icon.icons-formats-wildchip{width:16px;height:16px;background-position:-208px -64px;}
.botb-icon.icons-formats-zxbeep{width:16px;height:16px;background-position:-224px -64px;}
.botb-icon.icons-formats-bytebeat{width:16px;height:16px;background-position:-240px -64px;}
.botb-icon.icons-formats-ansi{width:16px;height:16px;background-position:-0px -80px;}
.botb-icon.icons-formats-bytebeat1k{width:16px;height:16px;background-position:-16px -80px;}
.botb-icon.icons-formats-nsf_classic{width:16px;height:16px;background-position:-32px -80px;}
.botb-icon.icons-formats-draw{width:16px;height:16px;background-position:-48px -80px;}
.botb-icon.icons-formats-pc-x801{width:16px;height:16px;background-position:-64px -80px;}
.botb-icon.icons-formats-photomash{width:16px;height:16px;background-position:-80px -80px;}
.botb-icon.icons-formats-0cc{width:16px;height:16px;background-position:-96px -80px;}
.botb-icon.icons-formats-boom{width:16px;height:16px;background-position:-112px -80px;}
.botb-icon.icons-formats-mt32{width:16px;height:16px;background-position:-128px -80px;}
.botb-icon.icons-formats-ted{width:16px;height:16px;background-position:-144px -80px;}
.botb-icon.icons-formats-snibbetracker{width:16px;height:16px;background-position:-160px -80px;}
.botb-icon.icons-formats-klystrack{width:16px;height:16px;background-position:-176px -80px;}
.botb-icon.icons-formats-vcv_rack{width:16px;height:16px;background-position:-192px -80px;}
.botb-icon.icons-formats-tic80{width:16px;height:16px;background-position:-208px -80px;}
.botb-icon.icons-formats-mod04k{width:16px;height:16px;background-position:-224px -80px;}
.botb-icon.icons-formats-mod08k{width:16px;height:16px;background-position:-240px -80px;}
.botb-icon.icons-formats-pd{width:16px;height:16px;background-position:-0px -96px;}
.botb-icon.icons-grafxicist{width:16px;height:16px;background-position:-16px -96px;}
.botb-icon.icons-hait{width:10px;height:10px;background-position:-32px -96px;}
.botb-icon.icons-heart{width:13px;height:13px;background-position:-42px -96px;}
.botb-icon.icons-home{width:16px;height:16px;background-position:-55px -96px;}
.botb-icon.icons-hostist{width:16px;height:16px;background-position:-71px -96px;}
.botb-icon.icons-key{width:16px;height:16px;background-position:-87px -96px;}
.botb-icon.icons-liek{width:10px;height:10px;background-position:-103px -96px;}
.botb-icon.icons-list{width:16px;height:16px;background-position:-113px -96px;}
.botb-icon.icons-mail{width:16px;height:16px;background-position:-129px -96px;}
.botb-icon.icons-mappist{width:16px;height:16px;background-position:-145px -96px;}
.botb-icon.icons-codist{width:15px;height:15px;background-position:-161px -96px;}
.botb-icon.icons-mighty{width:16px;height:16px;background-position:-176px -96px;}
.botb-icon.icons-mixist{width:16px;height:16px;background-position:-192px -96px;}
.botb-icon.icons-mp3{width:16px;height:16px;background-position:-208px -96px;}
.botb-icon.icons-mummi{width:16px;height:16px;background-position:-224px -96px;}
.botb-icon.icons-n00b{width:16px;height:16px;background-position:-240px -96px;}
.botb-icon.icons-news{width:16px;height:16px;background-position:-0px -112px;}
.botb-icon.icons-nubs{width:12px;height:12px;background-position:-16px -112px;}
.botb-icon.icons-ohcist{width:16px;height:16px;background-position:-28px -112px;}
.botb-icon.icons-parasite{width:16px;height:16px;background-position:-44px -112px;}
.botb-icon.icons-pedagogist{width:16px;height:16px;background-position:-60px -112px;}
.botb-icon.icons-pencil{width:16px;height:16px;background-position:-76px -112px;}
.botb-icon.icons-pixelist{width:16px;height:16px;background-position:-92px -112px;}
.botb-icon.icons-playa{width:16px;height:16px;background-position:-108px -112px;}
.botb-icon.icons-plays{width:9px;height:9px;background-position:-124px -112px;}
.botb-icon.icons-posts{width:9px;height:9px;background-position:-133px -112px;}
.botb-icon.icons-project{width:15px;height:15px;background-position:-142px -112px;}
.botb-icon.icons-renderist{width:16px;height:16px;background-position:-157px -112px;}
.botb-icon.icons-rss{width:16px;height:16px;background-position:-173px -112px;}
.botb-icon.icons-samplist{width:16px;height:16px;background-position:-189px -112px;}
.botb-icon.icons-score{width:9px;height:9px;background-position:-205px -112px;}
.botb-icon.icons-scores{width:16px;height:16px;background-position:-214px -112px;}
.botb-icon.icons-scrub{width:16px;height:16px;background-position:-230px -112px;}
.botb-icon.icons-search{width:16px;height:16px;background-position:-0px -128px;}
.botb-icon.icons-skull{width:13px;height:13px;background-position:-16px -128px;}
.botb-icon.icons-smeesh{width:16px;height:16px;background-position:-29px -128px;}
.botb-icon.icons-speaker{width:16px;height:16px;background-position:-45px -128px;}
.botb-icon.icons-speakerNO{width:16px;height:16px;background-position:-61px -128px;}
.botb-icon.icons-star{width:16px;height:16px;background-position:-77px -128px;}
.botb-icon.icons-sysop{width:16px;height:16px;background-position:-93px -128px;}
.botb-icon.icons-taggist{width:16px;height:16px;background-position:-109px -128px;}
.botb-icon.icons-thumbsup{width:15px;height:15px;background-position:-125px -128px;}
.botb-icon.icons-tincan{width:15px;height:15px;background-position:-140px -128px;}
.botb-icon.icons-trash{width:16px;height:16px;background-position:-155px -128px;}
.botb-icon.icons-troll{width:16px;height:16px;background-position:-171px -128px;}
.botb-icon.icons-trophiez-trophy_0_0_b{width:16px;height:16px;background-position:-187px -128px;}
.botb-icon.icons-trophiez-trophy_0_0_g{width:16px;height:16px;background-position:-203px -128px;}
.botb-icon.icons-trophiez-trophy_0_0_s{width:16px;height:16px;background-position:-219px -128px;}
.botb-icon.icons-trophiez-trophy_0_1_b{width:15px;height:15px;background-position:-235px -128px;}
.botb-icon.icons-trophiez-trophy_0_1_g{width:15px;height:15px;background-position:-0px -144px;}
.botb-icon.icons-trophiez-trophy_0_1_s{width:15px;height:15px;background-position:-15px -144px;}
.botb-icon.icons-trophiez-trophy_0_2_b{width:15px;height:15px;background-position:-30px -144px;}
.botb-icon.icons-trophiez-trophy_0_2_g{width:15px;height:15px;background-position:-45px -144px;}
.botb-icon.icons-trophiez-trophy_0_2_s{width:15px;height:15px;background-position:-60px -144px;}
.botb-icon.icons-trophiez-trophy_0_3_b{width:15px;height:15px;background-position:-75px -144px;}
.botb-icon.icons-trophiez-trophy_0_3_g{width:15px;height:15px;background-position:-90px -144px;}
.botb-icon.icons-trophiez-trophy_0_3_s{width:15px;height:15px;background-position:-105px -144px;}
.botb-icon.icons-trophiez-trophy_0_4_b{width:15px;height:15px;background-position:-120px -144px;}
.botb-icon.icons-trophiez-trophy_0_4_g{width:15px;height:15px;background-position:-135px -144px;}
.botb-icon.icons-trophiez-trophy_0_4_s{width:15px;height:15px;background-position:-150px -144px;}
.botb-icon.icons-trophiez-trophy_0_5_b{width:15px;height:15px;background-position:-165px -144px;}
.botb-icon.icons-trophiez-trophy_0_5_g{width:15px;height:15px;background-position:-180px -144px;}
.botb-icon.icons-trophiez-trophy_0_5_s{width:15px;height:15px;background-position:-195px -144px;}
.botb-icon.icons-trophiez-trophy_0_t{width:15px;height:15px;background-position:-210px -144px;}
.botb-icon.icons-trophiez-trophy_1_0_b{width:15px;height:15px;background-position:-225px -144px;}
.botb-icon.icons-trophiez-trophy_1_0_g{width:15px;height:15px;background-position:-240px -144px;}
.botb-icon.icons-trophiez-trophy_1_0_s{width:15px;height:15px;background-position:-0px -159px;}
.botb-icon.icons-trophiez-trophy_1_t{width:15px;height:15px;background-position:-15px -159px;}
.botb-icon.icons-trophiez-trophy_2_0_b{width:15px;height:15px;background-position:-30px -159px;}
.botb-icon.icons-trophiez-trophy_2_0_g{width:15px;height:15px;background-position:-45px -159px;}
.botb-icon.icons-trophiez-trophy_2_0_s{width:15px;height:15px;background-position:-60px -159px;}
.botb-icon.icons-trophiez-trophy_2_1_b{width:15px;height:15px;background-position:-75px -159px;}
.botb-icon.icons-trophiez-trophy_2_1_g{width:15px;height:15px;background-position:-90px -159px;}
.botb-icon.icons-trophiez-trophy_2_1_s{width:15px;height:15px;background-position:-105px -159px;}
.botb-icon.icons-trophiez-trophy_2_2_b{width:15px;height:15px;background-position:-120px -159px;}
.botb-icon.icons-trophiez-trophy_2_2_g{width:15px;height:15px;background-position:-135px -159px;}
.botb-icon.icons-trophiez-trophy_2_2_s{width:15px;height:15px;background-position:-150px -159px;}
.botb-icon.icons-trophiez-trophy_2_3_b{width:15px;height:15px;background-position:-165px -159px;}
.botb-icon.icons-trophiez-trophy_2_3_g{width:15px;height:15px;background-position:-180px -159px;}
.botb-icon.icons-trophiez-trophy_2_3_s{width:15px;height:15px;background-position:-195px -159px;}
.botb-icon.icons-trophiez-trophy_2_4_b{width:15px;height:15px;background-position:-210px -159px;}
.botb-icon.icons-trophiez-trophy_2_4_g{width:15px;height:15px;background-position:-225px -159px;}
.botb-icon.icons-trophiez-trophy_2_4_s{width:15px;height:15px;background-position:-240px -159px;}
.botb-icon.icons-trophiez-trophy_2_5_b{width:15px;height:15px;background-position:-0px -174px;}
.botb-icon.icons-trophiez-trophy_2_5_g{width:15px;height:15px;background-position:-15px -174px;}
.botb-icon.icons-trophiez-trophy_2_5_s{width:15px;height:15px;background-position:-30px -174px;}
.botb-icon.icons-trophiez-trophy_2_t{width:15px;height:15px;background-position:-45px -174px;}
.botb-icon.icons-trophiez-trophy_adlib_b{width:16px;height:16px;background-position:-60px -174px;}
.botb-icon.icons-trophiez-trophy_adlib_g{width:16px;height:16px;background-position:-76px -174px;}
.botb-icon.icons-trophiez-trophy_adlib_s{width:16px;height:16px;background-position:-92px -174px;}
.botb-icon.icons-trophiez-trophy_ahx_b{width:16px;height:16px;background-position:-108px -174px;}
.botb-icon.icons-trophiez-trophy_ahx_g{width:16px;height:16px;background-position:-124px -174px;}
.botb-icon.icons-trophiez-trophy_ahx_s{width:16px;height:16px;background-position:-140px -174px;}
.botb-icon.icons-trophiez-trophy_allgear_b{width:16px;height:16px;background-position:-156px -174px;}
.botb-icon.icons-trophiez-trophy_allgear_g{width:16px;height:16px;background-position:-172px -174px;}
.botb-icon.icons-trophiez-trophy_allgear_s{width:16px;height:16px;background-position:-188px -174px;}
.botb-icon.icons-trophiez-trophy_amigamod_b{width:16px;height:16px;background-position:-204px -174px;}
.botb-icon.icons-trophiez-trophy_amigamod_g{width:16px;height:16px;background-position:-220px -174px;}
.botb-icon.icons-trophiez-trophy_amigamod_s{width:16px;height:16px;background-position:-236px -174px;}
.botb-icon.icons-trophiez-trophy_aym_b{width:16px;height:16px;background-position:-0px -190px;}
.botb-icon.icons-trophiez-trophy_aym_g{width:16px;height:16px;background-position:-16px -190px;}
.botb-icon.icons-trophiez-trophy_aym_s{width:16px;height:16px;background-position:-32px -190px;}
.botb-icon.icons-trophiez-trophy_channelf_b{width:16px;height:16px;background-position:-48px -190px;}
.botb-icon.icons-trophiez-trophy_channelf_g{width:16px;height:16px;background-position:-64px -190px;}
.botb-icon.icons-trophiez-trophy_channelf_s{width:16px;height:16px;background-position:-80px -190px;}
.botb-icon.icons-trophiez-trophy_chipbattle_art_b{width:16px;height:16px;background-position:-96px -190px;}
.botb-icon.icons-trophiez-trophy_chipbattle_art_g{width:16px;height:16px;background-position:-112px -190px;}
.botb-icon.icons-trophiez-trophy_chipbattle_art_s{width:16px;height:16px;background-position:-128px -190px;}
.botb-icon.icons-trophiez-trophy_deflemask_b{width:16px;height:16px;background-position:-144px -190px;}
.botb-icon.icons-trophiez-trophy_deflemask_g{width:16px;height:16px;background-position:-160px -190px;}
.botb-icon.icons-trophiez-trophy_deflemask_s{width:16px;height:16px;background-position:-176px -190px;}
.botb-icon.icons-trophiez-trophy_famitracker_b{width:16px;height:16px;background-position:-192px -190px;}
.botb-icon.icons-trophiez-trophy_famitracker_g{width:16px;height:16px;background-position:-208px -190px;}
.botb-icon.icons-trophiez-trophy_famitracker_s{width:16px;height:16px;background-position:-224px -190px;}
.botb-icon.icons-trophiez-trophy_gameboy_b{width:16px;height:16px;background-position:-240px -190px;}
.botb-icon.icons-trophiez-trophy_gameboy_g{width:16px;height:16px;background-position:-0px -206px;}
.botb-icon.icons-trophiez-trophy_gameboy_s{width:16px;height:16px;background-position:-16px -206px;}
.botb-icon.icons-trophiez-trophy_hes_b{width:16px;height:16px;background-position:-32px -206px;}
.botb-icon.icons-trophiez-trophy_hes_g{width:16px;height:16px;background-position:-48px -206px;}
.botb-icon.icons-trophiez-trophy_hes_s{width:16px;height:16px;background-position:-64px -206px;}
.botb-icon.icons-trophiez-trophy_html5_b{width:16px;height:16px;background-position:-80px -206px;}
.botb-icon.icons-trophiez-trophy_html5_g{width:16px;height:16px;background-position:-96px -206px;}
.botb-icon.icons-trophiez-trophy_html5_s{width:16px;height:16px;background-position:-112px -206px;}
.botb-icon.icons-trophiez-trophy_mariopaint_b{width:16px;height:16px;background-position:-128px -206px;}
.botb-icon.icons-trophiez-trophy_mariopaint_g{width:16px;height:16px;background-position:-144px -206px;}
.botb-icon.icons-trophiez-trophy_mariopaint_s{width:16px;height:16px;background-position:-160px -206px;}
.botb-icon.icons-trophiez-trophy_mariopantse_b{width:16px;height:16px;background-position:-176px -206px;}
.botb-icon.icons-trophiez-trophy_mariopantse_g{width:16px;height:16px;background-position:-192px -206px;}
.botb-icon.icons-trophiez-trophy_mariopantse_s{width:16px;height:16px;background-position:-208px -206px;}
.botb-icon.icons-trophiez-trophy_midi_b{width:16px;height:16px;background-position:-224px -206px;}
.botb-icon.icons-trophiez-trophy_midi_g{width:16px;height:16px;background-position:-240px -206px;}
.botb-icon.icons-trophiez-trophy_midi_s{width:16px;height:16px;background-position:-0px -222px;}
.botb-icon.icons-trophiez-trophy_mixbattle_art_b{width:16px;height:16px;background-position:-16px -222px;}
.botb-icon.icons-trophiez-trophy_mixbattle_art_g{width:16px;height:16px;background-position:-32px -222px;}
.botb-icon.icons-trophiez-trophy_mixbattle_art_s{width:16px;height:16px;background-position:-48px -222px;}
.botb-icon.icons-trophiez-trophy_mod12k_b{width:16px;height:16px;background-position:-64px -222px;}
.botb-icon.icons-trophiez-trophy_mod12k_g{width:16px;height:16px;background-position:-80px -222px;}
.botb-icon.icons-trophiez-trophy_mod12k_s{width:16px;height:16px;background-position:-96px -222px;}
.botb-icon.icons-trophiez-trophy_mod16k_b{width:16px;height:16px;background-position:-112px -222px;}
.botb-icon.icons-trophiez-trophy_mod16k_g{width:16px;height:16px;background-position:-128px -222px;}
.botb-icon.icons-trophiez-trophy_mod16k_s{width:16px;height:16px;background-position:-144px -222px;}
.botb-icon.icons-trophiez-trophy_mod24k_b{width:16px;height:16px;background-position:-160px -222px;}
.botb-icon.icons-trophiez-trophy_mod24k_g{width:16px;height:16px;background-position:-176px -222px;}
.botb-icon.icons-trophiez-trophy_mod24k_s{width:16px;height:16px;background-position:-192px -222px;}
.botb-icon.icons-trophiez-trophy_mod32k_b{width:16px;height:16px;background-position:-208px -222px;}
.botb-icon.icons-trophiez-trophy_mod32k_g{width:16px;height:16px;background-position:-224px -222px;}
.botb-icon.icons-trophiez-trophy_mod32k_s{width:16px;height:16px;background-position:-240px -222px;}
.botb-icon.icons-trophiez-trophy_mod48k_b{width:16px;height:16px;background-position:-0px -238px;}
.botb-icon.icons-trophiez-trophy_mod48k_g{width:16px;height:16px;background-position:-16px -238px;}
.botb-icon.icons-trophiez-trophy_mod48k_s{width:16px;height:16px;background-position:-32px -238px;}
.botb-icon.icons-trophiez-trophy_mod64k_b{width:16px;height:16px;background-position:-48px -238px;}
.botb-icon.icons-trophiez-trophy_mod64k_g{width:16px;height:16px;background-position:-64px -238px;}
.botb-icon.icons-trophiez-trophy_mod64k_s{width:16px;height:16px;background-position:-80px -238px;}
.botb-icon.icons-trophiez-trophy_mod08k_g{width:16px;height:16px;background-position:-96px -238px;}
.botb-icon.icons-trophiez-trophy_mod08k_s{width:16px;height:16px;background-position:-112px -238px;}
.botb-icon.icons-trophiez-trophy_pd_b{width:16px;height:16px;background-position:-128px -238px;}
.botb-icon.icons-trophiez-trophy_nsf_b{width:16px;height:16px;background-position:-144px -238px;}
.botb-icon.icons-trophiez-trophy_nsf_g{width:16px;height:16px;background-position:-160px -238px;}
.botb-icon.icons-trophiez-trophy_nsf_s{width:16px;height:16px;background-position:-176px -238px;}
.botb-icon.icons-trophiez-trophy_nsfplus_b{width:16px;height:16px;background-position:-192px -238px;}
.botb-icon.icons-trophiez-trophy_nsfplus_g{width:16px;height:16px;background-position:-208px -238px;}
.botb-icon.icons-trophiez-trophy_nsfplus_s{width:16px;height:16px;background-position:-224px -238px;}
.botb-icon.icons-trophiez-trophy_ohc_b{width:16px;height:16px;background-position:-240px -238px;}
.botb-icon.icons-trophiez-trophy_ohc_g{width:16px;height:16px;background-position:-0px -254px;}
.botb-icon.icons-trophiez-trophy_ohc_s{width:16px;height:16px;background-position:-16px -254px;}
.botb-icon.icons-trophiez-trophy_panda_b{width:16px;height:16px;background-position:-32px -254px;}
.botb-icon.icons-trophiez-trophy_panda_g{width:16px;height:16px;background-position:-48px -254px;}
.botb-icon.icons-trophiez-trophy_panda_s{width:16px;height:16px;background-position:-64px -254px;}
.botb-icon.icons-trophiez-trophy_pixel_b{width:16px;height:16px;background-position:-80px -254px;}
.botb-icon.icons-trophiez-trophy_pixel_g{width:16px;height:16px;background-position:-96px -254px;}
.botb-icon.icons-trophiez-trophy_pixel_s{width:16px;height:16px;background-position:-112px -254px;}
.botb-icon.icons-trophiez-trophy_pxtone_b{width:16px;height:16px;background-position:-128px -254px;}
.botb-icon.icons-trophiez-trophy_pxtone_g{width:16px;height:16px;background-position:-144px -254px;}
.botb-icon.icons-trophiez-trophy_pxtone_s{width:16px;height:16px;background-position:-160px -254px;}
.botb-icon.icons-trophiez-trophy_remix_b{width:16px;height:16px;background-position:-176px -254px;}
.botb-icon.icons-trophiez-trophy_remix_g{width:16px;height:16px;background-position:-192px -254px;}
.botb-icon.icons-trophiez-trophy_remix_s{width:16px;height:16px;background-position:-208px -254px;}
.botb-icon.icons-trophiez-trophy_renoise_b{width:16px;height:16px;background-position:-224px -254px;}
.botb-icon.icons-trophiez-trophy_renoise_g{width:16px;height:16px;background-position:-240px -254px;}
.botb-icon.icons-trophiez-trophy_renoise_s{width:16px;height:16px;background-position:-0px -270px;}
.botb-icon.icons-trophiez-trophy_s3xmodit_b{width:16px;height:16px;background-position:-16px -270px;}
.botb-icon.icons-trophiez-trophy_s3xmodit_g{width:16px;height:16px;background-position:-32px -270px;}
.botb-icon.icons-trophiez-trophy_s3xmodit_s{width:16px;height:16px;background-position:-48px -270px;}
.botb-icon.icons-trophiez-trophy_sap_b{width:16px;height:16px;background-position:-64px -270px;}
.botb-icon.icons-trophiez-trophy_sap_g{width:16px;height:16px;background-position:-80px -270px;}
.botb-icon.icons-trophiez-trophy_sap_s{width:16px;height:16px;background-position:-96px -270px;}
.botb-icon.icons-trophiez-trophy_sapx2_b{width:16px;height:16px;background-position:-112px -270px;}
.botb-icon.icons-trophiez-trophy_sapx2_g{width:16px;height:16px;background-position:-128px -270px;}
.botb-icon.icons-trophiez-trophy_sapx2_s{width:16px;height:16px;background-position:-144px -270px;}
.botb-icon.icons-trophiez-trophy_sgen_b{width:16px;height:16px;background-position:-160px -270px;}
.botb-icon.icons-trophiez-trophy_sgen_g{width:16px;height:16px;background-position:-176px -270px;}
.botb-icon.icons-trophiez-trophy_sgen_s{width:16px;height:16px;background-position:-192px -270px;}
.botb-icon.icons-trophiez-trophy_sid_b{width:15px;height:15px;background-position:-208px -270px;}
.botb-icon.icons-trophiez-trophy_sid_g{width:15px;height:15px;background-position:-223px -270px;}
.botb-icon.icons-trophiez-trophy_sid_s{width:15px;height:15px;background-position:-238px -270px;}
.botb-icon.icons-trophiez-trophy_sms_b{width:16px;height:16px;background-position:-0px -286px;}
.botb-icon.icons-trophiez-trophy_sms_g{width:16px;height:16px;background-position:-16px -286px;}
.botb-icon.icons-trophiez-trophy_sms_s{width:16px;height:16px;background-position:-32px -286px;}
.botb-icon.icons-trophiez-trophy_spc_b{width:16px;height:16px;background-position:-48px -286px;}
.botb-icon.icons-trophiez-trophy_spc_g{width:16px;height:16px;background-position:-64px -286px;}
.botb-icon.icons-trophiez-trophy_spc_s{width:16px;height:16px;background-position:-80px -286px;}
.botb-icon.icons-trophiez-trophy_sunvox_b{width:16px;height:16px;background-position:-96px -286px;}
.botb-icon.icons-trophiez-trophy_sunvox_g{width:16px;height:16px;background-position:-112px -286px;}
.botb-icon.icons-trophiez-trophy_sunvox_s{width:16px;height:16px;background-position:-128px -286px;}
.botb-icon.icons-trophiez-trophy_tia_b{width:16px;height:16px;background-position:-144px -286px;}
.botb-icon.icons-trophiez-trophy_tia_g{width:16px;height:16px;background-position:-160px -286px;}
.botb-icon.icons-trophiez-trophy_tia_s{width:16px;height:16px;background-position:-176px -286px;}
.botb-icon.icons-trophiez-trophy_vic20_b{width:16px;height:16px;background-position:-192px -286px;}
.botb-icon.icons-trophiez-trophy_vic20_g{width:16px;height:16px;background-position:-208px -286px;}
.botb-icon.icons-trophiez-trophy_vic20_s{width:16px;height:16px;background-position:-224px -286px;}
.botb-icon.icons-trophiez-trophy_wildcard_b{width:16px;height:16px;background-position:-240px -286px;}
.botb-icon.icons-trophiez-trophy_wildcard_g{width:16px;height:16px;background-position:-0px -302px;}
.botb-icon.icons-trophiez-trophy_wildcard_s{width:16px;height:16px;background-position:-16px -302px;}
.botb-icon.icons-trophiez-trophy_wildchip_b{width:16px;height:16px;background-position:-32px -302px;}
.botb-icon.icons-trophiez-trophy_wildchip_g{width:16px;height:16px;background-position:-48px -302px;}
.botb-icon.icons-trophiez-trophy_wildchip_s{width:16px;height:16px;background-position:-64px -302px;}
.botb-icon.icons-trophiez-trophy_zxbeep_b{width:16px;height:16px;background-position:-80px -302px;}
.botb-icon.icons-trophiez-trophy_zxbeep_g{width:16px;height:16px;background-position:-96px -302px;}
.botb-icon.icons-trophiez-trophy_zxbeep_s{width:16px;height:16px;background-position:-112px -302px;}
.botb-icon.icons-trophiez-trophy_mptm_b{width:16px;height:16px;background-position:-128px -302px;}
.botb-icon.icons-trophiez-trophy_mptm_s{width:16px;height:16px;background-position:-144px -302px;}
.botb-icon.icons-trophiez-trophy_mptm_g{width:16px;height:16px;background-position:-160px -302px;}
.botb-icon.icons-trophiez-trophy_bytebeat_s{width:16px;height:16px;background-position:-176px -302px;}
.botb-icon.icons-trophiez-trophy_bytebeat_b{width:16px;height:16px;background-position:-192px -302px;}
.botb-icon.icons-trophiez-trophy_bytebeat_g{width:16px;height:16px;background-position:-208px -302px;}
.botb-icon.icons-trophiez-trophy_ascii_b{width:16px;height:16px;background-position:-224px -302px;}
.botb-icon.icons-trophiez-trophy_ascii_g{width:16px;height:16px;background-position:-240px -302px;}
.botb-icon.icons-trophiez-trophy_ascii_s{width:16px;height:16px;background-position:-0px -318px;}
.botb-icon.icons-trophiez-trophy_doom_b{width:16px;height:16px;background-position:-16px -318px;}
.botb-icon.icons-trophiez-trophy_doom_g{width:16px;height:16px;background-position:-32px -318px;}
.botb-icon.icons-trophiez-trophy_doom_s{width:16px;height:16px;background-position:-48px -318px;}
.botb-icon.icons-trophiez-trophy_fsound_g{width:16px;height:16px;background-position:-64px -318px;}
.botb-icon.icons-trophiez-trophy_fsound_b{width:16px;height:16px;background-position:-80px -318px;}
.botb-icon.icons-trophiez-trophy_fsound_s{width:16px;height:16px;background-position:-96px -318px;}
.botb-icon.icons-trophiez-trophy_html_b{width:16px;height:16px;background-position:-112px -318px;}
.botb-icon.icons-trophiez-trophy_html_g{width:16px;height:16px;background-position:-128px -318px;}
.botb-icon.icons-trophiez-trophy_html_s{width:16px;height:16px;background-position:-144px -318px;}
.botb-icon.icons-trophiez-trophy_ntrq_b{width:16px;height:16px;background-position:-160px -318px;}
.botb-icon.icons-trophiez-trophy_ntrq_g{width:16px;height:16px;background-position:-176px -318px;}
.botb-icon.icons-trophiez-trophy_ntrq_s{width:16px;height:16px;background-position:-192px -318px;}
.botb-icon.icons-trophiez-trophy_sample_b{width:16px;height:16px;background-position:-208px -318px;}
.botb-icon.icons-trophiez-trophy_sample_g{width:16px;height:16px;background-position:-224px -318px;}
.botb-icon.icons-trophiez-trophy_sample_s{width:16px;height:16px;background-position:-240px -318px;}
.botb-icon.icons-trophiez-trophy_svg_s{width:16px;height:16px;background-position:-0px -334px;}
.botb-icon.icons-trophiez-trophy_svg_b{width:16px;height:16px;background-position:-16px -334px;}
.botb-icon.icons-trophiez-trophy_svg_g{width:16px;height:16px;background-position:-32px -334px;}
.botb-icon.icons-trophiez-trophy_ansi_b{width:16px;height:16px;background-position:-48px -334px;}
.botb-icon.icons-trophiez-trophy_ansi_g{width:16px;height:16px;background-position:-64px -334px;}
.botb-icon.icons-trophiez-trophy_ansi_s{width:16px;height:16px;background-position:-80px -334px;}
.botb-icon.icons-trophiez-trophy_bytebeat1k_b{width:16px;height:16px;background-position:-96px -334px;}
.botb-icon.icons-trophiez-trophy_bytebeat1k_g{width:16px;height:16px;background-position:-112px -334px;}
.botb-icon.icons-trophiez-trophy_bytebeat1k_s{width:16px;height:16px;background-position:-128px -334px;}
.botb-icon.icons-trophiez-trophy_nsf_classic_b{width:16px;height:16px;background-position:-144px -334px;}
.botb-icon.icons-trophiez-trophy_nsf_classic_g{width:16px;height:16px;background-position:-160px -334px;}
.botb-icon.icons-trophiez-trophy_nsf_classic_s{width:16px;height:16px;background-position:-176px -334px;}
.botb-icon.icons-trophiez-trophy_lgpt_s{width:16px;height:15px;background-position:-192px -334px;}
.botb-icon.icons-trophiez-trophy_lgpt_g{width:16px;height:15px;background-position:-208px -334px;}
.botb-icon.icons-trophiez-trophy_lgpt_b{width:16px;height:15px;background-position:-224px -334px;}
.botb-icon.icons-trophiez-trophy_0cc_b{width:16px;height:16px;background-position:-240px -334px;}
.botb-icon.icons-trophiez-trophy_0cc_g{width:16px;height:16px;background-position:-0px -350px;}
.botb-icon.icons-trophiez-trophy_0cc_s{width:16px;height:16px;background-position:-16px -350px;}
.botb-icon.icons-trophiez-trophy_pc-x801_g{width:16px;height:16px;background-position:-32px -350px;}
.botb-icon.icons-trophiez-trophy_pc-x801_s{width:16px;height:16px;background-position:-48px -350px;}
.botb-icon.icons-trophiez-trophy_pc-x801_b{width:16px;height:16px;background-position:-64px -350px;}
.botb-icon.icons-trophiez-trophy_mt32_g{width:16px;height:16px;background-position:-80px -350px;}
.botb-icon.icons-trophiez-trophy_boom_b{width:16px;height:16px;background-position:-96px -350px;}
.botb-icon.icons-trophiez-trophy_boom_g{width:16px;height:16px;background-position:-112px -350px;}
.botb-icon.icons-trophiez-trophy_boom_s{width:16px;height:16px;background-position:-128px -350px;}
.botb-icon.icons-trophiez-trophy_ted_b{width:16px;height:16px;background-position:-144px -350px;}
.botb-icon.icons-trophiez-trophy_ted_g{width:16px;height:16px;background-position:-160px -350px;}
.botb-icon.icons-trophiez-trophy_ted_s{width:16px;height:16px;background-position:-176px -350px;}
.botb-icon.icons-trophiez-trophy_mt32_s{width:16px;height:16px;background-position:-192px -350px;}
.botb-icon.icons-trophiez-trophy_mt32_b{width:16px;height:16px;background-position:-208px -350px;}
.botb-icon.icons-trophiez-trophy_snibbetracker_g{width:16px;height:16px;background-position:-224px -350px;}
.botb-icon.icons-trophiez-trophy_snibbetracker_s{width:16px;height:16px;background-position:-240px -350px;}
.botb-icon.icons-trophiez-trophy_snibbetracker_b{width:16px;height:16px;background-position:-0px -366px;}
.botb-icon.icons-trophiez-trophy_photomash_g{width:16px;height:16px;background-position:-16px -366px;}
.botb-icon.icons-trophiez-trophy_tic80_b{width:16px;height:16px;background-position:-32px -366px;}
.botb-icon.icons-trophiez-trophy_tic80_s{width:16px;height:16px;background-position:-48px -366px;}
.botb-icon.icons-trophiez-trophy_klystrack_b{width:16px;height:16px;background-position:-64px -366px;}
.botb-icon.icons-trophiez-trophy_klystrack_g{width:16px;height:16px;background-position:-80px -366px;}
.botb-icon.icons-trophiez-trophy_klystrack_s{width:16px;height:16px;background-position:-96px -366px;}
.botb-icon.icons-trophiez-trophy_draw_g{width:16px;height:16px;background-position:-112px -366px;}
.botb-icon.icons-trophiez-trophy_draw_b{width:16px;height:16px;background-position:-128px -366px;}
.botb-icon.icons-trophiez-trophy_draw_s{width:16px;height:16px;background-position:-144px -366px;}
.botb-icon.icons-trophiez-trophy_photomash_b{width:16px;height:16px;background-position:-160px -366px;}
.botb-icon.icons-trophiez-trophy_photomash_s{width:16px;height:16px;background-position:-176px -366px;}
.botb-icon.icons-trophiez-trophy_tic80_g{width:16px;height:16px;background-position:-192px -366px;}
.botb-icon.icons-trophiez-trophy_vcv_rack_b{width:16px;height:16px;background-position:-208px -366px;}
.botb-icon.icons-trophiez-trophy_vcv_rack_g{width:16px;height:16px;background-position:-224px -366px;}
.botb-icon.icons-trophiez-trophy_vcv_rack_s{width:16px;height:16px;background-position:-240px -366px;}
.botb-icon.icons-trophiez-trophy_mod04k_b{width:16px;height:16px;background-position:-0px -382px;}
.botb-icon.icons-trophiez-trophy_mod04k_g{width:16px;height:16px;background-position:-16px -382px;}
.botb-icon.icons-trophiez-trophy_mod04k_s{width:16px;height:16px;background-position:-32px -382px;}
.botb-icon.icons-trophiez-trophy_mod08k_b{width:16px;height:16px;background-position:-48px -382px;}
.botb-icon.icons-trophiez-trophy_pd_g{width:16px;height:16px;background-position:-64px -382px;}
.botb-icon.icons-trophiez-trophy_pd_s{width:16px;height:16px;background-position:-80px -382px;}
.botb-icon.icons-unearned-adlib{width:16px;height:16px;background-position:-96px -382px;}
.botb-icon.icons-unearned-ahx{width:16px;height:16px;background-position:-112px -382px;}
.botb-icon.icons-unearned-allgear{width:16px;height:16px;background-position:-128px -382px;}
.botb-icon.icons-unearned-amigamod{width:16px;height:16px;background-position:-144px -382px;}
.botb-icon.icons-unearned-ascii{width:16px;height:16px;background-position:-160px -382px;}
.botb-icon.icons-unearned-aym{width:16px;height:16px;background-position:-176px -382px;}
.botb-icon.icons-unearned-channelf{width:16px;height:16px;background-position:-192px -382px;}
.botb-icon.icons-unearned-chipbattle_art{width:16px;height:16px;background-position:-208px -382px;}
.botb-icon.icons-unearned-deflemask{width:16px;height:16px;background-position:-224px -382px;}
.botb-icon.icons-unearned-doom{width:16px;height:16px;background-position:-240px -382px;}
.botb-icon.icons-unearned-famitracker{width:16px;height:16px;background-position:-0px -398px;}
.botb-icon.icons-unearned-fsound{width:16px;height:16px;background-position:-16px -398px;}
.botb-icon.icons-unearned-gameboy{width:16px;height:16px;background-position:-32px -398px;}
.botb-icon.icons-unearned-hes{width:16px;height:16px;background-position:-48px -398px;}
.botb-icon.icons-unearned-html{width:16px;height:16px;background-position:-64px -398px;}
.botb-icon.icons-unearned-html5{width:16px;height:16px;background-position:-80px -398px;}
.botb-icon.icons-unearned-lgpt{width:16px;height:16px;background-position:-96px -398px;}
.botb-icon.icons-unearned-mariopaint{width:16px;height:16px;background-position:-112px -398px;}
.botb-icon.icons-unearned-mariopantse{width:16px;height:16px;background-position:-128px -398px;}
.botb-icon.icons-unearned-midi{width:16px;height:16px;background-position:-144px -398px;}
.botb-icon.icons-unearned-mixbattle_art{width:16px;height:16px;background-position:-160px -398px;}
.botb-icon.icons-unearned-mod12k{width:16px;height:16px;background-position:-176px -398px;}
.botb-icon.icons-unearned-mod16k{width:16px;height:16px;background-position:-192px -398px;}
.botb-icon.icons-unearned-mod24k{width:16px;height:16px;background-position:-208px -398px;}
.botb-icon.icons-unearned-mod32k{width:16px;height:16px;background-position:-224px -398px;}
.botb-icon.icons-unearned-mod48k{width:16px;height:16px;background-position:-240px -398px;}
.botb-icon.icons-unearned-mod64k{width:16px;height:16px;background-position:-0px -414px;}
.botb-icon.icons-unearned-mp3{width:16px;height:16px;background-position:-16px -414px;}
.botb-icon.icons-unearned-nsf{width:16px;height:16px;background-position:-32px -414px;}
.botb-icon.icons-unearned-nsfplus{width:16px;height:16px;background-position:-48px -414px;}
.botb-icon.icons-unearned-ntrq{width:16px;height:16px;background-position:-64px -414px;}
.botb-icon.icons-unearned-panda{width:16px;height:16px;background-position:-80px -414px;}
.botb-icon.icons-unearned-pixel{width:16px;height:16px;background-position:-96px -414px;}
.botb-icon.icons-unearned-pixel_old{width:16px;height:16px;background-position:-112px -414px;}
.botb-icon.icons-unearned-remix{width:16px;height:16px;background-position:-128px -414px;}
.botb-icon.icons-unearned-renoise{width:16px;height:16px;background-position:-144px -414px;}
.botb-icon.icons-unearned-s3xmodit{width:16px;height:16px;background-position:-160px -414px;}
.botb-icon.icons-unearned-sample{width:16px;height:16px;background-position:-176px -414px;}
.botb-icon.icons-unearned-sap{width:16px;height:16px;background-position:-192px -414px;}
.botb-icon.icons-unearned-sapx2{width:16px;height:16px;background-position:-208px -414px;}
.botb-icon.icons-unearned-sgen{width:16px;height:16px;background-position:-224px -414px;}
.botb-icon.icons-unearned-sid{width:16px;height:16px;background-position:-240px -414px;}
.botb-icon.icons-unearned-sms{width:16px;height:16px;background-position:-0px -430px;}
.botb-icon.icons-unearned-spc{width:16px;height:16px;background-position:-16px -430px;}
.botb-icon.icons-unearned-sunvox{width:16px;height:16px;background-position:-32px -430px;}
.botb-icon.icons-unearned-svg{width:16px;height:16px;background-position:-48px -430px;}
.botb-icon.icons-unearned-tia{width:16px;height:16px;background-position:-64px -430px;}
.botb-icon.icons-unearned-vic20{width:16px;height:16px;background-position:-80px -430px;}
.botb-icon.icons-unearned-wildchip{width:16px;height:16px;background-position:-96px -430px;}
.botb-icon.icons-unearned-zxbeep{width:16px;height:16px;background-position:-112px -430px;}
.botb-icon.icons-unearned-mptm{width:16px;height:16px;background-position:-128px -430px;}
.botb-icon.icons-unearned-bytebeat{width:16px;height:16px;background-position:-144px -430px;}
.botb-icon.icons-unearned-pxtone{width:16px;height:16px;background-position:-160px -430px;}
.botb-icon.icons-unearned-ansi{width:16px;height:16px;background-position:-176px -430px;}
.botb-icon.icons-unearned-bytebeat1k{width:16px;height:16px;background-position:-192px -430px;}
.botb-icon.icons-unearned-nsf_classic{width:16px;height:16px;background-position:-208px -430px;}
.botb-icon.icons-unearned-pc-x801{width:16px;height:16px;background-position:-224px -430px;}
.botb-icon.icons-unearned-ted{width:16px;height:16px;background-position:-240px -430px;}
.botb-icon.icons-unearned-boom{width:16px;height:16px;background-position:-0px -446px;}
.botb-icon.icons-unearned-mt32{width:16px;height:16px;background-position:-16px -446px;}
.botb-icon.icons-unearned-snibbetracker{width:16px;height:16px;background-position:-32px -446px;}
.botb-icon.icons-unearned-klystrack{width:16px;height:16px;background-position:-48px -446px;}
.botb-icon.icons-unearned-vcv_rack{width:16px;height:16px;background-position:-64px -446px;}
.botb-icon.icons-unearned-0cc{width:16px;height:16px;background-position:-80px -446px;}
.botb-icon.icons-unearned-draw{width:16px;height:16px;background-position:-96px -446px;}
.botb-icon.icons-unearned-photomash{width:16px;height:16px;background-position:-112px -446px;}
.botb-icon.icons-unearned-tic80{width:16px;height:16px;background-position:-128px -446px;}
.botb-icon.icons-unearned-mod04k{width:16px;height:16px;background-position:-144px -446px;}
.botb-icon.icons-unearned-mod08k{width:16px;height:16px;background-position:-160px -446px;}
.botb-icon.icons-unearned-pd{width:16px;height:16px;background-position:-176px -446px;}
.botb-icon.icons-upMP3{width:16px;height:16px;background-position:-192px -446px;}
.botb-icon.icons-updates{width:15px;height:15px;background-position:-208px -446px;}
.botb-icon.icons-user_edit{width:16px;height:16px;background-position:-223px -446px;}
.botb-icon.icons-votes{width:9px;height:9px;background-position:-239px -446px;}
.botb-icon.icons-wrench{width:16px;height:16px;background-position:-0px -462px;}
.botb-icon.icons-zip{width:16px;height:16px;background-position:-16px -462px;}
.botb-icon.icons-zombi{width:16px;height:16px;background-position:-32px -462px;}
.botb-icon.icons-outbound{width:16px;height:16px;background-position:-48px -462px;}
.botb-icon.icons-flag-ad{width:18px;height:12px;background-position:-64px -462px;}
.botb-icon.icons-flag-ac{width:18px;height:12px;background-position:-82px -462px;}
.botb-icon.icons-flag-ae{width:18px;height:12px;background-position:-100px -462px;}
.botb-icon.icons-flag-af{width:18px;height:12px;background-position:-118px -462px;}
.botb-icon.icons-flag-ag{width:18px;height:12px;background-position:-136px -462px;}
.botb-icon.icons-flag-ai{width:18px;height:12px;background-position:-154px -462px;}
.botb-icon.icons-flag-al{width:18px;height:12px;background-position:-172px -462px;}
.botb-icon.icons-flag-am{width:18px;height:12px;background-position:-190px -462px;}
.botb-icon.icons-flag-an{width:18px;height:12px;background-position:-208px -462px;}
.botb-icon.icons-flag-aq{width:18px;height:12px;background-position:-226px -462px;}
.botb-icon.icons-flag-ao{width:18px;height:12px;background-position:-0px -478px;}
.botb-icon.icons-flag-ar{width:18px;height:12px;background-position:-18px -478px;}
.botb-icon.icons-flag-as{width:18px;height:12px;background-position:-36px -478px;}
.botb-icon.icons-flag-at{width:18px;height:12px;background-position:-54px -478px;}
.botb-icon.icons-flag-au{width:18px;height:12px;background-position:-72px -478px;}
.botb-icon.icons-flag-ax{width:18px;height:12px;background-position:-90px -478px;}
.botb-icon.icons-flag-aw{width:18px;height:12px;background-position:-108px -478px;}
.botb-icon.icons-flag-az{width:18px;height:12px;background-position:-126px -478px;}
.botb-icon.icons-flag-ba{width:18px;height:12px;background-position:-144px -478px;}
.botb-icon.icons-flag-bb{width:18px;height:12px;background-position:-162px -478px;}
.botb-icon.icons-flag-bd{width:18px;height:12px;background-position:-180px -478px;}
.botb-icon.icons-flag-be{width:18px;height:12px;background-position:-198px -478px;}
.botb-icon.icons-flag-bf{width:18px;height:12px;background-position:-216px -478px;}
.botb-icon.icons-flag-bg{width:18px;height:12px;background-position:-234px -478px;}
.botb-icon.icons-flag-bh{width:18px;height:12px;background-position:-0px -490px;}
.botb-icon.icons-flag-bi{width:18px;height:12px;background-position:-18px -490px;}
.botb-icon.icons-flag-bj{width:18px;height:12px;background-position:-36px -490px;}
.botb-icon.icons-flag-bl{width:18px;height:12px;background-position:-54px -490px;}
.botb-icon.icons-flag-bm{width:18px;height:12px;background-position:-72px -490px;}
.botb-icon.icons-flag-bn{width:18px;height:12px;background-position:-90px -490px;}
.botb-icon.icons-flag-bo{width:18px;height:12px;background-position:-108px -490px;}
.botb-icon.icons-flag-bq{width:18px;height:12px;background-position:-126px -490px;}
.botb-icon.icons-flag-br{width:18px;height:12px;background-position:-144px -490px;}
.botb-icon.icons-flag-bs{width:18px;height:12px;background-position:-162px -490px;}
.botb-icon.icons-flag-bt{width:18px;height:12px;background-position:-180px -490px;}
.botb-icon.icons-flag-bv{width:18px;height:12px;background-position:-198px -490px;}
.botb-icon.icons-flag-bw{width:18px;height:12px;background-position:-216px -490px;}
.botb-icon.icons-flag-by{width:18px;height:12px;background-position:-234px -490px;}
.botb-icon.icons-flag-bz{width:18px;height:12px;background-position:-0px -502px;}
.botb-icon.icons-flag-ca{width:18px;height:12px;background-position:-18px -502px;}
.botb-icon.icons-flag-cat{width:18px;height:12px;background-position:-36px -502px;}
.botb-icon.icons-flag-cc{width:18px;height:12px;background-position:-54px -502px;}
.botb-icon.icons-flag-cd{width:18px;height:12px;background-position:-72px -502px;}
.botb-icon.icons-flag-cf{width:18px;height:12px;background-position:-90px -502px;}
.botb-icon.icons-flag-cg{width:18px;height:12px;background-position:-108px -502px;}
.botb-icon.icons-flag-ch{width:12px;height:12px;background-position:-126px -502px;}
.botb-icon.icons-flag-ci{width:18px;height:12px;background-position:-138px -502px;}
.botb-icon.icons-flag-ck{width:18px;height:12px;background-position:-156px -502px;}
.botb-icon.icons-flag-cl{width:18px;height:12px;background-position:-174px -502px;}
.botb-icon.icons-flag-cm{width:18px;height:12px;background-position:-192px -502px;}
.botb-icon.icons-flag-cn{width:18px;height:12px;background-position:-210px -502px;}
.botb-icon.icons-flag-co{width:18px;height:12px;background-position:-228px -502px;}
.botb-icon.icons-flag-cr{width:18px;height:12px;background-position:-0px -514px;}
.botb-icon.icons-flag-cu{width:18px;height:12px;background-position:-18px -514px;}
.botb-icon.icons-flag-cv{width:18px;height:12px;background-position:-36px -514px;}
.botb-icon.icons-flag-cw{width:18px;height:12px;background-position:-54px -514px;}
.botb-icon.icons-flag-cx{width:18px;height:12px;background-position:-72px -514px;}
.botb-icon.icons-flag-cy{width:18px;height:12px;background-position:-90px -514px;}
.botb-icon.icons-flag-cz{width:18px;height:12px;background-position:-108px -514px;}
.botb-icon.icons-flag-de{width:18px;height:12px;background-position:-126px -514px;}
.botb-icon.icons-flag-dj{width:18px;height:12px;background-position:-144px -514px;}
.botb-icon.icons-flag-dk{width:18px;height:12px;background-position:-162px -514px;}
.botb-icon.icons-flag-dm{width:18px;height:12px;background-position:-180px -514px;}
.botb-icon.icons-flag-do{width:18px;height:12px;background-position:-198px -514px;}
.botb-icon.icons-flag-dz{width:18px;height:12px;background-position:-216px -514px;}
.botb-icon.icons-flag-ec{width:18px;height:12px;background-position:-234px -514px;}
.botb-icon.icons-flag-ee{width:18px;height:12px;background-position:-0px -526px;}
.botb-icon.icons-flag-eg{width:18px;height:12px;background-position:-18px -526px;}
.botb-icon.icons-flag-eh{width:18px;height:12px;background-position:-36px -526px;}
.botb-icon.icons-flag-er{width:18px;height:12px;background-position:-54px -526px;}
.botb-icon.icons-flag-es{width:18px;height:12px;background-position:-72px -526px;}
.botb-icon.icons-flag-et{width:18px;height:12px;background-position:-90px -526px;}
.botb-icon.icons-flag-fi{width:18px;height:12px;background-position:-108px -526px;}
.botb-icon.icons-flag-eu{width:18px;height:12px;background-position:-126px -526px;}
.botb-icon.icons-flag-fk{width:18px;height:12px;background-position:-144px -526px;}
.botb-icon.icons-flag-fj{width:18px;height:12px;background-position:-162px -526px;}
.botb-icon.icons-flag-fm{width:18px;height:12px;background-position:-180px -526px;}
.botb-icon.icons-flag-fo{width:18px;height:12px;background-position:-198px -526px;}
.botb-icon.icons-flag-fr{width:18px;height:12px;background-position:-216px -526px;}
.botb-icon.icons-flag-ga{width:18px;height:12px;background-position:-234px -526px;}
.botb-icon.icons-flag-gd{width:18px;height:12px;background-position:-0px -538px;}
.botb-icon.icons-flag-ge{width:18px;height:12px;background-position:-18px -538px;}
.botb-icon.icons-flag-gf{width:18px;height:12px;background-position:-36px -538px;}
.botb-icon.icons-flag-gg{width:18px;height:12px;background-position:-54px -538px;}
.botb-icon.icons-flag-gh{width:18px;height:12px;background-position:-72px -538px;}
.botb-icon.icons-flag-gi{width:18px;height:12px;background-position:-90px -538px;}
.botb-icon.icons-flag-gl{width:18px;height:12px;background-position:-108px -538px;}
.botb-icon.icons-flag-gm{width:18px;height:12px;background-position:-126px -538px;}
.botb-icon.icons-flag-gn{width:18px;height:12px;background-position:-144px -538px;}
.botb-icon.icons-flag-gp{width:18px;height:12px;background-position:-162px -538px;}
.botb-icon.icons-flag-gq{width:18px;height:12px;background-position:-180px -538px;}
.botb-icon.icons-flag-gr{width:18px;height:12px;background-position:-198px -538px;}
.botb-icon.icons-flag-gs{width:18px;height:12px;background-position:-216px -538px;}
.botb-icon.icons-flag-gt{width:18px;height:12px;background-position:-234px -538px;}
.botb-icon.icons-flag-gw{width:18px;height:12px;background-position:-0px -550px;}
.botb-icon.icons-flag-gu{width:18px;height:12px;background-position:-18px -550px;}
.botb-icon.icons-flag-hk{width:18px;height:12px;background-position:-36px -550px;}
.botb-icon.icons-flag-gy{width:18px;height:12px;background-position:-54px -550px;}
.botb-icon.icons-flag-hm{width:18px;height:12px;background-position:-72px -550px;}
.botb-icon.icons-flag-hn{width:18px;height:12px;background-position:-90px -550px;}
.botb-icon.icons-flag-hr{width:18px;height:12px;background-position:-108px -550px;}
.botb-icon.icons-flag-ht{width:18px;height:12px;background-position:-126px -550px;}
.botb-icon.icons-flag-hu{width:18px;height:12px;background-position:-144px -550px;}
.botb-icon.icons-flag-id{width:18px;height:12px;background-position:-162px -550px;}
.botb-icon.icons-flag-ie{width:18px;height:12px;background-position:-180px -550px;}
.botb-icon.icons-flag-il{width:18px;height:12px;background-position:-198px -550px;}
.botb-icon.icons-flag-im{width:18px;height:12px;background-position:-216px -550px;}
.botb-icon.icons-flag-in{width:18px;height:12px;background-position:-234px -550px;}
.botb-icon.icons-flag-io{width:18px;height:12px;background-position:-0px -562px;}
.botb-icon.icons-flag-iq{width:18px;height:12px;background-position:-18px -562px;}
.botb-icon.icons-flag-ir{width:18px;height:12px;background-position:-36px -562px;}
.botb-icon.icons-flag-is{width:18px;height:12px;background-position:-54px -562px;}
.botb-icon.icons-flag-it{width:18px;height:12px;background-position:-72px -562px;}
.botb-icon.icons-flag-je{width:18px;height:12px;background-position:-90px -562px;}
.botb-icon.icons-flag-jm{width:18px;height:12px;background-position:-108px -562px;}
.botb-icon.icons-flag-jo{width:18px;height:12px;background-position:-126px -562px;}
.botb-icon.icons-flag-jp{width:18px;height:12px;background-position:-144px -562px;}
.botb-icon.icons-flag-ke{width:18px;height:12px;background-position:-162px -562px;}
.botb-icon.icons-flag-kg{width:18px;height:12px;background-position:-180px -562px;}
.botb-icon.icons-flag-kh{width:18px;height:12px;background-position:-198px -562px;}
.botb-icon.icons-flag-ki{width:18px;height:12px;background-position:-216px -562px;}
.botb-icon.icons-flag-km{width:18px;height:12px;background-position:-234px -562px;}
.botb-icon.icons-flag-kn{width:18px;height:12px;background-position:-0px -574px;}
.botb-icon.icons-flag-kp{width:18px;height:12px;background-position:-18px -574px;}
.botb-icon.icons-flag-kr{width:18px;height:12px;background-position:-36px -574px;}
.botb-icon.icons-flag-kw{width:18px;height:12px;background-position:-54px -574px;}
.botb-icon.icons-flag-ky{width:18px;height:12px;background-position:-72px -574px;}
.botb-icon.icons-flag-kz{width:18px;height:12px;background-position:-90px -574px;}
.botb-icon.icons-flag-la{width:18px;height:12px;background-position:-108px -574px;}
.botb-icon.icons-flag-lb{width:18px;height:12px;background-position:-126px -574px;}
.botb-icon.icons-flag-li{width:18px;height:12px;background-position:-144px -574px;}
.botb-icon.icons-flag-lc{width:18px;height:12px;background-position:-162px -574px;}
.botb-icon.icons-flag-lk{width:18px;height:12px;background-position:-180px -574px;}
.botb-icon.icons-flag-lr{width:18px;height:12px;background-position:-198px -574px;}
.botb-icon.icons-flag-lt{width:18px;height:12px;background-position:-216px -574px;}
.botb-icon.icons-flag-ls{width:18px;height:12px;background-position:-234px -574px;}
.botb-icon.icons-flag-lu{width:18px;height:12px;background-position:-0px -586px;}
.botb-icon.icons-flag-lv{width:18px;height:12px;background-position:-18px -586px;}
.botb-icon.icons-flag-ly{width:18px;height:12px;background-position:-36px -586px;}
.botb-icon.icons-flag-ma{width:18px;height:12px;background-position:-54px -586px;}
.botb-icon.icons-flag-mc{width:18px;height:12px;background-position:-72px -586px;}
.botb-icon.icons-flag-md{width:18px;height:12px;background-position:-90px -586px;}
.botb-icon.icons-flag-me{width:18px;height:12px;background-position:-108px -586px;}
.botb-icon.icons-flag-mf{width:18px;height:12px;background-position:-126px -586px;}
.botb-icon.icons-flag-mg{width:18px;height:12px;background-position:-144px -586px;}
.botb-icon.icons-flag-mh{width:18px;height:12px;background-position:-162px -586px;}
.botb-icon.icons-flag-mk{width:18px;height:12px;background-position:-180px -586px;}
.botb-icon.icons-flag-ml{width:18px;height:12px;background-position:-198px -586px;}
.botb-icon.icons-flag-mm{width:18px;height:12px;background-position:-216px -586px;}
.botb-icon.icons-flag-mn{width:18px;height:12px;background-position:-234px -586px;}
.botb-icon.icons-flag-mo{width:18px;height:12px;background-position:-0px -598px;}
.botb-icon.icons-flag-mp{width:18px;height:12px;background-position:-18px -598px;}
.botb-icon.icons-flag-mq{width:18px;height:12px;background-position:-36px -598px;}
.botb-icon.icons-flag-mr{width:18px;height:12px;background-position:-54px -598px;}
.botb-icon.icons-flag-ms{width:18px;height:12px;background-position:-72px -598px;}
.botb-icon.icons-flag-mt{width:18px;height:12px;background-position:-90px -598px;}
.botb-icon.icons-flag-mu{width:18px;height:12px;background-position:-108px -598px;}
.botb-icon.icons-flag-mv{width:18px;height:12px;background-position:-126px -598px;}
.botb-icon.icons-flag-mw{width:18px;height:12px;background-position:-144px -598px;}
.botb-icon.icons-flag-mx{width:18px;height:12px;background-position:-162px -598px;}
.botb-icon.icons-flag-my{width:18px;height:12px;background-position:-180px -598px;}
.botb-icon.icons-flag-na{width:18px;height:12px;background-position:-198px -598px;}
.botb-icon.icons-flag-mz{width:18px;height:12px;background-position:-216px -598px;}
.botb-icon.icons-flag-nc{width:18px;height:12px;background-position:-234px -598px;}
.botb-icon.icons-flag-ne{width:18px;height:12px;background-position:-0px -610px;}
.botb-icon.icons-flag-nf{width:18px;height:12px;background-position:-18px -610px;}
.botb-icon.icons-flag-ng{width:18px;height:12px;background-position:-36px -610px;}
.botb-icon.icons-flag-ni{width:18px;height:12px;background-position:-54px -610px;}
.botb-icon.icons-flag-nl{width:18px;height:12px;background-position:-72px -610px;}
.botb-icon.icons-flag-no{width:18px;height:12px;background-position:-90px -610px;}
.botb-icon.icons-flag-np{width:13px;height:12px;background-position:-108px -610px;}
.botb-icon.icons-flag-nr{width:18px;height:12px;background-position:-121px -610px;}
.botb-icon.icons-flag-nu{width:18px;height:12px;background-position:-139px -610px;}
.botb-icon.icons-flag-nz{width:18px;height:12px;background-position:-157px -610px;}
.botb-icon.icons-flag-pa{width:18px;height:12px;background-position:-175px -610px;}
.botb-icon.icons-flag-om{width:18px;height:12px;background-position:-193px -610px;}
.botb-icon.icons-flag-pe{width:18px;height:12px;background-position:-211px -610px;}
.botb-icon.icons-flag-pf{width:18px;height:12px;background-position:-229px -610px;}
.botb-icon.icons-flag-pg{width:18px;height:12px;background-position:-0px -622px;}
.botb-icon.icons-flag-ph{width:18px;height:12px;background-position:-18px -622px;}
.botb-icon.icons-flag-pk{width:18px;height:12px;background-position:-36px -622px;}
.botb-icon.icons-flag-pl{width:18px;height:12px;background-position:-54px -622px;}
.botb-icon.icons-flag-pm{width:18px;height:12px;background-position:-72px -622px;}
.botb-icon.icons-flag-pn{width:18px;height:12px;background-position:-90px -622px;}
.botb-icon.icons-flag-pr{width:18px;height:12px;background-position:-108px -622px;}
.botb-icon.icons-flag-ps{width:18px;height:12px;background-position:-126px -622px;}
.botb-icon.icons-flag-pt{width:18px;height:12px;background-position:-144px -622px;}
.botb-icon.icons-flag-pw{width:18px;height:12px;background-position:-162px -622px;}
.botb-icon.icons-flag-py{width:18px;height:12px;background-position:-180px -622px;}
.botb-icon.icons-flag-qa{width:18px;height:12px;background-position:-198px -622px;}
.botb-icon.icons-flag-re{width:18px;height:12px;background-position:-216px -622px;}
.botb-icon.icons-flag-ro{width:18px;height:12px;background-position:-234px -622px;}
.botb-icon.icons-flag-rs{width:18px;height:12px;background-position:-0px -634px;}
.botb-icon.icons-flag-ru{width:18px;height:12px;background-position:-18px -634px;}
.botb-icon.icons-flag-rw{width:18px;height:12px;background-position:-36px -634px;}
.botb-icon.icons-flag-sa{width:18px;height:12px;background-position:-54px -634px;}
.botb-icon.icons-flag-sb{width:18px;height:12px;background-position:-72px -634px;}
.botb-icon.icons-flag-sc{width:18px;height:12px;background-position:-90px -634px;}
.botb-icon.icons-flag-sd{width:18px;height:12px;background-position:-108px -634px;}
.botb-icon.icons-flag-se{width:18px;height:12px;background-position:-126px -634px;}
.botb-icon.icons-flag-sg{width:18px;height:12px;background-position:-144px -634px;}
.botb-icon.icons-flag-sh{width:18px;height:12px;background-position:-162px -634px;}
.botb-icon.icons-flag-si{width:18px;height:12px;background-position:-180px -634px;}
.botb-icon.icons-flag-sj{width:18px;height:12px;background-position:-198px -634px;}
.botb-icon.icons-flag-sk{width:18px;height:12px;background-position:-216px -634px;}
.botb-icon.icons-flag-sm{width:18px;height:12px;background-position:-234px -634px;}
.botb-icon.icons-flag-sl{width:18px;height:12px;background-position:-0px -646px;}
.botb-icon.icons-flag-sn{width:18px;height:12px;background-position:-18px -646px;}
.botb-icon.icons-flag-so{width:18px;height:12px;background-position:-36px -646px;}
.botb-icon.icons-flag-sr{width:18px;height:12px;background-position:-54px -646px;}
.botb-icon.icons-flag-ss{width:18px;height:12px;background-position:-72px -646px;}
.botb-icon.icons-flag-st{width:18px;height:12px;background-position:-90px -646px;}
.botb-icon.icons-flag-sv{width:18px;height:12px;background-position:-108px -646px;}
.botb-icon.icons-flag-sx{width:18px;height:12px;background-position:-126px -646px;}
.botb-icon.icons-flag-sy{width:18px;height:12px;background-position:-144px -646px;}
.botb-icon.icons-flag-sz{width:18px;height:12px;background-position:-162px -646px;}
.botb-icon.icons-flag-tc{width:18px;height:12px;background-position:-180px -646px;}
.botb-icon.icons-flag-td{width:18px;height:12px;background-position:-198px -646px;}
.botb-icon.icons-flag-tf{width:18px;height:12px;background-position:-216px -646px;}
.botb-icon.icons-flag-tg{width:18px;height:12px;background-position:-234px -646px;}
.botb-icon.icons-flag-th{width:18px;height:12px;background-position:-0px -658px;}
.botb-icon.icons-flag-tj{width:18px;height:12px;background-position:-18px -658px;}
.botb-icon.icons-flag-tk{width:18px;height:12px;background-position:-36px -658px;}
.botb-icon.icons-flag-tl{width:18px;height:12px;background-position:-54px -658px;}
.botb-icon.icons-flag-tm{width:18px;height:12px;background-position:-72px -658px;}
.botb-icon.icons-flag-tn{width:18px;height:12px;background-position:-90px -658px;}
.botb-icon.icons-flag-to{width:18px;height:12px;background-position:-108px -658px;}
.botb-icon.icons-flag-tr{width:18px;height:12px;background-position:-126px -658px;}
.botb-icon.icons-flag-tt{width:18px;height:12px;background-position:-144px -658px;}
.botb-icon.icons-flag-tv{width:18px;height:12px;background-position:-162px -658px;}
.botb-icon.icons-flag-tw{width:18px;height:12px;background-position:-180px -658px;}
.botb-icon.icons-flag-tz{width:18px;height:12px;background-position:-198px -658px;}
.botb-icon.icons-flag-ua{width:18px;height:12px;background-position:-216px -658px;}
.botb-icon.icons-flag-ug{width:18px;height:12px;background-position:-234px -658px;}
.botb-icon.icons-flag-uk{width:18px;height:12px;background-position:-0px -670px;}
.botb-icon.icons-flag-us{width:18px;height:12px;background-position:-18px -670px;}
.botb-icon.icons-flag-uy{width:18px;height:12px;background-position:-36px -670px;}
.botb-icon.icons-flag-uz{width:18px;height:12px;background-position:-54px -670px;}
.botb-icon.icons-flag-va{width:18px;height:12px;background-position:-72px -670px;}
.botb-icon.icons-flag-vc{width:18px;height:12px;background-position:-90px -670px;}
.botb-icon.icons-flag-ve{width:18px;height:12px;background-position:-108px -670px;}
.botb-icon.icons-flag-vg{width:18px;height:12px;background-position:-126px -670px;}
.botb-icon.icons-flag-vi{width:18px;height:12px;background-position:-144px -670px;}
.botb-icon.icons-flag-vn{width:18px;height:12px;background-position:-162px -670px;}
.botb-icon.icons-flag-vu{width:18px;height:12px;background-position:-180px -670px;}
.botb-icon.icons-flag-wf{width:18px;height:12px;background-position:-198px -670px;}
.botb-icon.icons-flag-ws{width:18px;height:12px;background-position:-216px -670px;}
.botb-icon.icons-flag-ye{width:18px;height:12px;background-position:-234px -670px;}
.botb-icon.icons-flag-yt{width:18px;height:12px;background-position:-0px -682px;}
.botb-icon.icons-flag-za{width:18px;height:12px;background-position:-18px -682px;}
.botb-icon.icons-flag-zm{width:18px;height:12px;background-position:-36px -682px;}
.botb-icon.icons-flag-zw{width:18px;height:12px;background-position:-54px -682px;}
.botb-icon.icons-flag-null{width:18px;height:12px;background-position:-72px -682px;}
.botb-icon.icons-flag-xx{width:18px;height:12px;background-position:-90px -682px;}
.botb-icon.icons-flag-zz{width:18px;height:12px;background-position:-108px -682px;}
.botb-icon.icons-flag-gb{width:18px;height:12px;background-position:-126px -682px;}
.botb-icon.icons-flag-bu{width:18px;height:12px;background-position:-144px -682px;}
.botb-icon.icons-flag-cs{width:18px;height:12px;background-position:-162px -682px;}
.botb-icon.icons-flag-dd{width:18px;height:12px;background-position:-180px -682px;}
.botb-icon.icons-flag-fx{width:18px;height:12px;background-position:-198px -682px;}
.botb-icon.icons-flag-su{width:18px;height:12px;background-position:-216px -682px;}
.botb-icon.icons-flag-tp{width:18px;height:12px;background-position:-234px -682px;}
.botb-icon.icons-flag-um{width:18px;height:12px;background-position:-0px -694px;}
.botb-icon.icons-flag-yu{width:18px;height:12px;background-position:-18px -694px;}
.botb-icon.icons-flag-zr{width:18px;height:12px;background-position:-36px -694px;}
.botb-icon.icons-golden_finger{width:16px;height:16px;background-position:-54px -694px;}
.actualbat.botb-icon.icons-bat{width:16px;height:16px;background-position:-70px -694px;}
.botb-icon.icons-clown{width:16px;height:16px;background-position:-86px -694px;}
.botb-icon.icons-rat{width:16px;height:16px;background-position:-102px -694px;}
.botb-icon.icons-waffle_toy{width:16px;height:16px;background-position:-118px -694px;}
.botb-icon.icons-tiny_heart{width:16px;height:16px;background-position:-134px -694px;}
.botb-icon.icons-tiny_skull{width:16px;height:16px;background-position:-150px -694px;}
.botb-icon.icons-pumpking{width:16px;height:16px;background-position:-166px -694px;}
.botb-icon.icons-favs{width:9px;height:9px;background-position:-182px -694px;}
.botb-icon.icons-alert_favs{width:9px;height:9px;background-position:-191px -694px;}
.botb-icon.icons-botb{width:16px;height:16px;background-position:-200px -694px;}
.botb-icon.icons-oneup{width:16px;height:16px;background-position:-216px -694px;}
.botb-icon.icons-palette{width:16px;height:16px;background-position:-232px -694px;}
.botb-icon.icons-palette_new{width:16px;height:16px;background-position:-0px -710px;}
.botb-icon.icons-botbrs{width:16px;height:16px;background-position:-16px -710px;}
.botb-icon.icons-entries{width:16px;height:16px;background-position:-32px -710px;}
.botb-icon.icons-alert{width:16px;height:16px;background-position:-48px -710px;}
.botb-icon.icons-alert_posts{width:9px;height:9px;background-position:-64px -710px;}
.botb-icon.icons-youtube{width:16px;height:16px;background-position:-73px -710px;}
.botb-icon.icons-hackist{width:15px;height:15px;background-position:-89px -710px;}
</style>
<style>
body {
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
background: #000;
font-family: "mainfont";
font-size: 14px;
}
@font-face {
font-family: "mainfont";
src: url("gohufont.ttf") format("truetype");
}
canvas {
/* width: 100vw; */
cursor: crosshair;
}
#spritesheet {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: pixelated;
image-rendering: optimize-contrast;
-ms-interpolation-mode: nearest-neighbor;
display: none;
}
#debug {
display: block;
color: #fff;
}
#roomName,
#enemiesLeft,
#dungeonLevel {
color: #fff;
}
#mapCanvas {
display: none;
position: fixed;
left: 0;
top: 0;
width: 100vw;
background-color: rgba(0,0,0,0.5);
}
#levelButton {
display: none;
}
#mapButton,
#levelButton,
#continueButton,
#retryButton,
#restartButton{
font-family: "mainfont";
font-size: 14px;
margin-top: 20px;
border: solid 5px #070707;
border-radius: 150px;
padding: 5px 20px;
background-color: #111;
color: #fff;
transition: background-color 0.2s ease;
}
#mapButton:hover,
#levelButton:hover {
background-color: #222;
}
#infoContainer {
color: #fff;
margin-bottom: 20px;
display: flex;
flex-direction: row;
}
#levelxp, #hp {
height: 5px;
background-color: #000;
border: solid 1px #fff;
border-radius: 50px;
color: #f44336;
}
#levelxp::-webkit-progress-value {
background: #4CAF50;
}
#levelxp::-moz-progress-bar {
background: #4CAF50;
}
#spacer {
width: 300px;
}
#hp::-webkit-progress-value {
background: #f44336;
}
#hp::-moz-progress-bar {
background: #f44336;
}
#class {
position: fixed;
left: 0;
top: 20vh;
width: 200px;
background-color: rgba(0,0,0,0);
color: #fff;
padding: 20px;
}
.upgrade {
display: flex;
flex-direction: row;
align-items: center;
}
.upgradeName {
margin-right: 20px;
}
.upgradeValue {
margin: 5px;
}
#classOptions {
display: flex;
flex-direction: row;
}
.classOption {
margin: 10px;
}
.classOption button {
width: 30px;
height: 30px;
background-color: #444;
}
.classOption button img {
width: 24px;
margin-left: -11px;
}
.upgrade button {
height: 20px;
padding: -5px 5px;
padding-bottom: 20px;
border: solid 2px #111;
vertical-align: middle;
background-color: #111;
color: #fff;
}
#buttonContainer {
display: flex;
}
#ending,
#gameOver {
display: none;
position: fixed;
background-color: #272727cc;
color: #fff;
z-index: 999;
padding: 30px;
top: 100px;
width: 500px;
height: 150px;
}
#gameOver {
height: 250px;
}
</style>
<title>botb.dungeon</title>
</head>
<body>
<audio id="ambience" src="ambience.mp3" loop></audio>
<audio id="killSound" src="kill.mp3"></audio>
<audio id="hitSound" src="hit.mp3"></audio>
<div id="ending">
<h3>congratulations!</h3>
<p>by becoming level 33, you have achieved the status of grand wizard and the omnipotent baron has granted you the choice to escape the endless dungeon... or you can continue...</p>
<button id="continueButton">continue</button>
</div>
<div id="gameOver">
<h3>game over</h3>
<p>you have become victim to the bugs, rats, bats, pumpkings, mummis, zombis and ghosts of this dungeon. you can retry a completely new level by pressing "retry level", keeping your currenty xp and level.</p>
<p>or you can press the "restart game" button to restart the entire game from the beginning</p>
<button id="retryButton">retry level</button>
<button id="restartButton">restart game</button>
</div>
<div id="class">
<h3>player class</h3>
<div id="classOptions">
<div class="classOption">
<button id="hostist"><img alt="" src="hostist.png"/></button>
<div class="classCaption">Hostist</div>
</div>
<div class="classOption">
<button id="grafxicist"><img alt="" src="grafixist.png"/></button>
<div class="classCaption">Grafxicist</div>