-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathJavascriptUrls.txt
3629 lines (3629 loc) · 194 KB
/
JavascriptUrls.txt
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
${AUDIO_URL}international2020/${}.wav
${AUDIO_URL}international2022/${}.wav
${BASE_URL_SHARED_CDN}/store_item_assets/${}
${BASE_URL_SHARED_CDN}app_config/timeline/${}/${}
${BASE_URL_SHARED_CDN}social_sharing/
${BASE_URL_SHARED_CDN}store_item_assets/${asset_url_format}
${BASE_URL_SHARED_CDN}store_item_assets/assetportal/preview//${}/${}/${}
${BASE_URL_SHARED_CDN}store_item_assets/mm/${}/${}/${path}${}
${BASE_URL_SHARED_CDN}store_item_assets/optin/${}/${}/${}
${BASE_URL_SHARED_CDN}store_item_assets/steam/apps/${}/${}
${BASE_URL_STORE_CDN_ASSETS}promo/steamawards2023/backgrounds/awardbg_${}.jpg?v=3
${BASE_URL_STORE_CDN_ASSETS}promo/steamawards2023/level_01.png
${BASE_URL_STORE_CDN_ASSETS}promo/steamawards2023/level_02.png
${BASE_URL_STORE_CDN_ASSETS}promo/steamawards2023/level_03.png
${BASE_URL_STORE_CDN_ASSETS}promo/steamawards2023/level_04.png
${BASE_URL_STORE_CDN_ASSETS}promo/steamawards2024/backgrounds/${internal_name}.jpg?v=1
${BASE_URL_STORE_CDN_ASSETS}promo/steamawards2024/backgrounds/${}.jpg?v=3
${BASE_URL_STORE_CDN_ASSETS}promo/steamawards2024/level_0${}.png
${BASE_URL_STORE_CDN_ASSETS}steamdeck/steamdeck_promo_0${}.png?v=2
${BASE_URL}${patch_website}
${BASE_URL}${}
${BASE_URL}${}/checkforshortfilmownership/
${BASE_URL}${}/grantshortfilmpackage
${BASE_URL}${}/redirecttosteamcommunityshortfilm/
${BASE_URL}?l=${}
${BASE_URL}app/${}
${BASE_URL}app/${}?snr=${LINK_PARAM}
${BASE_URL}applications/dpc_get
${BASE_URL}applications/dpc_logout
${BASE_URL}applications/dpc_post
${BASE_URL}blog
${BASE_URL}datafeed/abilitydata
${BASE_URL}datafeed/abilitylist
${BASE_URL}datafeed/herodata
${BASE_URL}datafeed/herolist
${BASE_URL}datafeed/itemdata
${BASE_URL}datafeed/itemlist
${BASE_URL}datafeed/patchnotes
${BASE_URL}datafeed/patchnoteslist
${BASE_URL}eminenceofristul
${BASE_URL}esports/ti11/schedule
${BASE_URL}heroes
${BASE_URL}ingest
${BASE_URL}international2023
${BASE_URL}international2024
${BASE_URL}items
${BASE_URL}matches/match/${}?u=${}&appid=${DOTA_APP_ID}
${BASE_URL}matches/match/${}?u=${}&appid=${DOTA_APP_ID}&highlight=${}
${BASE_URL}newsentry/3398555399418412272
${BASE_URL}oauth/logout
${BASE_URL}oauth/logout?goto=${}
${BASE_URL}patches
${BASE_URL}persona/showplayerreact/
${BASE_URL}personadetails/${}?u=${}&appid=${DOTA_APP_ID}
${BASE_URL}play
${BASE_URL}quiz
${BASE_URL}react/getfavoriteteams
${BASE_URL}react/getlivestreams
${BASE_URL}react/getspoilerblock
${BASE_URL}react/getwatchedgames
${BASE_URL}react/inference
${BASE_URL}react/setspoilerblock
${BASE_URL}react/setwatchedgame
${BASE_URL}react/togglefavoriteteam
${BASE_URL}recommender/${STEAM_ID}/cart?snr=${LINK_PARAM}
${BASE_URL}recommender/${STEAM_ID}/details?appid=${}&sessionid=${SESSION_ID}
${BASE_URL}recommender/${STEAM_ID}/inputs?sessionid=${SESSION_ID}&steamid=${STEAM_ID}
${BASE_URL}recommender/${STEAM_ID}/results?sessionid=${SESSION_ID}&steamid=${STEAM_ID}&include_played=${}&algorithm=${}&reinference=${}&model_version=${}${}
${BASE_URL}recommender/${STEAM_ID}/savesettings
${BASE_URL}recommender/${STEAM_ID}/stats
${BASE_URL}recommender/${STEAM_ID}/tags?sessionid=${SESSION_ID}
${BASE_URL}recommender/${STEAM_ID}/wishlist?snr=${LINK_PARAM}
${BASE_URL}store
${BASE_URL}teams/getpersonaname/
${BASE_URL}teams/getugcfilelinks/
${BASE_URL}theonetrueking
${BASE_URL}webapi/IDOTA2DPC/${}/v001
${BASE_URL}webapi/IDOTA2DPC/GetDPCSearchResults/v001
${BASE_URL}webapi/IDOTA2DPC/GetDPCStandings/v001
${BASE_URL}webapi/IDOTA2DPC/GetLeagueMatchMinimal/v001
${BASE_URL}webapi/IDOTA2DPC/GetLeagueResults/v001
${BASE_URL}webapi/IDOTA2DPC/GetPlayerInfo/v001
${BASE_URL}webapi/IDOTA2Fantasy/GetPlayerInfo/v0001
${BASE_URL}webapi/IDOTA2League/GetLeagueData/v001
${BASE_URL}webapi/IDOTA2League/GetLeaguesData/v001
${BASE_URL}webapi/IDOTA2League/GetPrizePool/v001
${BASE_URL}webapi/IDOTA2Teams/AddTeamMember/v0001
${BASE_URL}webapi/IDOTA2Teams/EditTeamName/v0001
${BASE_URL}webapi/IDOTA2Teams/GetFanContentStatus/v0001
${BASE_URL}webapi/IDOTA2Teams/GetRegisteredTeams/v001
${BASE_URL}webapi/IDOTA2Teams/GetSingleTeamInfo/v001
${BASE_URL}webapi/IDOTA2Teams/GetTeamAuditInformation/v001
${BASE_URL}webapi/IDOTA2Teams/RemoveTeamMember/v0001?u=${}&appid=${DOTA_APP_ID}&team_id=${}&account_id=${account_id}
${BASE_URL}webapi/IDOTA2Teams/SetTeamAdmin/v0001?u=${}&appid=${DOTA_APP_ID}&team_id=${}&account_id=${account_id}
${BASE_URL}webapi/IDOTA2Teams/UpdateRegisteredTeamData/v0001?u=${}&appid=${DOTA_APP_ID}
${BASE_URL}workshop/builds
${CDN_URL}/apps/dota2/images/
${CDN_URL}/apps/dota2/images/small_ranks/ranked_icons_emoticon_${}.png
${CDN_URL}apps/${}/header.jpg
${CDN_URL}apps/dota2/images/leagues/${leagueID}/images/image_8.png
${CDN_URL}apps/dota2/images/leagues/${league_id}/images/image_9.png
${CDN_URL}apps/dota2/images/leagues/${}/images/image_8.png
${CDN_URL}apps/dota2/images/leagues/${}/images/image_9.png
${CDN_URL}apps/dota2/players/${nAccountID}.png
${CDN_URL}apps/dota2/teamlogos/${nTeamID}.png
${CDN_URL}apps/dota2/teamlogos/${}.png
${CHAT_BASE_URL}${offlineImage}
${CHAT_BASE_URL}actions/EmoticonData
${CHAT_BASE_URL}actions/ajaxgetgoldenprofiledata/
${CHAT_BASE_URL}broadcast/addbroadcastwebrtccandidate
${CHAT_BASE_URL}broadcast/ajaxupdatechannelmod
${CHAT_BASE_URL}broadcast/ajaxupdateusermute
${CHAT_BASE_URL}broadcast/getbroadcastinfo/
${CHAT_BASE_URL}broadcast/getbroadcastmpd/
${CHAT_BASE_URL}broadcast/getbroadcastwebrtccandidates
${CHAT_BASE_URL}broadcast/getchatinfo
${CHAT_BASE_URL}broadcast/getclipdetails
${CHAT_BASE_URL}broadcast/heartbeat/
${CHAT_BASE_URL}broadcast/setbroadcastwebrtcanswer
${CHAT_BASE_URL}broadcast/stopwatching
${CHAT_BASE_URL}chat
${CHAT_BASE_URL}chat/avatarfileupload/
${CHAT_BASE_URL}chat/beginfileupload/
${CHAT_BASE_URL}chat/commitfileupload/
${CHAT_BASE_URL}comment/recommendation/formattinghelp
${CHAT_BASE_URL}miniprofile/${accountid}/json
${CHAT_BASE_URL}miniprofile/${m_accountid}/json/?origin=${}
${CHAT_BASE_URL}profiles/${steamid64}/ajaxsetpersonaname/
${CHAT_BASE_URL}public/images/broadcast/cs2_major2024_sha_icon.png
${CHAT_BASE_URL}public/images/broadcast/csgo_esl_2019_icon.png
${CHAT_BASE_URL}public/images/broadcast/yule_30x30.png
${CLAN_CDN_ASSET_URL}images/
${COMMUNITY_BASE_URL}
${COMMUNITY_BASE_URL}${APPID ? _ : _}
${COMMUNITY_BASE_URL}${_ ? "?" : ""}${}${_ ? "&" : ""}${}
${COMMUNITY_BASE_URL}${_ ? "minigame/ajaxgetgameitemdefsforeditor" : "minigame/ajaxgetgameitemdefs"}
${COMMUNITY_BASE_URL}${_ ? _ : _}/
${COMMUNITY_BASE_URL}${url}
${COMMUNITY_BASE_URL}${vanity_url ? _ : _}
${COMMUNITY_BASE_URL}${}
${COMMUNITY_BASE_URL}${}/
${COMMUNITY_BASE_URL}/actions/ConvertHTMLToBBCode
${COMMUNITY_BASE_URL}/actions/QueryLocations/
${COMMUNITY_BASE_URL}/actions/QueryLocations/${countrycode}/
${COMMUNITY_BASE_URL}/actions/QueryLocations/${countrycode}/${statecode}
${COMMUNITY_BASE_URL}/app/${m_unGamePlayedAppID}
${COMMUNITY_BASE_URL}/gid/${}
${COMMUNITY_BASE_URL}/gid/${}${}
${COMMUNITY_BASE_URL}/gid/${}/ajaxcreateupdatedeletepartnerevents/
${COMMUNITY_BASE_URL}/gid/${}/ajaxlisteventsfordashboard/
${COMMUNITY_BASE_URL}/gid/${}/announcements/ajaxdeleteannouncement/${}
${COMMUNITY_BASE_URL}/gid/${}/deleteimage/
${COMMUNITY_BASE_URL}/gid/${}/getimages/
${COMMUNITY_BASE_URL}/gid/${}/partnerevents/edit/${}
${COMMUNITY_BASE_URL}/gid/${}/resizeimage/
${COMMUNITY_BASE_URL}/ogg/${}/partnerevents
${COMMUNITY_BASE_URL}/profiles/${id}
${COMMUNITY_BASE_URL}/profiles/${}/ajaxgetbadgeinfo/${}
${COMMUNITY_BASE_URL}?subsection=workshop
${COMMUNITY_BASE_URL}actions/AddFriendAjax
${COMMUNITY_BASE_URL}actions/FileUploader/
${COMMUNITY_BASE_URL}actions/GameAvatars/?json=1&l=${LANGUAGE}
${COMMUNITY_BASE_URL}actions/SearchApps/${}
${COMMUNITY_BASE_URL}actions/ajaxcreateupdatediscountevent
${COMMUNITY_BASE_URL}actions/ajaxgetuserpartnerinfo
${COMMUNITY_BASE_URL}actions/ajaxgetwatchvodtoken
${COMMUNITY_BASE_URL}actions/ajaxlistfriends
${COMMUNITY_BASE_URL}actions/ajaxresolveusers
${COMMUNITY_BASE_URL}actions/selectPreviousAvatar
${COMMUNITY_BASE_URL}app/${appId}
${COMMUNITY_BASE_URL}app/${appid}
${COMMUNITY_BASE_URL}app/${appid}/eventcomments/${forumTopicGID}
${COMMUNITY_BASE_URL}app/${unAppID}
${COMMUNITY_BASE_URL}app/${}
${COMMUNITY_BASE_URL}app/${}/discussions/
${COMMUNITY_BASE_URL}broadcast/broadcastdebuginfo
${COMMUNITY_BASE_URL}broadcast/chatonly/${}
${COMMUNITY_BASE_URL}broadcast/report
${COMMUNITY_BASE_URL}broadcast/setbroadcastrestriction
${COMMUNITY_BASE_URL}broadcast/share/${}?site=${}
${COMMUNITY_BASE_URL}broadcast/stopbroadcast
${COMMUNITY_BASE_URL}broadcast/unban
${COMMUNITY_BASE_URL}broadcast/updatebroadcastsettings
${COMMUNITY_BASE_URL}broadcast/watch/${steamid64}
${COMMUNITY_BASE_URL}broadcast/watch/${}
${COMMUNITY_BASE_URL}chat
${COMMUNITY_BASE_URL}chat/
${COMMUNITY_BASE_URL}chat/invite/${}
${COMMUNITY_BASE_URL}comment/${}/formattinghelp${_ ? "?ajax=1" : ""}
${COMMUNITY_BASE_URL}demos/ajaxgetappdemoinfo
${COMMUNITY_BASE_URL}discussions
${COMMUNITY_BASE_URL}economy/image/${}/512x512
${COMMUNITY_BASE_URL}economy/profilebackground/items/${appid}/${item_image_large}
${COMMUNITY_BASE_URL}economy/profilebackground/items/${appid}/${item_image_large}?size=320x200
${COMMUNITY_BASE_URL}eventadmin/ajaxgetcapabilities
${COMMUNITY_BASE_URL}eventadmin/ajaxupdatepartneremailtarget
${COMMUNITY_BASE_URL}eventemail/ajaxgetpartneremailstats
${COMMUNITY_BASE_URL}eventemail/ajaxsetuppartneremail
${COMMUNITY_BASE_URL}eventemail/ajaxtestfireeventnotification
${COMMUNITY_BASE_URL}eventemail/ajaxtestfirepartnereventemail
${COMMUNITY_BASE_URL}faqs/${VANITY_ID}/ajaxpullfromcrowdin/${}
${COMMUNITY_BASE_URL}faqs/${VANITY_ID}/ajaxpushtocrowdin/${}
${COMMUNITY_BASE_URL}forum/${}/${}/deletetopic/
${COMMUNITY_BASE_URL}friends/add
${COMMUNITY_BASE_URL}games/${_ ? _ : _}/partnerevents/
${COMMUNITY_BASE_URL}games/${}/ajaxgetvanityandclanid/
${COMMUNITY_BASE_URL}gid/${broadcast_item_drops_details_clan_accountid}/partnerevents/view/${broadcast_item_drops_details_event_gid}
${COMMUNITY_BASE_URL}gid/${clan_accountid}/partnerevents/view/${clan_event_gid}
${COMMUNITY_BASE_URL}gid/${}
${COMMUNITY_BASE_URL}gid/${}/ajaxcreateupdatedeletepartnerevents/
${COMMUNITY_BASE_URL}gid/${}/ajaxgeteventhistory
${COMMUNITY_BASE_URL}gid/${}/ajaxgeteventpublishaudit
${COMMUNITY_BASE_URL}gid/${}/ajaxgetlastupdatetimeforpartnerevent
${COMMUNITY_BASE_URL}gid/${}/ajaxgetpartnereventpermissions/
${COMMUNITY_BASE_URL}gid/${}/ajaxgetsalesectionstats?event_gid=${}
${COMMUNITY_BASE_URL}gid/${}/ajaxgetvanityandclanid/
${COMMUNITY_BASE_URL}gid/${}/ajaxrollbackevent
${COMMUNITY_BASE_URL}gid/${}/announcements/ajaxgetlocalization/${}
${COMMUNITY_BASE_URL}gid/${}/announcements/ajaxgetmyvote/${AnnouncementGID}
${COMMUNITY_BASE_URL}gid/${}/announcements/rate/${AnnouncementGID}
${COMMUNITY_BASE_URL}gid/${}/announcements/share/${AnnouncementGID}?site=${}
${COMMUNITY_BASE_URL}gid/${}/edit
${COMMUNITY_BASE_URL}gid/${}/eventcomments/${forumTopicGID}
${COMMUNITY_BASE_URL}gid/${}/fetchyoutubeimage?videoid=${}
${COMMUNITY_BASE_URL}gid/${}/hasclanimagefile
${COMMUNITY_BASE_URL}gid/${}/members/
${COMMUNITY_BASE_URL}gid/${}/membersManage
${COMMUNITY_BASE_URL}gid/${}/partnerevents/
${COMMUNITY_BASE_URL}gid/${}/partnerevents/${}/edit
${COMMUNITY_BASE_URL}gid/${}/partnerevents/edit/${GID}?tab=sale
${COMMUNITY_BASE_URL}gid/${}/partnerevents/edit/${GID}?tab=sale#SalePageEdit_SaleBanner
${COMMUNITY_BASE_URL}gid/${}/partnerevents/edit/${clanEventGID}
${COMMUNITY_BASE_URL}gid/${}/partnerevents/edit/${clan_event_gid}
${COMMUNITY_BASE_URL}gid/${}/partnerevents/edit/${eventGID}
${COMMUNITY_BASE_URL}gid/${}/partnerevents/edit/${gid_clan_event}
${COMMUNITY_BASE_URL}gid/${}/partnerevents/edit/${sale_clan_event_gid}?tab=sale
${COMMUNITY_BASE_URL}gid/${}/partnerevents/edit/${}
${COMMUNITY_BASE_URL}gid/${}/partnerevents/edit/${}?tab=sale
${COMMUNITY_BASE_URL}gid/${}/partnerevents/preview/${}
${COMMUNITY_BASE_URL}gid/${}/showclanimage/?image_hash_and_ext=${}
${COMMUNITY_BASE_URL}group/${clanAccountID}
${COMMUNITY_BASE_URL}groups
${COMMUNITY_BASE_URL}groups/${VANITY_ID}
${COMMUNITY_BASE_URL}groups/${vanity_url}/eventcomments/${forumTopicGID}
${COMMUNITY_BASE_URL}groups/${}/ajaxgetvanityandclanid/
${COMMUNITY_BASE_URL}groups/SteamClientBeta/discussions/3/
${COMMUNITY_BASE_URL}groups/SteamLabs/discussions/14/
${COMMUNITY_BASE_URL}groups/SteamLabs/discussions/15/
${COMMUNITY_BASE_URL}groups/SteamLabs/discussions/17/
${COMMUNITY_BASE_URL}groups/bigpicture/discussions/4/
${COMMUNITY_BASE_URL}id/${m_strCustomURL}/
${COMMUNITY_BASE_URL}id/${m_strProfileURL}/
${COMMUNITY_BASE_URL}id/${profile_url}
${COMMUNITY_BASE_URL}invites/ajaxcreate
${COMMUNITY_BASE_URL}invites/ajaxgetall
${COMMUNITY_BASE_URL}linkfilter/?u=${}
${COMMUNITY_BASE_URL}market
${COMMUNITY_BASE_URL}market/listings/${}/${}
${COMMUNITY_BASE_URL}migrate/ajaxcreateupdatesalepage
${COMMUNITY_BASE_URL}migrate/ajaxgetallapps
${COMMUNITY_BASE_URL}migrate/ajaxgetallclans
${COMMUNITY_BASE_URL}migrate/ajaxgetsalepagestomigrate
${COMMUNITY_BASE_URL}miniprofile/${}/json/?origin=${STORE_BASE_URL}
${COMMUNITY_BASE_URL}my
${COMMUNITY_BASE_URL}my/badges/
${COMMUNITY_BASE_URL}my/badges/${}
${COMMUNITY_BASE_URL}my/edit/avatar
${COMMUNITY_BASE_URL}my/edit/avatar/${}
${COMMUNITY_BASE_URL}my/edit/background
${COMMUNITY_BASE_URL}my/edit/favoritebadge
${COMMUNITY_BASE_URL}my/edit/miniprofile
${COMMUNITY_BASE_URL}my/friends/add
${COMMUNITY_BASE_URL}my/gamecards/${}
${COMMUNITY_BASE_URL}my/gamenotifications/
${COMMUNITY_BASE_URL}my/groups/
${COMMUNITY_BASE_URL}my/itemcollection
${COMMUNITY_BASE_URL}my/moderatormessages
${COMMUNITY_BASE_URL}my/moderatormessages/${msgid}
${COMMUNITY_BASE_URL}ogg/${appId}/partnerevents/create/
${COMMUNITY_BASE_URL}ogg/${appid}/announcements/ajaxgetmyvote/${AnnouncementGID}
${COMMUNITY_BASE_URL}ogg/${}/ajaxgetappbranches
${COMMUNITY_BASE_URL}ogg/${}/ajaxgetappvisibilityrounds
${COMMUNITY_BASE_URL}ogg/${}/ajaxgetvanityandclanid/
${COMMUNITY_BASE_URL}ogg/${}/ajaxisvisibleinsc
${COMMUNITY_BASE_URL}ogg/${}/partnerevents
${COMMUNITY_BASE_URL}ogg/${}/partnerevents/create
${COMMUNITY_BASE_URL}ogg/${}/partnerevents/create/
${COMMUNITY_BASE_URL}ogg/${}/selectAvatar
${COMMUNITY_BASE_URL}parental/ajaxunlock/
${COMMUNITY_BASE_URL}partnereventdata/ajaxgetprivatedata
${COMMUNITY_BASE_URL}partnereventdata/ajaxrequestsalepagereview
${COMMUNITY_BASE_URL}partnereventdata/ajaxsetprivatedata
${COMMUNITY_BASE_URL}profiles/${STEAM_ID}/wishlist
${COMMUNITY_BASE_URL}profiles/${steamid64}/
${COMMUNITY_BASE_URL}profiles/${steamid64}/tradeoffers/sent/#tradeofferid_${}
${COMMUNITY_BASE_URL}profiles/${steamid}
${COMMUNITY_BASE_URL}profiles/${steamid}/
${COMMUNITY_BASE_URL}profiles/${steamid}/edit/goldenprofile
${COMMUNITY_BASE_URL}profiles/${steamid}/edit/showcases
${COMMUNITY_BASE_URL}profiles/${steamid}/friendscommon
${COMMUNITY_BASE_URL}profiles/${steamid}/gamenotifications
${COMMUNITY_BASE_URL}profiles/${steamid}/home/invites
${COMMUNITY_BASE_URL}profiles/${steamid}/inventory
${COMMUNITY_BASE_URL}profiles/${steamid}/inventory/#pending_gifts
${COMMUNITY_BASE_URL}profiles/${steamid}/notifications
${COMMUNITY_BASE_URL}profiles/${steamid}/notifications#comments
${COMMUNITY_BASE_URL}profiles/${steamid}/tradeoffers
${COMMUNITY_BASE_URL}profiles/${}
${COMMUNITY_BASE_URL}profiles/${}/
${COMMUNITY_BASE_URL}profiles/${}/ajaxpostuserstatus
${COMMUNITY_BASE_URL}profiles/${}/friends/pending
${COMMUNITY_BASE_URL}profiles/${}/home
${COMMUNITY_BASE_URL}profiles/${}/inventory
${COMMUNITY_BASE_URL}profiles/${}/inventory/#pending_gifts
${COMMUNITY_BASE_URL}profiles/${}/notifications#comments
${COMMUNITY_BASE_URL}profiles/${}/previewsingleshowcase/?customization_type=${}&level=${}
${COMMUNITY_BASE_URL}profiles/${}/stats/${}
${COMMUNITY_BASE_URL}profiles/${}/stats/appid/${}/achievements
${COMMUNITY_BASE_URL}profiles/${}/tradeoffers
${COMMUNITY_BASE_URL}profiles/${}/tradeoffers/sent/#tradeofferid_${}
${COMMUNITY_BASE_URL}profiles/${}?previewprofile=1&appid=${}&itemtype=${}
${COMMUNITY_BASE_URL}public/images/events/media_play_icon.png
${COMMUNITY_BASE_URL}questions/${VANITY_ID}${}${}
${COMMUNITY_BASE_URL}questions/${VANITY_ID}/ajaxanswerquestion/${}
${COMMUNITY_BASE_URL}questions/${VANITY_ID}/ajaxaskquestion/${}
${COMMUNITY_BASE_URL}questions/${VANITY_ID}/ajaxcreateqanda
${COMMUNITY_BASE_URL}questions/${VANITY_ID}/ajaxdeleteqanda/${}
${COMMUNITY_BASE_URL}questions/${VANITY_ID}/ajaxgetqandasforgroup
${COMMUNITY_BASE_URL}questions/${VANITY_ID}/ajaxmoderatequestion/${}
${COMMUNITY_BASE_URL}questions/${VANITY_ID}/ajaxrenameqanda/${}
${COMMUNITY_BASE_URL}questions/${VANITY_ID}/ajaxvoteforquestion/${}
${COMMUNITY_BASE_URL}questions/${VANITY_ID}/view/${gidSession}
${COMMUNITY_BASE_URL}questions/${VANITY_ID}/view/${globalQandASessionID}
${COMMUNITY_BASE_URL}sale/ajaxdiscounteventdetails
${COMMUNITY_BASE_URL}sale/ajaxdiscountevents
${COMMUNITY_BASE_URL}sale/ajaxgetcategoriesbytag
${COMMUNITY_BASE_URL}sale/ajaxgetcommunityitemsfordrops
${COMMUNITY_BASE_URL}sale/ajaxgetsalepagefeaturedapptagid/
${COMMUNITY_BASE_URL}sale/ajaxoptineventdetail
${COMMUNITY_BASE_URL}sale/ajaxoptinsummary
${COMMUNITY_BASE_URL}saleoptin/ajaxgetactiveoptins
${COMMUNITY_BASE_URL}saleoptin/ajaxgetoptintagids
${COMMUNITY_BASE_URL}search/groups/?text=${}
${COMMUNITY_BASE_URL}search/users
${COMMUNITY_BASE_URL}search/users/
${COMMUNITY_BASE_URL}search/users/#text=${}
${COMMUNITY_BASE_URL}sharedfiles/filedetails/?id=${published_file_id}
${COMMUNITY_BASE_URL}sharedfiles/filedetails/?id=${sharedFileID}
${COMMUNITY_BASE_URL}sharedfiles/filedetails/?id=${url}
${COMMUNITY_BASE_URL}sharedfiles/filedetails/?id=${}
${COMMUNITY_BASE_URL}stats/${appid}/achievements/
${COMMUNITY_BASE_URL}stats/${appid}/leaderboards/
${COMMUNITY_BASE_URL}tempcloud/beginfileupload/
${COMMUNITY_BASE_URL}tempcloud/commitfileupload/
${COMMUNITY_BASE_URL}textfilter/ajaxgetcommunitypreferences
${COMMUNITY_BASE_URL}textfilter/ajaxgetfriendslist
${COMMUNITY_BASE_URL}textfilter/ajaxgettextfiltercustomwords
${COMMUNITY_BASE_URL}tradeoffer/${}/
${COMMUNITY_BASE_URL}tradeoffer/new/?partner=${}
${COMMUNITY_BASE_URL}tradeoffer/new/?partner=${}&for_items[]=${}_${}_${}
${COMMUNITY_BASE_URL}tradeoffer/new/?partner=${}&token=${}
${COMMUNITY_BASE_URL}user/
${COMMUNITY_CDN_ASSET_URL}${_ ? "lny2020" : "winter2019"}/roomeffects/96px/${}.png
${COMMUNITY_CDN_ASSET_URL}${imgHeadshot}
${COMMUNITY_CDN_ASSET_URL}${screenshot}
${COMMUNITY_CDN_ASSET_URL}${}/roomeffects/${}/${}
${COMMUNITY_CDN_ASSET_URL}${}/roomeffects/96px/${}.png
${COMMUNITY_CDN_ASSET_URL}${}/roomeffects/fireworks/${}
${COMMUNITY_CDN_ASSET_URL}prettify/prettify.js
${COMMUNITY_CDN_ASSET_URL}winter2019/roomeffects/96px/flake_${}.png
${COMMUNITY_CDN_ASSET_URL}winter2019/roomeffects/snowball/
${COMMUNITY_CDN_URL}economy/boosterpack/${}?l=${LANGUAGE}
${COMMUNITY_CDN_URL}economy/emoticon/${}
${COMMUNITY_CDN_URL}economy/emoticonhoverjson/${}?l=${}&origin=${}
${COMMUNITY_CDN_URL}economy/emoticonlarge/${}
${COMMUNITY_CDN_URL}economy/image/${icon_url}
${COMMUNITY_CDN_URL}economy/profilebackground/${image_large}?size=${}x${}
${COMMUNITY_CDN_URL}economy/stickerjson/${}?l=${}&origin=${}
${COMMUNITY_CDN_URL}public/images/broadcast/apphub_default_thumbnail.jpg
${COMMUNITY_CDN_URL}public/images/profile/2020/bg_dots.png
${COMMUNITY_CDN_URL}public/images/sharedfiles/guides/
${COMMUNITY_CDN_URL}public/images/skin_1/actionArrowDnWhite.gif
${COMMUNITY_CDN_URL}public/images/skin_1/comment_modindicator_moderator.png
${COMMUNITY_CDN_URL}public/images/skin_1/comment_modindicator_officer.png
${COMMUNITY_CDN_URL}public/images/trans.gif
${COMMUNITY_CDN_URL}public/shared/images/responsive/share_steam_logo.png
${COMMUNITY_CDN_URL}public/shared/images/responsive/youtube_16x9_placeholder.gif
${COMMUNITY_CDN_URL}public/sounds/webui/steam_at_mention.m4a?v=1
${COMMUNITY_CDN_URL}public/sounds/webui/steam_chatroom_notification.m4a?v=1
${COMMUNITY_CDN_URL}public/sounds/webui/steam_phonecall.m4a?v=1
${COMMUNITY_CDN_URL}public/sounds/webui/steam_rpt_join.m4a
${COMMUNITY_CDN_URL}public/sounds/webui/steam_rpt_leave.m4a
${COMMUNITY_CDN_URL}public/sounds/webui/steam_ui_ptt_short_01_quiet.m4a
${COMMUNITY_CDN_URL}public/sounds/webui/steam_ui_ptt_short_02_quiet.m4a
${COMMUNITY_CDN_URL}public/sounds/webui/steam_voice_channel_enter.m4a?v=1
${COMMUNITY_CDN_URL}public/sounds/webui/steam_voice_channel_exit.m4a?v=1
${COMMUNITY_CDN_URL}public/sounds/webui/ui_steam_message_old_smooth.m4a
${COMMUNITY_CDN_URL}public/sounds/webui/ui_steam_smoother_friend_join.m4a
${COMMUNITY_CDN_URL}public/sounds/webui/ui_steam_smoother_friend_online.m4a
${COMMUNITY_CDN_URL}textfilter/gettextfilterdictionary?type=banned&language=${}&v=${}&origin=${}
${COMMUNITY_CDN_URL}textfilter/gettextfilterdictionary?type=banned&language=${}&v=1&origin=${}
${COMMUNITY_CDN_URL}textfilter/gettextfilterdictionary?type=clean_public&language=${}&v=${}&origin=${}
${COMMUNITY_CDN_URL}textfilter/gettextfilterdictionary?type=clean_public&language=${}&v=1&origin=${}
${COMMUNITY_CDN_URL}textfilter/gettextfilterdictionary?type=profanity&language=${}&v=${}&origin=${}
${COMMUNITY_CDN_URL}textfilter/gettextfilterdictionary?type=profanity&language=${}&v=1&origin=${}
${COMMUNITY_URL}app/${DOTA_APP_ID}/guides
${COMMUNITY_URL}app/570/guides
${COMMUNITY_URL}broadcast/watchnew/${}?origin=https://${}&enablechat=0&enablevideo=1&iframe=1
${COMMUNITY_URL}oauth/login?client_id=${CLIENT_ID}&response_type=token&state=${}
${COMMUNITY_URL}oauth/login?client_id=${CLIENT_ID}&response_type=token&state=filmcontest/
${HELP_BASE_URL}
${HELP_BASE_URL}${strISOCode}/
${HELP_BASE_URL}${strISOCode}/faqs/view/0CAD-3B4D-B874-A065
${HELP_BASE_URL}${}/
${HELP_BASE_URL}en/ticketmaster/ticket/${}
${HELP_BASE_URL}en/wizard/HelpRequest/${_ ? _ : _}
${HELP_BASE_URL}en/wizard/HelpRequest/${}
${HELP_BASE_URL}en/wizard/HelpWithPublishing?issueid=904
${HELP_BASE_URL}en/wizard/HelpWithPublishing?issueid=919
${HELP_BASE_URL}en/wizard/HelpWithPublishing?issueid=933
${HELP_BASE_URL}faqs/view/${k_strGRFAQ}
${HELP_BASE_URL}faqs/view/${url_code}
${HELP_BASE_URL}faqs/view/054C-3167-DD7F-49D4
${HELP_BASE_URL}faqs/view/0689-74B8-92AC-10F2
${HELP_BASE_URL}faqs/view/548F-BC55-89EB-1BC8
${HELP_BASE_URL}faqs/view/71D3-35C2-AD96-AA3A
${HELP_BASE_URL}wizard/HelpRecoverFamilyMember?childid=${}
${HELP_BASE_URL}wizard/HelpRequest/${ticket}
${HELP_BASE_URL}wizard/HelpRequests
${HELP_BASE_URL}wizard/HelpWithLimitedAccount
${HELP_BASE_URL}wizard/HelpWithLogin
${HELP_BASE_URL}wizard/HelpWithLogin?redir=${}
${HELP_BASE_URL}wizard/HelpWithLoginInfo?lost=8&issueid=402
${HELP_BASE_URL}wizard/HelpWithPublishing?issueid=919
${HELP_BASE_URL}wizard/HelpWithPublishing?issueid=920
${HELP_BASE_URL}wizard/HelpWithPublishing?issueid=927
${HELP_BASE_URL}wizard/HelpWithSteamGuardCode
${HELP_BASE_URL}wizard/HelpWithSteamMobileChat
${IMG_URL}${_ ? "favorite_star.png" : "favorite_star_empty.png"}
${IMG_URL}${image}
${IMG_URL}${img_after}
${IMG_URL}${img_before}
${IMG_URL}${strBackgroundImage}
${IMG_URL}${titleButtonImage}
${IMG_URL}${}
${IMG_URL}${}.png
${IMG_URL}${}.png
${IMG_URL}${}/icons/scroll_arrow.png
${IMG_URL}${}/river_vials/river_vial_${}1.jpg
${IMG_URL}${}/river_vials/river_vial_icon_${}.png
${IMG_URL}/${}
${IMG_URL}/checkout/computer.png
${IMG_URL}/cs2/audio.png
${IMG_URL}/cs2/header_ctt.png
${IMG_URL}/cs2/logo_cs2_header.svg
${IMG_URL}/cs2/smokes_vid3.mp4
${IMG_URL}/cs2/smokes_vid3.webm
${IMG_URL}/dpc/dpc_logo.png
${IMG_URL}/dpc/logo_lc_quals.png
${IMG_URL}/dpc/ti10/facebook.png
${IMG_URL}/dpc/ti10/insta.png
${IMG_URL}/dpc/ti10/ti_short_logo.png
${IMG_URL}/dpc/ti10/twitch.png
${IMG_URL}/dpc/ti10/twitter.png
${IMG_URL}/dpc/ti10/winners_statue.png
${IMG_URL}/dpc/ti10/youtube.png
${IMG_URL}/dpc/ti11/fantasy.png
${IMG_URL}/dpc/ti11/key_heroes.png
${IMG_URL}/dpc/ti11/predictions.png
${IMG_URL}/dpc/ti11/supporters_club.png
${IMG_URL}/heroes/stats/icon_armor.png
${IMG_URL}/heroes/stats/icon_attack_range.png
${IMG_URL}/heroes/stats/icon_attack_time.png
${IMG_URL}/heroes/stats/icon_damage.png
${IMG_URL}/heroes/stats/icon_magic_resist.png
${IMG_URL}/heroes/stats/icon_movement_speed.png
${IMG_URL}/heroes/stats/icon_projectile_speed.png
${IMG_URL}/heroes/stats/icon_turn_rate.png
${IMG_URL}/heroes/stats/icon_vision.png
${IMG_URL}/home/battle_mobile.jpg
${IMG_URL}/home/dpc_ti9_1.jpg
${IMG_URL}/home/dpc_ti9_2.jpg
${IMG_URL}/home/dpc_ti9_3.jpg
${IMG_URL}/home/radiant_dire5.jpg
${IMG_URL}/home/workshop_images.png
${IMG_URL}/international2022/logos/cm_persona_logo_${LANGUAGE}.png
${IMG_URL}/international2022/logos/cm_persona_logo_english.png
${IMG_URL}/international2022/logos/fv_arcana_logo_${LANGUAGE}.png
${IMG_URL}/international2022/logos/fv_arcana_logo_english.png
${IMG_URL}/international2022/logos/logo_battlepass_${LANGUAGE}.png
${IMG_URL}/international2022/logos/logo_battlepass_english.png
${IMG_URL}/international2022/logos/logo_battlepass_p2_${LANGUAGE}.png
${IMG_URL}/international2022/logos/logo_battlepass_p2_english.png
${IMG_URL}/international2022/logos/logo_bundles_${LANGUAGE}.png
${IMG_URL}/international2022/logos/logo_bundles_english.png
${IMG_URL}/international2022/logos/logo_diretide_${LANGUAGE}.png
${IMG_URL}/international2022/logos/logo_diretide_english.png
${IMG_URL}/international2022/logos/pa_persona_logo_${LANGUAGE}.png
${IMG_URL}/international2022/logos/pa_persona_logo_english.png
${IMG_URL}/international2022/logos/razor_logo_${LANGUAGE}.png
${IMG_URL}/international2022/logos/razor_logo_english.png
${IMG_URL}/international2022/sticker_book_main.png
${IMG_URL}/nav/logomark.svg
${IMG_URL}Underlords_WordMark_Vertical.svg
${IMG_URL}abilities/${name}.png
${IMG_URL}abilities/${}.png
${IMG_URL}apple_store.png
${IMG_URL}applications/community/
${IMG_URL}arrow_left.png
${IMG_URL}arrow_over.png
${IMG_URL}arrow_solid_left.png
${IMG_URL}arrow_solid_right.png
${IMG_URL}augupdate23/FinalMapAfter.jpg
${IMG_URL}augupdate23/FinalMapBefore.jpg
${IMG_URL}augupdate23/armory_item_combos.png
${IMG_URL}augupdate23/armory_item_highlight.png
${IMG_URL}augupdate23/armory_sort_market_value.png
${IMG_URL}augupdate23/armory_stack_duplicates.png
${IMG_URL}augupdate23/behavior_good_reports.png
${IMG_URL}augupdate23/behavior_matchmaking.png
${IMG_URL}augupdate23/behavior_reporting.png
${IMG_URL}augupdate23/behavior_toxic_chat.png
${IMG_URL}augupdate23/browse_armory.png
${IMG_URL}augupdate23/global_armory_items.png
${IMG_URL}augupdate23/summary_behavior.png
${IMG_URL}back_arrow.png
${IMG_URL}characters/${}.png
${IMG_URL}characters/heroes-sil.png
${IMG_URL}check.png
${IMG_URL}check_gray.png
${IMG_URL}cityscene_bdg_01.png
${IMG_URL}cityscene_bdg_02.png
${IMG_URL}cityscene_bdg_03.png
${IMG_URL}cityscene_bdg_04.png
${IMG_URL}cityscene_bdg_04_glow.png
${IMG_URL}cityscene_bdg_05.png
${IMG_URL}cityscene_bdg_05_glow.png
${IMG_URL}cityscene_bdg_06.png
${IMG_URL}cityscene_moon.png
${IMG_URL}cityscene_sky.jpg
${IMG_URL}close.png
${IMG_URL}cs2/map_s2tools.mp4
${IMG_URL}cs2/map_s2tools.webm
${IMG_URL}cs2/maps_s2tools.jpg
${IMG_URL}cs2/smokes_vid1.jpg
${IMG_URL}cs2/smokes_vid1.mp4
${IMG_URL}cs2/smokes_vid1.webm
${IMG_URL}cs2/smokes_vid2.jpg
${IMG_URL}cs2/smokes_vid2.mp4
${IMG_URL}cs2/smokes_vid2.webm
${IMG_URL}cs2/smokes_vid3.jpg
${IMG_URL}cs2/thumbnails/weapons.mp4
${IMG_URL}cs2/thumbnails/weapons.webm
${IMG_URL}cs2/vfx/UI.jpg
${IMG_URL}cs2/vfx/UI.mp4
${IMG_URL}cs2/vfx/UI.webm
${IMG_URL}cs2/vfx/blood_hit_fx.jpg
${IMG_URL}cs2/vfx/blood_hit_fx.mp4
${IMG_URL}cs2/vfx/blood_hit_fx.webm
${IMG_URL}cs2/vfx/explosions.jpg
${IMG_URL}cs2/vfx/explosions.mp4
${IMG_URL}cs2/vfx/explosions.webm
${IMG_URL}cs2/weapons.jpg
${IMG_URL}currency_icon_small.png
${IMG_URL}dota_footer_logo.png
${IMG_URL}dpc/autograph_guidelines/${imageName}
${IMG_URL}dpc/autograph_guidelines/check-mark.png
${IMG_URL}dpc/autograph_guidelines/example-signature-1.jpg
${IMG_URL}dpc/autograph_guidelines/example-signature-2.jpg
${IMG_URL}dpc/autograph_guidelines/guidelines-clarity.jpg
${IMG_URL}dpc/autograph_guidelines/guidelines-imagery.jpg
${IMG_URL}dpc/autograph_guidelines/guidelines-thickness.jpg
${IMG_URL}dpc/dpc_logo.png
${IMG_URL}dpc/portrait_guidelines/${imageName}
${IMG_URL}dpc/portrait_guidelines/example-player-1.jpg
${IMG_URL}dpc/portrait_guidelines/example-player-2.jpg
${IMG_URL}dpc/request_for_proposal/dpc_2023_rfp.pdf
${IMG_URL}dpc/request_for_proposal/dpc_major_2023_rfp.pdf
${IMG_URL}enno/build1_poster.jpg
${IMG_URL}enno/build2_poster.jpg
${IMG_URL}enno/enno-attack.png
${IMG_URL}enno/enno-hero.png
${IMG_URL}enno/enno-spin.png
${IMG_URL}enno/enno_build1.mp4
${IMG_URL}enno/enno_build1_1.webm
${IMG_URL}enno/enno_build2.mp4
${IMG_URL}enno/enno_build2.webm
${IMG_URL}error_artwork.png
${IMG_URL}events/defaults/default_img_cover.jpg
${IMG_URL}events/defaults/default_img_header.jpg
${IMG_URL}events/defaults/default_img_spotlight.jpg
${IMG_URL}events/thumb_library_home.jpg
${IMG_URL}events/types/type_${_ ? "11" : "9"}.png
${IMG_URL}events/types/type_${icon ? _ : _}.png?v=4
${IMG_URL}favorite_star.png
${IMG_URL}forward_arrow.png
${IMG_URL}gameboard_heroes.png
${IMG_URL}global/arrow_left.png
${IMG_URL}google_play.png
${IMG_URL}help.png
${IMG_URL}help_fantasy_compare.png
${IMG_URL}help_fantasy_ranking.png
${IMG_URL}help_fantasy_roster.png
${IMG_URL}help_fantasy_shards.png
${IMG_URL}help_fantasy_tournament.png
${IMG_URL}help_main_fantasy.png
${IMG_URL}help_main_following.png
${IMG_URL}help_main_matches.png
${IMG_URL}help_main_news_feed.png
${IMG_URL}help_main_predictions.png
${IMG_URL}help_main_tournament.png
${IMG_URL}help_prediction_pick.png
${IMG_URL}help_prediction_wager.png
${IMG_URL}help_prediction_win.png
${IMG_URL}heroes/${}.png
${IMG_URL}heroes/crops/${}.png
${IMG_URL}heroes/icons/${}.png
${IMG_URL}heroes/wide/${}.png
${IMG_URL}heroes/wide/unknown.png
${IMG_URL}icons/${}.svg
${IMG_URL}icons/facets/${facet_icon}.png
${IMG_URL}icons/facets/${icon}.png
${IMG_URL}icons/hero_${}.png
${IMG_URL}icons/hero_agility.png
${IMG_URL}icons/hero_intelligence.png
${IMG_URL}icons/hero_strength.png
${IMG_URL}icons/innate_icon.png
${IMG_URL}icons/talents.svg
${IMG_URL}international2020/arrow_left.png
${IMG_URL}international2020/assistant/assistant_1.png
${IMG_URL}international2020/assistant/assistant_2.png
${IMG_URL}international2020/assistant/assistant_3.png
${IMG_URL}international2020/assistant/assistant_4.png
${IMG_URL}international2020/assistant/assistant_6.png
${IMG_URL}international2020/assistant/assistant_7.png
${IMG_URL}international2020/benefactor_bg.png
${IMG_URL}international2020/bp_level_shield.png
${IMG_URL}international2020/bp_shield_small.png
${IMG_URL}international2020/button_arrow.png
${IMG_URL}international2020/cat_1.png
${IMG_URL}international2020/cat_2.png
${IMG_URL}international2020/chat_wheel_bg.png
${IMG_URL}international2020/collector_1.png
${IMG_URL}international2020/collector_2.png
${IMG_URL}international2020/consumables/consumable_${}.png
${IMG_URL}international2020/custom_tower_1.png
${IMG_URL}international2020/custom_tower_2.png
${IMG_URL}international2020/divine_overlay.png
${IMG_URL}international2020/emblem_bg.png
${IMG_URL}international2020/emoticon_mars.png
${IMG_URL}international2020/emoticon_pango.png
${IMG_URL}international2020/emoticons/general_emoticon_1.gif
${IMG_URL}international2020/emoticons/general_emoticon_10.gif
${IMG_URL}international2020/emoticons/general_emoticon_11.gif
${IMG_URL}international2020/emoticons/general_emoticon_12.gif
${IMG_URL}international2020/emoticons/general_emoticon_13.gif
${IMG_URL}international2020/emoticons/general_emoticon_14.gif
${IMG_URL}international2020/emoticons/general_emoticon_2.gif
${IMG_URL}international2020/emoticons/general_emoticon_3.gif
${IMG_URL}international2020/emoticons/general_emoticon_4.gif
${IMG_URL}international2020/emoticons/general_emoticon_5.gif
${IMG_URL}international2020/emoticons/general_emoticon_6.gif
${IMG_URL}international2020/emoticons/general_emoticon_7.gif
${IMG_URL}international2020/emoticons/general_emoticon_8.gif
${IMG_URL}international2020/emoticons/general_emoticon_9.gif
${IMG_URL}international2020/emoticons/guild_emoticon_1.gif
${IMG_URL}international2020/emoticons/guild_emoticon_2.gif
${IMG_URL}international2020/emoticons/guild_emoticon_3.gif
${IMG_URL}international2020/emoticons/guild_emoticon_4.gif
${IMG_URL}international2020/emoticons/guild_emoticon_5.gif
${IMG_URL}international2020/gauntlet_1.png
${IMG_URL}international2020/gauntlet_2.png
${IMG_URL}international2020/gauntlet_3.png
${IMG_URL}international2020/guilds_1.png
${IMG_URL}international2020/guilds_2.png
${IMG_URL}international2020/guilds_2b.png
${IMG_URL}international2020/guilds_3.png
${IMG_URL}international2020/icon_check.png
${IMG_URL}international2020/icon_x.png
${IMG_URL}international2020/immortal_treasure_1.png
${IMG_URL}international2020/immortal_treasure_2.png
${IMG_URL}international2020/immortal_treasure_3.png
${IMG_URL}international2020/immortals/${}.jpg
${IMG_URL}international2020/immortals/art/${}.png
${IMG_URL}international2020/killstreak.png
${IMG_URL}international2020/logo_${LANGUAGE}.png
${IMG_URL}international2020/logo_english.png
${IMG_URL}international2020/musicpack_keyart.png
${IMG_URL}international2020/ping_cosmetics_bg.png
${IMG_URL}international2020/qop_title_${LANGUAGE}.png
${IMG_URL}international2020/qop_title_english.png
${IMG_URL}international2020/rangedattack_keyart.png
${IMG_URL}international2020/river_vials/river_vial_1.jpg
${IMG_URL}international2020/river_vials/river_vial_2.jpg
${IMG_URL}international2020/river_vials/river_vial_3.jpg
${IMG_URL}international2020/river_vials/river_vial_4.jpg
${IMG_URL}international2020/river_vials/river_vial_5.jpg
${IMG_URL}international2020/river_vials/river_vial_6.jpg
${IMG_URL}international2020/river_vials/river_vial_7.jpg
${IMG_URL}international2020/river_vials/river_vial_icon_${}.png
${IMG_URL}international2020/seasonal_effects/seasonal_effect_icon_${}.png
${IMG_URL}international2020/shortfilm/header.jpg
${IMG_URL}international2020/sprays/spray_${}.png
${IMG_URL}international2020/sprays/spray_1.png
${IMG_URL}international2020/sprays/spray_10.png
${IMG_URL}international2020/sprays/spray_11.png
${IMG_URL}international2020/sprays/spray_12.png
${IMG_URL}international2020/sprays/spray_13.png
${IMG_URL}international2020/sprays/spray_14.png
${IMG_URL}international2020/sprays/spray_15.png
${IMG_URL}international2020/sprays/spray_16.png
${IMG_URL}international2020/sprays/spray_17.png
${IMG_URL}international2020/sprays/spray_18.png
${IMG_URL}international2020/sprays/spray_19.png
${IMG_URL}international2020/sprays/spray_2.png
${IMG_URL}international2020/sprays/spray_20.png
${IMG_URL}international2020/sprays/spray_3.png
${IMG_URL}international2020/sprays/spray_4.png
${IMG_URL}international2020/sprays/spray_5.png
${IMG_URL}international2020/sprays/spray_6.png
${IMG_URL}international2020/sprays/spray_7.png
${IMG_URL}international2020/sprays/spray_8.png
${IMG_URL}international2020/sprays/spray_9.png
${IMG_URL}international2020/stone_left.png
${IMG_URL}international2020/stone_right.png
${IMG_URL}international2020/taunt_1.png
${IMG_URL}international2020/taunt_2.png
${IMG_URL}international2020/taunt_3.png
${IMG_URL}international2020/title_${LANGUAGE}.png
${IMG_URL}international2020/title_english.png
${IMG_URL}international2020/tribute_image.png
${IMG_URL}international2020/voice_announcer_bg.png
${IMG_URL}international2020/ward_bg.png
${IMG_URL}international2020/wraith_king_title_${LANGUAGE}.png
${IMG_URL}international2020/wraith_king_title_english.png
${IMG_URL}international2022/2022_ti_tips.png
${IMG_URL}international2022/arcana/fv_icons.png
${IMG_URL}international2022/arcana/fv_mobile.jpg
${IMG_URL}international2022/arcana/fv_mobile_02.jpg
${IMG_URL}international2022/arcana/fv_thumb.jpg
${IMG_URL}international2022/arcana/fv_thumb_02.jpg
${IMG_URL}international2022/arcana/fv_wallpaper.jpg
${IMG_URL}international2022/arcana/fv_wallpaper_02.jpg
${IMG_URL}international2022/arcana/mobile_razor_thumb.jpg
${IMG_URL}international2022/arcana/mobile_thumb.jpg
${IMG_URL}international2022/arcana/mobile_thumb_02.jpg
${IMG_URL}international2022/arcana/razor_icons.png
${IMG_URL}international2022/arcana/razor_mobile.jpg
${IMG_URL}international2022/arcana/razor_thumb.jpg
${IMG_URL}international2022/arcana/razor_wallpaper.jpg
${IMG_URL}international2022/backgrounds/candyworks_bg.png
${IMG_URL}international2022/backgrounds/chat_wheels_spot.png
${IMG_URL}international2022/cave_johnson.png
${IMG_URL}international2022/consumables/consumables_${}.png
${IMG_URL}international2022/diretide/battle_points_02.png
${IMG_URL}international2022/diretide/jugg.png
${IMG_URL}international2022/diretide/penguin_rider.png
${IMG_URL}international2022/diretide/taffy_donkey_02.png
${IMG_URL}international2022/diretide/taffy_eater.png
${IMG_URL}international2022/diretide/taffy_well.png
${IMG_URL}international2022/emoticons/${}.gif
${IMG_URL}international2022/favorite_teams.png
${IMG_URL}international2022/icons/carousel_mystery_mark.jpg
${IMG_URL}international2022/icons/molten_play_btn.png
${IMG_URL}international2022/icons/scroll_arrow.png
${IMG_URL}international2022/icons/social_fb.png
${IMG_URL}international2022/icons/social_insta.png
${IMG_URL}international2022/icons/social_twitch.png
${IMG_URL}international2022/icons/social_twitter.png
${IMG_URL}international2022/icons/social_yt.png
${IMG_URL}international2022/logos/ti_logo.png
${IMG_URL}international2022/persona/cm_icons.png
${IMG_URL}international2022/persona/cm_mobile.jpg
${IMG_URL}international2022/persona/cm_mobile_02.jpg
${IMG_URL}international2022/persona/cm_wallpaper.jpg
${IMG_URL}international2022/persona/cm_wallpaper_02.jpg
${IMG_URL}international2022/persona/pa_icons.png
${IMG_URL}international2022/persona/pa_wp.jpg
${IMG_URL}international2022/persona/pa_wp_02.jpg
${IMG_URL}international2022/persona/pa_wp_mob.jpg
${IMG_URL}international2022/persona/pa_wp_mob_02.jpg
${IMG_URL}international2022/persona/thumb_cm_mobile.jpg
${IMG_URL}international2022/persona/thumb_cm_mobile_02.jpg
${IMG_URL}international2022/persona/thumb_cm_wallpaper.jpg
${IMG_URL}international2022/persona/thumb_cm_wallpaper_02.jpg
${IMG_URL}international2022/persona/thumb_mobile.jpg
${IMG_URL}international2022/persona/thumb_mobile_02.jpg
${IMG_URL}international2022/persona/thumb_wallpaper.jpg
${IMG_URL}international2022/persona/thumb_wallpaper_02.jpg
${IMG_URL}international2022/prestige/pb_prestige_side_overlay.png
${IMG_URL}international2022/sprays/${filename}.png
${IMG_URL}international2022/sprays/${}_icon.png
${IMG_URL}international2022/sticker_book_main.png
${IMG_URL}international2022/sticker_capsules.png
${IMG_URL}international2022/swag_bag.png
${IMG_URL}international2022/ti11_collectors_aegis.png
${IMG_URL}international2022/truesight_logo.jpg
${IMG_URL}international2022/weekly_quests.png
${IMG_URL}international2023/icons/social_fb.png
${IMG_URL}international2023/icons/social_insta.png
${IMG_URL}international2023/icons/social_twitch.png
${IMG_URL}international2023/icons/social_twitter.png
${IMG_URL}international2023/icons/social_yt.png
${IMG_URL}international2023/ti_logo_full_color.png
${IMG_URL}international2024/esports_site/footer_bg01.png
${IMG_URL}international2024/esports_site/logo_ti_gold.png
${IMG_URL}items/${}.png
${IMG_URL}locked.png
${IMG_URL}logo.png
${IMG_URL}logos/Underlords_WordMark_Horiz.svg
${IMG_URL}minimap_ancient.png
${IMG_URL}minimap_racks${_ ? "45" : "90"}.png
${IMG_URL}minimap_tower${_ ? "45" : "90"}.png
${IMG_URL}mix_and_match2.png
${IMG_URL}nav_tournaments_standings.png
${IMG_URL}nav_tournaments_white.png
${IMG_URL}outlanders/alliances-earth.png
${IMG_URL}outlanders/alliances-ember.png
${IMG_URL}outlanders/alliances-snapfire.png
${IMG_URL}outlanders/alliances-storm.png
${IMG_URL}outlanders/alliances-void.png
${IMG_URL}outlanders/earth_spirit.png
${IMG_URL}outlanders/earth_spirit_element.png
${IMG_URL}outlanders/earth_spirit_geomagnetic_grip.png
${IMG_URL}outlanders/ember_spirit.png
${IMG_URL}outlanders/ember_spirit_element.png
${IMG_URL}outlanders/ember_spirit_sleight_of_fist.png
${IMG_URL}outlanders/gems.png
${IMG_URL}outlanders/header_loc/Brazilian.png
${IMG_URL}outlanders/header_loc/Bulgarian.png
${IMG_URL}outlanders/header_loc/Czech.png
${IMG_URL}outlanders/header_loc/Danish.png
${IMG_URL}outlanders/header_loc/Dutch.png
${IMG_URL}outlanders/header_loc/Finnish.png
${IMG_URL}outlanders/header_loc/French.png
${IMG_URL}outlanders/header_loc/German.png
${IMG_URL}outlanders/header_loc/Greek.png
${IMG_URL}outlanders/header_loc/Hungarian.png
${IMG_URL}outlanders/header_loc/Italian.png
${IMG_URL}outlanders/header_loc/Japanse.png
${IMG_URL}outlanders/header_loc/Korean.png
${IMG_URL}outlanders/header_loc/Latam.png
${IMG_URL}outlanders/header_loc/Norwegian.png
${IMG_URL}outlanders/header_loc/Polish.png
${IMG_URL}outlanders/header_loc/Portuguese.png
${IMG_URL}outlanders/header_loc/Romanian.png
${IMG_URL}outlanders/header_loc/Russian.png
${IMG_URL}outlanders/header_loc/Schinese.png
${IMG_URL}outlanders/header_loc/Spanish.png
${IMG_URL}outlanders/header_loc/Swedish.png
${IMG_URL}outlanders/header_loc/Tchinese.png
${IMG_URL}outlanders/header_loc/Thai.png
${IMG_URL}outlanders/header_loc/Turkish.png
${IMG_URL}outlanders/header_loc/Ukranian.png
${IMG_URL}outlanders/header_loc/Vietnamese.png
${IMG_URL}outlanders/newspaper_flat2.png
${IMG_URL}outlanders/poster_lawrence.png
${IMG_URL}outlanders/poster_simonne.png
${IMG_URL}outlanders/snap-hero.png
${IMG_URL}outlanders/snapfire-title.png
${IMG_URL}outlanders/snapfire_bazooka.png
${IMG_URL}outlanders/snapfire_shotgun_blast.png
${IMG_URL}outlanders/spirit_alliance_lg.png
${IMG_URL}outlanders/storm.png
${IMG_URL}outlanders/storm_spirit_ball_lightning.png
${IMG_URL}outlanders/storm_spirit_element.png
${IMG_URL}outlanders/video/snapfire_abilities.jpg
${IMG_URL}outlanders/video/snapfire_abilities.mp4
${IMG_URL}outlanders/video/snapfire_abilities.webm
${IMG_URL}outlanders/video/void_abilities.jpg
${IMG_URL}outlanders/video/void_abilities2.mp4
${IMG_URL}outlanders/video/void_abilities3.webm
${IMG_URL}outlanders/void-hero.png
${IMG_URL}outlanders/void_spirit_dissimilate.png
${IMG_URL}outlanders/void_spirit_element.png
${IMG_URL}outlanders/void_title.png
${IMG_URL}paint_swipe.svg
${IMG_URL}player_unknown.png
${IMG_URL}portrait_unknown.png
${IMG_URL}promo/steamawards2023/placeholder_main.png
${IMG_URL}protopass/YOs.png
${IMG_URL}protopass/banners_web_a.png
${IMG_URL}protopass/daily_challenge.png
${IMG_URL}protopass/map.png
${IMG_URL}protopass/profile_rings_a.png
${IMG_URL}protopass/protopass_header.png
${IMG_URL}protopass/protopass_logo.png
${IMG_URL}protopass/standards_a.png
${IMG_URL}protopass/streaks_and_teleports_a.png
${IMG_URL}recruit_and_upgrade.png
${IMG_URL}right_arrow.png
${IMG_URL}search.png
${IMG_URL}shortfilmcontest2024/clapper_2024.png
${IMG_URL}social/${}_large.png
${IMG_URL}steam.png
${IMG_URL}synergyicons/${strAllianceName}.png
${IMG_URL}team_15.png
${IMG_URL}team_2586976.png
${IMG_URL}team_unknown.png
${IMG_URL}team_unkown.png
${IMG_URL}teams_override/team_unknown_web.png
${IMG_URL}teaser/valve_logo.png
${IMG_URL}valve_logo.png
${IMG_URL}webui/storeadmin/plus.png
${IMG_URL}x_close.png
${IMG_URL}x_red.png
${IMG_URL}yearinreview/achievement_grid_02.webp
${IMG_URL}yearinreview/bg_2023.svg
${IMG_URL}yearinreview/controllers.png?v=2
${IMG_URL}yearinreview/keyboard.png?v=3
${IMG_URL}yearinreview/screenshot_placeholder.png
${IMG_URL}yearinreview/streak_bg.jpg
${IMG_URL}yearinreview/vr_background6.webp
${INTERNAL_STATS_BASE_URL}sales/details/?gid=${}&clanid=${}&dateStart=${}-${}1-${}&dateEnd=${}-${}1-${}
${IN_CLIENT ? "steam://openurl_external/" : ""}${STORE_BASE_URL}appofficialsite/${appid}
${IN_CLIENT ? "steam://openurl_external/" : ""}${STORE_BASE_URL}forum/${appid}
${LOGIN_BASE_URL}jwt/ajaxrefresh
${LOGIN_BASE_URL}jwt/checkdevice/${m_steamid}
${LOGIN_BASE_URL}jwt/finalizelogin
${MEDIA_CDN_COMMUNITY_URL}/images/items/${}/${}
${MEDIA_CDN_COMMUNITY_URL}images/${image_small}
${MEDIA_CDN_COMMUNITY_URL}images/${}
${MEDIA_CDN_COMMUNITY_URL}images/apps/${appid}/${}.jpg
${MEDIA_CDN_COMMUNITY_URL}images/apps/${}/${icon}
${MEDIA_CDN_COMMUNITY_URL}images/apps/${}/${img_icon_hash}.jpg
${MEDIA_CDN_COMMUNITY_URL}images/apps/${}/${}
${MEDIA_CDN_COMMUNITY_URL}images/apps/${}/${}.jpg
${MEDIA_CDN_COMMUNITY_URL}images/apps/${}/${}_full.jpg
${MEDIA_CDN_COMMUNITY_URL}images/avatars/
${MEDIA_CDN_COMMUNITY_URL}images/avatars/fe/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_medium.jpg
${MEDIA_CDN_COMMUNITY_URL}images/chaticons/${}/${}/${}/
${MEDIA_CDN_COMMUNITY_URL}images/chaticons/${}/${}/${}/${}_${}.jpg
${MEDIA_CDN_COMMUNITY_URL}images/clans/
${MEDIA_CDN_COMMUNITY_URL}images/clans/${clanAccountID}/${}
${MEDIA_CDN_COMMUNITY_URL}images/clans/${}
${MEDIA_CDN_COMMUNITY_URL}images/clans/${}/
${MEDIA_CDN_COMMUNITY_URL}images/clans/${}/${}
${MEDIA_CDN_COMMUNITY_URL}images/clans/${}/${}${}${}
${MEDIA_CDN_COMMUNITY_URL}images/clans/${}/${}/${}${}
${MEDIA_CDN_COMMUNITY_URL}images/items/${appid}/${item_image_large}
${MEDIA_CDN_COMMUNITY_URL}images/items/${appid}/${item_image_small}
${MEDIA_CDN_COMMUNITY_URL}images/items/${appid}/${item_movie_mp4}
${MEDIA_CDN_COMMUNITY_URL}images/items/${appid}/${item_movie_webm}
${MEDIA_CDN_COMMUNITY_URL}images/items/${appid}/${}
${MEDIA_CDN_COMMUNITY_URL}images/items/${}/${_ ? _ : _}
${MEDIA_CDN_COMMUNITY_URL}images/items/${}/${hero_carousel_image}
${MEDIA_CDN_COMMUNITY_URL}images/items/${}/${item_image_large}
${MEDIA_CDN_COMMUNITY_URL}images/items/${}/${item_image_small}
${MEDIA_CDN_COMMUNITY_URL}images/items/${}/${item_movie_mp4}
${MEDIA_CDN_COMMUNITY_URL}images/items/${}/${item_movie_webm}
${MEDIA_CDN_COMMUNITY_URL}images/items/${}/${}
${MEDIA_CDN_COMMUNITY_URL}images/items/1658760/${item_image_small}
${MEDIA_CDN_COMMUNITY_URL}images/steamworks_docs/${LANGUAGE}/${}
${MEDIA_CDN_COMMUNITY_URL}images/steamworks_docs/english/${}
${MEDIA_CDN_URL}${asset_url}
${MEDIA_CDN_URL}${}
${MEDIA_CDN_URL}steam/
${MEDIA_CDN_URL}steam/apps/${m_unAppID}/capsule_231x87.jpg
${MEDIA_CDN_URL}steam/apps/${m_unAppID}/header.jpg
${MEDIA_CDN_URL}steam/apps/${}/${}
${MEDIA_CDN_URL}steam/apps/${}/header.jpg
${MEDIA_CDN_URL}steam/clusters/${}/${}/${}${}
${MEDIA_CDN_URL}steam/marketing/${}/${path}${}
${MEDIA_CDN_URL}steam/spotlights/${}/${}${}
${MEDIA_CDN_URL}store/promo/autumn2020/event_nomination_banner_2020.png?v=2
${MEDIA_CDN_URL}store/promo/lunar2020/red_envelope_2020.mp4${bIsFirstOpen ? "" : "#t=5,6"}
${MEDIA_CDN_URL}store/promo/lunar2020/red_envelope_2020.webm${bIsFirstOpen ? "" : "#t=5,6"}
${MEDIA_CDN_URL}store/promo/steamawards2023/trophy_2023.png?v=1
${MEDIA_CDN_URL}store/promo/summer2021/Steam_Summer_Sale_2021_Wallpapers.zip
${MEDIA_CDN_URL}store/promo/summer2022/card_stack.png?v-1
${PARTNER_BASE_URL}${_ ? "optin/ajaxadmincloneinvites" : "optin/ajaxadmincloneoptinpage"}
${PARTNER_BASE_URL}${}
${PARTNER_BASE_URL}${}${}
${PARTNER_BASE_URL}/admin/store/pagecreate
${PARTNER_BASE_URL}/meetsteam/ajaxfetchpartnerdetails
${PARTNER_BASE_URL}/meetsteam/ajaxgetuseremailforpartnerid
${PARTNER_BASE_URL}/meetsteam/ajaxinviteusers
${PARTNER_BASE_URL}/meetsteam/ajaxsendinviteemails
${PARTNER_BASE_URL}/packages/ajaxgetpackageforapp
${PARTNER_BASE_URL}/promotion${}
${PARTNER_BASE_URL}/promotion/${}
${PARTNER_BASE_URL}actions/ajaxgetpartnereventssaledetails
${PARTNER_BASE_URL}actions/ajaxgetpartnervalvecontacts
${PARTNER_BASE_URL}actions/ajaxgetuserpartnerinfo
${PARTNER_BASE_URL}admin/ajaxcreatesupportticketforrequest/
${PARTNER_BASE_URL}admin/ajaxfetchsupportticketforpartner
${PARTNER_BASE_URL}admin/discounttaglookup?tag=${}
${PARTNER_BASE_URL}admin/editdiscountevent/${id}
${PARTNER_BASE_URL}admin/editdiscountevent/${}
${PARTNER_BASE_URL}admin/game/edit/${nItemId}?activetab=tab_publish
${PARTNER_BASE_URL}admin/game/edit/${}?activetab=tab_graphicalassets
${PARTNER_BASE_URL}admin/game/editbyappid/${store_item_id}
${PARTNER_BASE_URL}admin/game/editbyappid/${store_item_id}?activetab=tab_specialsettings#seasonpass
${PARTNER_BASE_URL}admin/game/editbyappid/${}?activetab=tab_graphicalassets
${PARTNER_BASE_URL}admin/game/quickupdateajax/${}
${PARTNER_BASE_URL}admin/reviewpricesubmissions/?myPartners=1
${PARTNER_BASE_URL}admin/reviewpricesubmissions/?publisherID=${partnerid}
${PARTNER_BASE_URL}admin/store/contenthub/ajaxgetcontenthubcategories
${PARTNER_BASE_URL}admin/store/contenthub/ajaxgetcontenthubcategorieskv
${PARTNER_BASE_URL}admin/store/contenthub/ajaxgetstoretagsandcategories