-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path238.6.html
More file actions
4267 lines (4267 loc) · 299 KB
/
Copy path238.6.html
File metadata and controls
4267 lines (4267 loc) · 299 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
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='UTF-8'>
<title>OSRS Cache Diff Report</title>
<style>
:root{color-scheme:dark;--bg:#151719;--panel:#202326;--panel2:#262a2e;--border:#343a40;--text:#d8dde3;--muted:#8d99a6;--blue:#7cc7ff;--green:#91d18b;--red:#f28b82;--amber:#f7c873;}
*{box-sizing:border-box;}
body{font-family:'Segoe UI',Arial,sans-serif;background:var(--bg);color:var(--text);margin:0;padding:0;font-size:14px;line-height:1.35;}
header{position:sticky;top:0;z-index:10;background:#1b1e21;border-bottom:1px solid var(--border);padding:12px 18px;display:flex;align-items:center;gap:14px;box-shadow:0 2px 10px #0004;}
h1{margin:0;color:#f2f6fb;font-size:20px;font-weight:650;}
.actions{margin-left:auto;display:flex;gap:8px;}
#content{max-width:1500px;margin:0 auto;padding:14px 18px 28px;}
section{background:var(--panel);border:1px solid var(--border);border-radius:8px;margin:0 0 12px;overflow:hidden;}
summary{cursor:pointer;font-weight:650;color:var(--blue);list-style:none;}
summary::-webkit-details-marker{display:none;}
.section-summary{display:flex;align-items:center;gap:10px;padding:12px 14px;}
.section-summary:before{content:'+';color:var(--muted);font-family:Consolas,monospace;width:14px;}
details[open]>.section-summary:before{content:'-';}
.section-title{min-width:190px;}
.badge{display:inline-flex;align-items:center;gap:4px;border:1px solid var(--border);border-radius:999px;padding:2px 8px;background:#15181b;color:var(--muted);font-size:12px;font-weight:600;}
.body{border-top:1px solid var(--border);padding:12px 14px 16px;}
.bucket{border:1px solid var(--border);border-radius:6px;background:#181b1e;margin:0 0 8px;overflow:hidden;}
.bucket>.section-summary{padding:8px 10px;}
.bucket>.body{padding:10px;border-top:1px solid var(--border);}
.subhead{margin:14px 0 8px;font-size:13px;text-transform:uppercase;letter-spacing:.04em;color:var(--muted);}
.table-wrap{overflow:auto;border:1px solid var(--border);border-radius:6px;background:#181b1e;margin:0 0 12px;}
table{border-collapse:collapse;width:100%;min-width:640px;}
th,td{border-bottom:1px solid #2c3238;padding:6px 9px;text-align:left;vertical-align:top;}
th{position:sticky;top:0;background:var(--panel2);color:#f2f6fb;font-size:12px;font-weight:650;z-index:1;}
tr:nth-child(even){background:#1c2024;}tr:hover{background:#242a30;}
.added{color:var(--green);}.removed{color:var(--red);}.changed{color:var(--amber);}
.diff-ins{background:#173d24;color:#c7f7ce;border-radius:3px;padding:0 2px;}
.diff-del{background:#4a1f22;color:#ffc5c0;border-radius:3px;padding:0 2px;text-decoration:line-through;}
.changed-table pre{white-space:pre-wrap;word-break:break-word;}
.changed-entry{border:1px solid var(--border);border-radius:6px;background:#181b1e;margin:0 0 10px;overflow:hidden;}
.changed-entry-title{padding:8px 10px;border-bottom:1px solid var(--border);font-weight:650;color:var(--amber);display:flex;gap:8px;align-items:baseline;}
.changed-entry-id{color:var(--muted);font-family:Consolas,'Cascadia Mono',monospace;font-size:12px;font-weight:500;}
.changed-entry .table-wrap{border:0;border-radius:0;margin:0;}
.field-name{color:var(--blue);font-family:Consolas,monospace;}
button{padding:6px 10px;background:#242930;color:var(--text);border:1px solid var(--border);border-radius:6px;cursor:pointer;font:inherit;}
button:hover{background:#303741;}
pre{margin:0;background:transparent;padding:0;overflow:visible;white-space:pre-wrap;word-break:break-word;font-family:Consolas,'Cascadia Mono',monospace;font-size:12px;color:var(--text);}
.sprite-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:10px;}
.sprite-card{border:1px solid var(--border);border-radius:6px;background:#181b1e;overflow:hidden;}
.sprite-title{padding:8px 10px;border-bottom:1px solid var(--border);font-weight:650;color:var(--blue);display:flex;gap:8px;align-items:baseline;}
.sprite-meta{color:var(--muted);font-family:Consolas,'Cascadia Mono',monospace;font-size:12px;font-weight:500;}
.sprite-frames{display:flex;flex-wrap:wrap;gap:8px;padding:10px;}
.sprite-frame{display:flex;flex-direction:column;gap:4px;align-items:center;min-width:54px;color:var(--muted);font-family:Consolas,'Cascadia Mono',monospace;font-size:11px;}
.sprite-frame img{max-width:160px;max-height:160px;image-rendering:pixelated;background:#0f1113;border:1px solid #2c3238;border-radius:4px;padding:4px;}
.sprite-pair{display:grid;grid-template-columns:1fr 1fr;gap:10px;padding:10px;}
.sprite-side-title{margin:0 0 8px;color:var(--muted);font-size:12px;text-transform:uppercase;letter-spacing:.04em;font-weight:650;}
.empty{color:var(--muted);font-style:italic;margin:4px 0 12px;}
</style>
</head>
<body>
<header><h1>OSRS Cache Diff</h1><div class='actions'>
<button onclick="toggleAll(true)">Expand All</button>
<button onclick="toggleAll(false)">Collapse All</button>
</div></header>
<div id='content'></div>
<script>
const data={
"timestamp": "2026-07-24 19:13:45",
"oldPath": ".\\cache-oldschool-238-5",
"newPath": ".\\cache-oldschool-238-6",
"summary": {
"Enums": {
"added": 0,
"removed": 0,
"changed": 1
},
"NPCs": {
"added": 0,
"removed": 1,
"changed": 4
},
"Items": {
"added": 0,
"removed": 0,
"changed": 7
},
"Database Rows": {
"added": 0,
"removed": 0,
"changed": 4
},
"Sprites": {
"added": 0,
"removed": 0,
"changed": 9
}
},
"details": {
"Enums": {
"added": {},
"removed": {},
"changed": {
"3302": {
"before": {
"strVals": [
"Mystic Robes",
"Mystic Robes (dark)",
"Mystic Robes (light)",
"Mystic Robes (dusk)",
"Mystic Robes (Shattered Relics)",
"Skeletal Outfit",
"Infinity Robes",
"Infinity Robes (light)",
"Infinity Robes (dark)",
"Splitbark Armour",
"Swampbark Armour",
"Bloodbark Armour",
"Ghostly Robes",
"Moonclan Robes",
"Lunar Robes",
"Dagon\u0027hai Robes",
"Graceful Outfit",
"Graceful Outfit: Arceuus",
"Graceful Outfit: Hosidius",
"Graceful Outfit: Lovakengj",
"Graceful Outfit: Piscarilius",
"Graceful Outfit: Shayzien",
"Graceful Outfit: Kourend",
"Graceful Outfit: Agility Arena",
"Graceful Outfit: Hallowed",
"Graceful Outfit: Trailblazer",
"Graceful Outfit: Adventurer",
"Graceful Outfit: Varlamore",
"Naval Attire (blue)",
"Naval Attire (green)",
"Naval Attire (red)",
"Naval Attire (brown)",
"Naval Attire (black)",
"Naval Attire (purple)",
"Naval Attire (grey)",
"Elder Chaos Druid Robes",
"Evil Chicken Costume",
"Pheasant Costume",
"Pyromancer Outfit",
"Warm Gloves",
"Tribal Outfit (brown)",
"Tribal Outfit (blue)",
"Tribal Outfit (yellow)",
"Tribal Outfit (pink)",
"Bruma Torch",
"Golden Tench",
"Pearl Fishing Rod",
"Pearl Barbarian Rod",
"Pearl Fly Fishing Rod",
"Oily Pearl Fishing Rod",
"Fish Sack",
"Log Basket",
"Forestry Kit",
"Mudskipper Kit",
"Dark Flippers",
"Bounty Hunter Hat (tier 1)",
"Bounty Hunter Hat (tier 2)",
"Bounty Hunter Hat (tier 3)",
"Bounty Hunter Hat (tier 4)",
"Bounty Hunter Hat (tier 5)",
"Bounty Hunter Hat (tier 6)",
"Ancestral Robes",
"Ancestral Robes (Twisted)",
"Flag: Cutthroat",
"Flag: Gilded Smile",
"Flag: Bronze Fist",
"Flag: Lucky Shot",
"Flag: Treasure",
"Flag: Phasmatys",
"Carpenter\u0027s Outfit",
"Amy\u0027s Saw",
"Zealot\u0027s Prayer Robes",
"Imcando Hammer",
"Ancient Ceremonial Robes",
"Raiments of the Eye",
"Raiments of the Eye (green)",
"Raiments of the Eye (red)",
"Raiments of the Eye (blue)",
"Smiths\u0027 Uniform",
"Elder Chaos Druid Robes (ornate)",
"Dagon\u0027hai Robes (ornate)",
"Mask of Rebirth",
"Dark Squall Robes",
"Twilight Emissary Robes",
"Fletching Knife",
"Greenman Mask",
"Orange",
"Storm Cruiser\u0027s Kit",
"Swamp Cruiser\u0027s Kit",
"Crystal Glider\u0027s Kit",
"Castle Wars Decorative Armour (1)",
"Castle Wars Decorative Armour (2)",
"Castle Wars Decorative Armour (3)",
"Castle Wars Mage Armour",
"Castle Wars Ranger Armour",
"Void Knight Armour",
"Void Knight Elite Armour",
"Rogue Armour",
"Spined Armour",
"Rockshell Armour",
"Tribal Mask (poison)",
"Tribal Mask (disease)",
"Tribal Mask (combat)",
"White Knight Armour",
"Temple Knight Initiate Armour",
"Temple Knight Proselyte Armour",
"Mourner Gear",
"Hunter Gear: Graahk",
"Hunter Gear: Larupia",
"Hunter Gear: Kyatt",
"Camouflage Gear: Polar",
"Camouflage Gear: Jungle",
"Camouflage Gear: Wood",
"Camouflage Gear: Desert",
"Builder\u0027s Costume",
"Lumberjack Costume",
"Lumberjack Costume: Forestry",
"Bomber Jacket Costume",
"H.A.M. Robes",
"Chompy Bird Hat",
"Chompy Bird Hat",
"Chompy Bird Hat",
"Chompy Bird Hat",
"Chompy Bird Hat",
"Chompy Bird Hat",
"Chompy Bird Hat",
"Chompy Bird Hat",
"Chompy Bird Hat",
"Chompy Bird Hat",
"Chompy Bird Hat",
"Chompy Bird Hat",
"Chompy Bird Hat",
"Chompy Bird Hat",
"Chompy Bird Hat",
"Chompy Bird Hat",
"Chompy Bird Hat",
"Chompy Bird Hat",
"Void Melee Helm",
"Void Ranger Helm",
"Void Mage Helm",
"Prospector Kit",
"Prospector Kit (golden)",
"Angler\u0027s Outfit",
"Angler\u0027s Outfit (spirit)",
"Farmer\u0027s Outfit",
"Shayzien Armour (tier 1)",
"Shayzien Armour (tier 2)",
"Shayzien Armour (tier 3)",
"Shayzien Armour (tier 4)",
"Shayzien Armour (tier 5)",
"Xerician Armour",
"Clue Hunter Outfit",
"Corrupted Armour",
"Obsidian Armour",
"Helm of Raedwald",
"Elder Chaos Druid Robes",
"Penance Fighter Torso",
"Penance Runner Boots",
"Penance Gloves",
"Penance Skirt",
"Penance Fighter Hat",
"Penance Ranger Hat",
"Penance Runner Hat",
"Penance Healer Hat",
"Justiciar Armour",
"Oathplate Armour",
"Radiant Oathplate Armour",
"Ornate Armour",
"Robes of Ruin",
"Virtus Robes",
"Virtus Robes (Echo)",
"Dragonstone Armour",
"Ardougne Knight Armour",
"Deadman Armour",
"Halo: Saradomin",
"Halo: Zamorak",
"Halo: Guthix",
"Halo: Armadyl",
"Halo: Bandos",
"Halo: Seren",
"Halo: Ancient",
"Halo: Brassica",
"Twisted Relichunter (tier 1)",
"Twisted Relichunter (tier 2)",
"Twisted Relichunter (tier 3)",
"Cane: Twisted",
"Trailblazer Relichunter (tier 1)",
"Trailblazer Relichunter (tier 2)",
"Trailblazer Relichunter (tier 3)",
"Cane: Trailblazer",
"Shattered Relichunter (tier 1)",
"Shattered Relichunter (tier 2)",
"Shattered Relichunter (tier 3)",
"Cane: Shattered",
"Trailblazer Reloaded Relichunter (tier 1)",
"Trailblazer Reloaded Relichunter (tier 2)",
"Trailblazer Reloaded Relichunter (tier 3)",
"Torch: Trailblazer Reloaded",
"Raging Echoes Relichunter (tier 1)",
"Raging Echoes Relichunter (tier 2)",
"Raging Echoes Relichunter (tier 3)",
"Cane: Raging Echoes",
"Demonic Pacts Relichunter (tier 1)",
"Demonic Pacts Relichunter (tier 2)",
"Demonic Pacts Relichunter (tier 3)",
"Cane: Demonic Pacts",
"Inquisitor\u0027s Armour",
"Vyre Noble Outfit",
"Snakeskin Armour",
"Castle Wars Decorative Sword (1)",
"Castle Wars Decorative Sword (2)",
"Castle Wars Decorative Sword (3)",
"Fedora",
"Swift Blade",
"Void Knight (Shattered Relics)",
"Void Knight Elite (Shattered Relics)",
"Void Mage Helm (Shattered Relics)",
"Void Ranger Helm (Shattered Relics)",
"Void Melee Helm (Shattered Relics)",
"Masori Armour",
"Masori Armour (fortified)",
"Adventurer\u0027s Outfit (tier 1)",
"Adventurer\u0027s Outfit (tier 2)",
"Adventurer\u0027s Outfit (tier 3)",
"Giant Stopwatch",
"Mining Gloves",
"Stronghold of Security Boots",
"Hunters Outfit",
"Sunfire Fanatic Armour",
"Mixed Hide Armour",
"Elite Black Armour",
"Butler\u0027s Uniform",
"Alchemist\u0027s Outfit",
"Mime Costume",
"Frog Costume",
"Zombie Outfit",
"Camo Outfit",
"Lederhosen Outfit",
"Shade Robes",
"Stale Baguette",
"Beekeeper Outfit",
"Legends Cape",
"Obsidian Cape",
"Fire Cape",
"Wilderness Cape",
"Wilderness Cape 0",
"Wilderness Cape X",
"Wilderness Cape I",
"Mage Arena: Guthix",
"Mage Arena: Saradomin",
"Mage Arena: Zamorak",
"Mage Arena: Saradomin (imbued)",
"Mage Arena: Guthix (imbued)",
"Mage Arena: Zamorak (imbued)",
"Attack Cape",
"Defence Cape",
"Strength Cape",
"Hitpoints Cape",
"Agility Cape",
"Cooking Cape",
"Construction Cape",
"Crafting Cape",
"Farming Cape",
"Firemaking Cape",
"Fishing Cape",
"Fletching Cape",
"Herblore Cape",
"Magic Cape",
"Mining Cape",
"Prayer Cape",
"Ranging Cape",
"Runecrafting Cape",
"Sailing Cape",
"Slayer Cape",
"Smithing Cape",
"Thieving Cape",
"Woodcutting Cape",
"Hunter Cape",
"Quest Point Cape",
"Achievement Diary Cape",
"Music Cape",
"Max Cape",
"Infernal Cape",
"Spotted Hunting Cape",
"Spottier Hunting Cape",
"Champion\u0027s Cape",
"Mythical Cape",
"Xeric\u0027s Guard",
"Xeric\u0027s Warrior",
"Xeric\u0027s Sentinel",
"Xeric\u0027s General",
"Xeric\u0027s Champion",
"Sinhaza Shroud (tier 1)",
"Sinhaza Shroud (tier 2)",
"Sinhaza Shroud (tier 3)",
"Sinhaza Shroud (tier 4)",
"Sinhaza Shroud (tier 5)",
"Gauntlet Cape",
"Victor\u0027s Cape (1)",
"Victor\u0027s Cape (10)",
"Victor\u0027s Cape (50)",
"Victor\u0027s Cape (100)",
"Victor\u0027s Cape (500)",
"Victor\u0027s Cape (1000)",
"Soul Cape",
"Icthlarin\u0027s Shroud (tier 1)",
"Icthlarin\u0027s Shroud (tier 2)",
"Icthlarin\u0027s Shroud (tier 3)",
"Icthlarin\u0027s Shroud (tier 4)",
"Icthlarin\u0027s Shroud (tier 5)",
"Cow Slippers",
"Mole Slippers",
"Frog Slippers",
"Bear Feet",
"Demon Feet",
"Jester Cape",
"Shoulder Parrot",
"Monk\u0027s Robes (trim)",
"Amulet of Defence (trim)",
"Sandwich Lady Costume",
"Rune Scimitar (Guthix)",
"Rune Scimitar (Zamorak)",
"Rune Scimitar (Saradomin)",
"Black Heraldic Kiteshield (h1)",
"Black Heraldic Kiteshield (h2)",
"Black Heraldic Kiteshield (h3)",
"Black Heraldic Kiteshield (h4)",
"Black Heraldic Kiteshield (h5)",
"Studded Leather (gold)",
"Studded Leather (fur)",
"Blue Wizard (gold)",
"Blue Wizard (trim)",
"Black Armour (trim)",
"Black Armour (gold)",
"Highwayman Mask",
"Beret (blue)",
"Beret (black)",
"Beret (white)",
"Black Heraldic Helm (h1)",
"Black Heraldic Helm (h2)",
"Black Heraldic Helm (h3)",
"Black Heraldic Helm (h4)",
"Black Heraldic Helm (h5)",
"Amulet of Magic (trim)",
"Pantaloons",
"Wig",
"Flared Pants",
"Sleeping Cap",
"Bob the Cat Shirt (red)",
"Bob the Cat Shirt (blue)",
"Bob the Cat Shirt (green)",
"Bob the Cat Shirt (black)",
"Bob the Cat Shirt (purple)",
"Elegant Clothes (red)",
"Elegant Clothes (green)",
"Elegant Clothes (blue)",
"Beret Mask",
"Bronze Armour (trim)",
"Bronze Armour (gold)",
"Iron Armour (trim)",
"Iron Armour (gold)",
"Beanie Hat",
"Beret (red)",
"Mask: Imp",
"Mask: Goblin",
"Cane: Black",
"Black Pickaxe",
"Black Wizard (gold)",
"Black Wizard (trim)",
"Large Spade",
"Wooden Shield (gold)",
"Golden Chef\u0027s Hat",
"Golden Apron",
"Steel Armour (trim)",
"Steel Armour (gold)",
"Monk\u0027s Robes (gold)",
"Cape of Skulls",
"Amulet of Power (trim)",
"Rain Bow",
"Ham Joint",
"Staff of Bob the Cat",
"Leather Armour (gold)",
"Black Platebody (h1)",
"Black Platebody (h2)",
"Black Platebody (h3)",
"Black Platebody (h4)",
"Black Platebody (h5)",
"Blessing: Peaceful ",
"Blessing: Holy",
"Blessing: Unholy",
"Blessing: Honourable",
"Blessing: War",
"Blessing: Ancient",
"Composite Bow: Willow",
"Straw Boater (red)",
"Straw Boater (orange)",
"Straw Boater (green)",
"Straw Boater (blue)",
"Straw Boater (black)",
"Adamant Heraldic Kiteshield (h1)",
"Adamant Heraldic Kiteshield (h2)",
"Adamant Heraldic Kiteshield (h3)",
"Adamant Heraldic Kiteshield (h4)",
"Adamant Heraldic Kiteshield (h5)",
"Green Dragonhide (gold)",
"Green Dragonhide (trim)",
"Ranger Boots",
"Adamant Armour (trim)",
"Adamant Armour (gold)",
"Headband (red)",
"Headband (black)",
"Headband (brown)",
"Adamant Heraldic Helm (h1)",
"Adamant Heraldic Helm (h2)",
"Adamant Heraldic Helm (h3)",
"Adamant Heraldic Helm (h4)",
"Adamant Heraldic Helm (h5)",
"Amulet of Strength (trim)",
"Elegant Clothes (black \u0026 white)",
"Elegant Clothes (purple)",
"Wizard Boots",
"Mithril Armour (gold)",
"Mithril Armour (trim)",
"Leprechaun Hat",
"Headband (white)",
"Headband (blue)",
"Headband (gold)",
"Headband (pink)",
"Headband (green)",
"Straw Boater (pink)",
"Straw Boater (purple)",
"Straw Boater (white)",
"Mask: Cat",
"Mask: Penguin",
"Elegant Clothes (pink)",
"Elegant Clothes (gold)",
"Vestments: Armadyl",
"Vestments: Ancient",
"Vestments: Bandos",
"Cane: Adamant",
"Holy Sandals",
"Clueless Scroll",
"Kourend Banner: Arceuus",
"Kourend Banner: Hosidius",
"Kourend Banner: Lovakengj",
"Kourend Banner: Piscarilius",
"Kourend Banner: Shayzien",
"Mask: Black Unicorn",
"Mask: White Unicorn",
"Town Crier",
"Leprechaun Hat (black)",
"Cabbage Round Shield",
"Spiked Manacles",
"Adamant Platebody (h1)",
"Adamant Platebody (h2)",
"Adamant Platebody (h3)",
"Adamant Platebody (h4)",
"Adamant Platebody (h5)",
"Mask: Wolf",
"Wolf Cloak",
"Climbing Boots (gold)",
"Composite Bow: Yew",
"Rune Heraldic Kiteshield (h1)",
"Rune Heraldic Kiteshield (h2)",
"Rune Heraldic Kiteshield (h3)",
"Rune Heraldic Kiteshield (h4)",
"Rune Heraldic Kiteshield (h5)",
"Blue Dragonhide (gold)",
"Blue Dragonhide (trim)",
"Enchanted Robes",
"Robin Hood Hat",
"Rune Armour (gold)",
"Rune Armour (trim)",
"Cavalier (brown)",
"Cavalier (dark brown)",
"Cavalier (black)",
"Pirate Hat",
"Rune Armour (Zamorak)",
"Rune Armour (Saradomin)",
"Rune Armour (Guthix)",
"Rune Armour (gilded)",
"Rune Heraldic Helm (h1)",
"Rune Heraldic Helm (h2)",
"Rune Heraldic Helm (h3)",
"Rune Heraldic Helm (h4)",
"Rune Heraldic Helm (h5)",
"Amulet of Glory (trim)",
"Vestments: Saradomin",
"Vestments: Guthix",
"Vestments: Zamorak",
"Blessed Dragonhide (Saradomin)",
"Blessed Dragonhide (Guthix)",
"Blessed Dragonhide (Zamorak)",
"Cavalier Mask",
"Red Dragonhide (gold)",
"Red Dragonhide (trim)",
"Cavalier (red)",
"Cavalier (blue)",
"Cavalier (white)",
"Pith Helmet",
"Explorer Backpack",
"Rune Armour (Armadyl)",
"Rune Armour (Bandos)",
"Rune Armour (Ancient)",
"Blessed Dragonhide (Armadyl)",
"Blessed Dragonhide (Bandos)",
"Blessed Dragonhide (Ancient)",
"Dragon Mask (green)",
"Dragon Mask (blue)",
"Dragon Mask (red)",
"Dragon Mask (black)",
"Cane: Rune",
"Zombie Head",
"Cyclops Head",
"Rune Med Helm (gilded)",
"Rune Chainbody (gilded)",
"Rune Square Shield (gilded)",
"Rune 2h Sword (gilded)",
"Rune Spear (gilded)",
"Rune Hasta (gilded)",
"Nunchaku",
"Dragonhide Boots (Saradomin)",
"Dragonhide Boots (Bandos)",
"Dragonhide Boots (Armadyl)",
"Dragonhide Boots (Guthix)",
"Dragonhide Boots (Zamorak)",
"Dragonhide Boots (Ancient)",
"Rune PlateBody (h1)",
"Rune PlateBody (h2)",
"Rune PlateBody (h3)",
"Rune PlateBody (h4)",
"Rune PlateBody (h5)",
"Dual Sai",
"Thieving Bag",
"3rd Age Range Coif",
"3rd Age Range Top",
"3rd Age Range Legs",
"3rd Age Range Vambraces",
"3rd Age Mage Hat",
"3rd Age Mage Robe Top",
"3rd Age Mage Robe Bottoms",
"3rd Age Mage Amulet",
"3rd Age Melee Helmet",
"3rd Age Melee Platebody",
"3rd Age Melee Legs",
"3rd Age Melee Kiteshield",
"Dragonhide Shield (Guthix)",
"Dragonhide Shield (Saradomin)",
"Dragonhide Shield (Zamorak)",
"Dragonhide Shield (Ancient)",
"Dragonhide Shield (Armadyl)",
"Dragonhide Shield (Bandos)",
"Dragon Boots (gold)",
"Composite Bow: Magic",
"Cane: Dragon",
"Briefcase",
"Sagacious Spectacles",
"Royal Attire",
"Dragon Mask (bronze)",
"Dragon Mask (iron)",
"Dragon Mask (steel)",
"Dragon Mask (mithril)",
"Dragon Mask (lava)",
"Afro",
"Katana",
"Pirate Hat (big)",
"Top Hat",
"Monocle",
"Black Dragonhide (gold)",
"Black Dragonhide (trim)",
"Musketeer Outfit",
"Partyhat \u0026 Specs",
"Pirate Hat \u0026 Patch",
"Top Hat \u0026 Monocle",
"Deerstalker",
"Heavy Casket",
"Kourend Scarf: Arceuus",
"Kourend Scarf: Hosidius",
"Kourend Scarf: Lovakengj",
"Kourend Scarf: Piscarilius",
"Kourend Scarf: Shayzien",
"Blacksmith\u0027s Helm",
"Bucket Helm",
"Ranger Kit",
"Holy Wraps",
"Ring of Nature",
"3rd Age Wand",
"3rd Age Bow",
"3rd Age Longsword",
"3rd Age Cloak",
"Tuxedo Outfit (dark)",
"Tuxedo Outfit (light)",
"Fremennik Kilt",
"Dragon Mask (adamant)",
"Dragon Mask (rune)",
"Dragonhide (gilded)",
"Rune Boots (gilded)",
"Rune Scimitar (gilded)",
"Rune Pickaxe (gilded)",
"Rune Axe (gilded)",
"Spade (gilded)",
"Uri\u0027s Hat",
"Giant Boot",
"Dragon Armour (gilded)",
"Rune Scimitar (gilded)",
"Dragon Scimitar (ornate)",
"Fancy Tiara",
"3rd Age Axe",
"3rd Age Felling Axe",
"3rd Age Pickaxe",
"Ring of Coins",
"Mask: Lesser Demon",
"Mask: Greater Demon",
"Mask: Black Demon",
"Mask: Old Demon",
"Mask: Jungle Demon",
"Obsidian Cape (red)",
"Half Moon Spectacles",
"Ale of the Gods",
"Bucket Helm (gold)",
"Bowl Wig",
"Kourend Hood: Arceuus",
"Kourend Hood: Hosidius",
"Kourend Hood: Lovakengj",
"Kourend Hood: Piscarilius",
"Kourend Hood: Shayzien",
"Samurai Outfit",
"Mummy Costume",
"Ankou Costume",
"Robes of Darkness",
"Eye Patch",
"Scroll Sack",
"3rd Age Druidic Robe Top",
"3rd Age Druidic Robe Bottoms",
"3rd Age Druidic Staff",
"3rd Age Druidic Cloak",
"Ring of 3rd Age",
"2003: Bunny Ears",
"2003: Scythe",
"2004: Yo-yo",
"2005: Rubber Chicken",
"2005: Zombie Head",
"2006: Ring of Egg",
"2006: Pumpkin Head",
"2006: Spooky Outfit",
"2005: Woolly Hats",
"2005: Woolly Scarves",
"2005: Marionette",
"2006: Reindeer Hat",
"2007: Chicken Suit",
"Classic: Karamja Warship",
"2013: Black Halloween Mask",
"2013: Black Party Hat",
"2013: Rainbow Party Hat",
"2014-15: Cow Suit",
"2005: Easter Basket",
"2014: Druidic Wreath",
"2007: Grim Reaper Hood",
"2014: Santa Costume",
"2014: Antisanta Costume",
"2015: Mask of Balance",
"2015: Toy Animals",
"2015: Anti-panties",
"2015: Undead Gravedigger",
"2015: Black Santa Hat",
"2015: Inverted Santa Hat",
"2016: Gnome Child Hat",
"2015-16: Bunny Outfit",
"2016: Cabbage Cape",
"2016: Cruciferous Codex",
"2016: Hornwood Helm",
"2016: Masked Killer",
"2016: Snow Globe",
"2016: Sack of Presents",
"2016: Giant Present",
"2017: 4th Birthday Hat",
"2017: Birthday Balloons",
"2017: Easter Egg Helm",
"2018: Eggshell Outfit",
"2017: Rainbow Scarf",
"2017: Hand Fan",
"2017: Runefest Shield",
"2017: Jonas Mask",
"2017: Snow Imp Costume",
"2017: Wise Old Man\u0027s Santa Hat",
"2018: Birthday Prop Sword",
"2018: Clown Suit",
"2018: Eek the Spider",
"2018: Christmas Tree Suit",
"2019: Birthday Cake ",
"2019: Giant Easter Egg",
"2019: Bunny Mask",
"2019: Spooky Costume",
"2019: Spookier Costume",
"2019: Pumpkin Lantern",
"2019: Skeleton Lantern",
"2019: Gingerbread Gnome Shield",
"2020: Cat Ears",
"2020: Easter Magic Egg",
"2020: Easter Carrot Swords",
"2020: Headless Head",
"2020: Magical Pumpkin",
"2020: Christmas Boulder",
"2020: Goblin Decorations",
"2021: 20th Anniversary Outfit",
"2021: Gnome Child Memorabilia",
"2021: Cursed Banana",
"2021: Banana Cape",
"2021: Gregg\u0027s Eastdoor",
"2021: Propeller Hat",
"2021: Banana Hat",
"2021: Saucepan",
"2021: Ugly Halloween Jumper",
"2021: Haunted Wine Bottle",
"2021: Magical Snowman Ring",
"2021: Secret Santa Present",
"2021: Festive Slippers",
"2021: Festive Hat",
"2022: Sand Skis",
"2022: Easter Hat",
"2022: Easter Crate Ring",
"2022: Pride Flower Crown",
"2022: Treat Cauldron",
"2022: Witch Costume",
"2022: Halloween Wig",
"2022: Santa\u0027s List",
"2022: Festive Jumper",
"2022: Snow Goggles \u0026 Hat",
"2022: Coal Sack",
"2022: Nutcracker Outfit",
"2022: Festive Games Crown",
"2023: Mystic Cards",
"2023: 10th Birthday Cape",
"2023: Birthday Cake Hat",
"2023: Silver Partyhat",
"2023: Birthday Slippers",
"2023: Birthday Jumper",
"2023: Dragon Candle Dagger",
"2023: Birthday Balloons",
"2023: Birthday Plush",
"2023: Gnomechild Backpack",
"2023: Giant Bronze Dagger",
"2023: Eastfloor Spade",
"2023: Nest Hat",
"2023: Rainbow Jumper",
"2023: Poet\u0027s Jacket",
"2023: Love Crossbow",
"2023: Spider Hat",
"2023: Cobweb Cape",
"2023: Snowglobe helmet",
"2023: Icy jumper",
"2024: Egg priest vestments",
"2024: Rainbow Cape",
"2024: Rainbow Shirt",
"2024: Scarecrow Shirt",
"2024: Carved Pumpkin",
"2024: Scarecrow",
"2024: Present Hat",
"2024: Dog Mask",
"2024: Festive Scarf",
"2024: Dog Boots",
"2025: Classic Imp Costume",
"2025: Carrot costume hat",
"2025: Carrot costume body",
"2025: Carrot costume gloves",
"2025: Carrot costume tights",
"2025: Grim Reaper outfit",
"2025: Spooky Chair",
"2025: Spooky Pumpkin Lantern",
"2025: Lovley Jubbly Bib",
"2025: Beer Belly Sweater",
"2025: Jad Jumper",
"2025: Christmas Dinner",
"2026: 25th Anniversary Outfit",
"2026: 25th Anniversary 5x5 hat",
"2026: Archibald, the brave egg",
"Jar of Dirt (Kraken)",
"Jar of Swamp (Zulrah)",
"Jar of Sand (Kalphite Queen)",
"Jar of Souls (Cerberus)",
"Jar of Miasma (Abyssal Sire)",
"Jar of Darkness (Skotizo)",
"Jar of Stone (Grotesque Guardians)",
"Jar of Decay (Vorkath)",
"Jar of Chemicals (Alchemical Hydra)",
"Jar of Eyes (Sarachnis)",
"Jar of Dreams (Nightmare)",
"Jar of Spirits (Corporeal Beast)",
"Jar of Smoke (Thermy)",
"Jar of Venom (Araxxor)",
"Jar of Feathers (Shellbane Gryphon)",
"Grid Master Tabard \u0026 Swords",
"Grid Master Tabard \u0026 Swords (Black)",
"Grid Master Tabard \u0026 Swords (Pink)",
"Grid Master Tabard \u0026 Swords (Green)"
]
},
"after": {
"strVals": [
"Mystic Robes",
"Mystic Robes (dark)",
"Mystic Robes (light)",
"Mystic Robes (dusk)",
"Mystic Robes (Shattered Relics)",
"Skeletal Outfit",
"Infinity Robes",
"Infinity Robes (light)",
"Infinity Robes (dark)",
"Splitbark Armour",
"Swampbark Armour",
"Bloodbark Armour",
"Ghostly Robes",
"Moonclan Robes",
"Lunar Robes",
"Dagon\u0027hai Robes",
"Graceful Outfit",
"Graceful Outfit: Arceuus",
"Graceful Outfit: Hosidius",
"Graceful Outfit: Lovakengj",
"Graceful Outfit: Piscarilius",
"Graceful Outfit: Shayzien",
"Graceful Outfit: Kourend",
"Graceful Outfit: Agility Arena",
"Graceful Outfit: Hallowed",
"Graceful Outfit: Trailblazer",
"Graceful Outfit: Adventurer",
"Graceful Outfit: Varlamore",
"Naval Attire (blue)",
"Naval Attire (green)",
"Naval Attire (red)",
"Naval Attire (brown)",
"Naval Attire (black)",
"Naval Attire (purple)",
"Naval Attire (grey)",
"Elder Chaos Druid Robes",
"Evil Chicken Costume",
"Pheasant Costume",
"Pyromancer Outfit",
"Warm Gloves",
"Tribal Outfit (brown)",
"Tribal Outfit (blue)",
"Tribal Outfit (yellow)",
"Tribal Outfit (pink)",
"Bruma Torch",
"Golden Tench",
"Pearl Fishing Rod",
"Pearl Barbarian Rod",
"Pearl Fly Fishing Rod",
"Oily Pearl Fishing Rod",
"Fish Sack",
"Log Basket",
"Forestry Kit",
"Mudskipper Kit",
"Dark Flippers",
"Bounty Hunter Hat (tier 1)",
"Bounty Hunter Hat (tier 2)",
"Bounty Hunter Hat (tier 3)",
"Bounty Hunter Hat (tier 4)",
"Bounty Hunter Hat (tier 5)",
"Bounty Hunter Hat (tier 6)",
"Ancestral Robes",
"Ancestral Robes (Twisted)",
"Flag: Cutthroat",
"Flag: Gilded Smile",
"Flag: Bronze Fist",
"Flag: Lucky Shot",
"Flag: Treasure",
"Flag: Phasmatys",
"Carpenter\u0027s Outfit",
"Amy\u0027s Saw",
"Zealot\u0027s Prayer Robes",
"Imcando Hammer",
"Ancient Ceremonial Robes",
"Raiments of the Eye",
"Raiments of the Eye (green)",
"Raiments of the Eye (red)",
"Raiments of the Eye (blue)",
"Smiths\u0027 Uniform",
"Elder Chaos Druid Robes (ornate)",
"Dagon\u0027hai Robes (ornate)",
"Mask of Rebirth",
"Dark Squall Robes",
"Twilight Emissary Robes",
"Fletching Knife",
"Greenman Mask",
"Orange",
"Storm Cruiser\u0027s Kit",
"Swamp Cruiser\u0027s Kit",
"Crystal Glider\u0027s Kit",
"Castle Wars Decorative Armour (1)",
"Castle Wars Decorative Armour (2)",
"Castle Wars Decorative Armour (3)",
"Castle Wars Mage Armour",
"Castle Wars Ranger Armour",
"Void Knight Armour",
"Void Knight Elite Armour",
"Rogue Armour",
"Spined Armour",
"Rockshell Armour",