@valolytics/ts-valorant-dtos 11.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (115) hide show
  1. package/dist/dtos/agents.json +1758 -0
  2. package/dist/dtos/buddies.json +12782 -0
  3. package/dist/dtos/bundles.json +3362 -0
  4. package/dist/dtos/ceremonies.json +32 -0
  5. package/dist/dtos/competitiveTiers.json +1549 -0
  6. package/dist/dtos/contentTiers.json +57 -0
  7. package/dist/dtos/contracts.json +33904 -0
  8. package/dist/dtos/currencies.json +38 -0
  9. package/dist/dtos/events.json +106 -0
  10. package/dist/dtos/gameModes.json +399 -0
  11. package/dist/dtos/gears.json +102 -0
  12. package/dist/dtos/levelBorders.json +202 -0
  13. package/dist/dtos/maps.json +3186 -0
  14. package/dist/dtos/playerCards.json +8439 -0
  15. package/dist/dtos/playerTitles.json +2158 -0
  16. package/dist/dtos/roles.json +30 -0
  17. package/dist/dtos/seasons.json +452 -0
  18. package/dist/dtos/sprays.json +17436 -0
  19. package/dist/dtos/themes.json +2543 -0
  20. package/dist/dtos/weapons.json +55152 -0
  21. package/dist/index.d.ts +30 -0
  22. package/dist/index.d.ts.map +1 -0
  23. package/dist/index.js +64 -0
  24. package/dist/logger/index.d.ts +3 -0
  25. package/dist/logger/index.d.ts.map +1 -0
  26. package/dist/logger/index.js +8 -0
  27. package/dist/models/account.model.d.ts +9 -0
  28. package/dist/models/account.model.d.ts.map +1 -0
  29. package/dist/models/account.model.js +13 -0
  30. package/dist/models/activeShard.model.d.ts +7 -0
  31. package/dist/models/activeShard.model.d.ts.map +1 -0
  32. package/dist/models/activeShard.model.js +11 -0
  33. package/dist/models/agent.model.d.ts +59 -0
  34. package/dist/models/agent.model.d.ts.map +1 -0
  35. package/dist/models/agent.model.js +78 -0
  36. package/dist/models/buddy.model.d.ts +21 -0
  37. package/dist/models/buddy.model.d.ts.map +1 -0
  38. package/dist/models/buddy.model.js +27 -0
  39. package/dist/models/bundle.model.d.ts +15 -0
  40. package/dist/models/bundle.model.d.ts.map +1 -0
  41. package/dist/models/bundle.model.js +21 -0
  42. package/dist/models/ceremony.model.d.ts +7 -0
  43. package/dist/models/ceremony.model.d.ts.map +1 -0
  44. package/dist/models/ceremony.model.js +11 -0
  45. package/dist/models/competitiveTier.model.d.ts +21 -0
  46. package/dist/models/competitiveTier.model.d.ts.map +1 -0
  47. package/dist/models/competitiveTier.model.js +27 -0
  48. package/dist/models/contentTier.model.d.ts +13 -0
  49. package/dist/models/contentTier.model.d.ts.map +1 -0
  50. package/dist/models/contentTier.model.js +17 -0
  51. package/dist/models/contract.model.d.ts +43 -0
  52. package/dist/models/contract.model.d.ts.map +1 -0
  53. package/dist/models/contract.model.js +55 -0
  54. package/dist/models/currency.model.d.ts +10 -0
  55. package/dist/models/currency.model.d.ts.map +1 -0
  56. package/dist/models/currency.model.js +14 -0
  57. package/dist/models/event.model.d.ts +10 -0
  58. package/dist/models/event.model.d.ts.map +1 -0
  59. package/dist/models/event.model.js +14 -0
  60. package/dist/models/gameMode.model.d.ts +29 -0
  61. package/dist/models/gameMode.model.d.ts.map +1 -0
  62. package/dist/models/gameMode.model.js +37 -0
  63. package/dist/models/gear.model.d.ts +18 -0
  64. package/dist/models/gear.model.d.ts.map +1 -0
  65. package/dist/models/gear.model.js +24 -0
  66. package/dist/models/levelBorder.model.d.ts +10 -0
  67. package/dist/models/levelBorder.model.d.ts.map +1 -0
  68. package/dist/models/levelBorder.model.js +14 -0
  69. package/dist/models/location.model.d.ts +15 -0
  70. package/dist/models/location.model.d.ts.map +1 -0
  71. package/dist/models/location.model.js +28 -0
  72. package/dist/models/map.model.d.ts +31 -0
  73. package/dist/models/map.model.d.ts.map +1 -0
  74. package/dist/models/map.model.js +47 -0
  75. package/dist/models/match.model.d.ts +648 -0
  76. package/dist/models/match.model.d.ts.map +1 -0
  77. package/dist/models/match.model.js +506 -0
  78. package/dist/models/matchlist.model.d.ts +13 -0
  79. package/dist/models/matchlist.model.d.ts.map +1 -0
  80. package/dist/models/matchlist.model.js +22 -0
  81. package/dist/models/playerCard.model.d.ts +14 -0
  82. package/dist/models/playerCard.model.d.ts.map +1 -0
  83. package/dist/models/playerCard.model.js +18 -0
  84. package/dist/models/playerTitle.model.d.ts +9 -0
  85. package/dist/models/playerTitle.model.d.ts.map +1 -0
  86. package/dist/models/playerTitle.model.js +13 -0
  87. package/dist/models/role.model.d.ts +9 -0
  88. package/dist/models/role.model.d.ts.map +1 -0
  89. package/dist/models/role.model.js +13 -0
  90. package/dist/models/season.model.d.ts +11 -0
  91. package/dist/models/season.model.d.ts.map +1 -0
  92. package/dist/models/season.model.js +15 -0
  93. package/dist/models/shopData.model.d.ts +19 -0
  94. package/dist/models/shopData.model.d.ts.map +1 -0
  95. package/dist/models/shopData.model.js +25 -0
  96. package/dist/models/spray.model.d.ts +26 -0
  97. package/dist/models/spray.model.d.ts.map +1 -0
  98. package/dist/models/spray.model.js +32 -0
  99. package/dist/models/theme.model.d.ts +9 -0
  100. package/dist/models/theme.model.d.ts.map +1 -0
  101. package/dist/models/theme.model.js +13 -0
  102. package/dist/models/version.model.d.ts +12 -0
  103. package/dist/models/version.model.d.ts.map +1 -0
  104. package/dist/models/version.model.js +16 -0
  105. package/dist/models/weapon.model.d.ts +100 -0
  106. package/dist/models/weapon.model.d.ts.map +1 -0
  107. package/dist/models/weapon.model.js +126 -0
  108. package/dist/scripts/fetch-data.d.ts +2 -0
  109. package/dist/scripts/fetch-data.d.ts.map +1 -0
  110. package/dist/scripts/fetch-data.js +75 -0
  111. package/dist/services/dtos.service.d.ts +184 -0
  112. package/dist/services/dtos.service.d.ts.map +1 -0
  113. package/dist/services/dtos.service.js +274 -0
  114. package/dist/tsconfig.tsbuildinfo +1 -0
  115. package/package.json +32 -0
@@ -0,0 +1,2158 @@
1
+ {
2
+ "48d870a2-4493-ebf8-7d6f-979be914dc43": {
3
+ "uuid": "48d870a2-4493-ebf8-7d6f-979be914dc43",
4
+ "displayName": "Fortune Title",
5
+ "titleText": "Fortune",
6
+ "isHiddenIfNotOwned": true,
7
+ "assetPath": "ShooterGame/Content/Personalization/Titles/2022LNY/PlayerTitle_Fortune_PrimaryAsset"
8
+ },
9
+ "f8c974b0-4e0c-c0e6-174d-c1b6d990b2a6": {
10
+ "uuid": "f8c974b0-4e0c-c0e6-174d-c1b6d990b2a6",
11
+ "displayName": "Tiger Title",
12
+ "titleText": "Tiger",
13
+ "isHiddenIfNotOwned": true,
14
+ "assetPath": "ShooterGame/Content/Personalization/Titles/2022LNY/PlayerTitle_Tiger_PrimaryAsset"
15
+ },
16
+ "a5d0a0db-47cf-d1c4-c441-2db1688457c8": {
17
+ "uuid": "a5d0a0db-47cf-d1c4-c441-2db1688457c8",
18
+ "displayName": "2023 Game Changers Winner Title",
19
+ "titleText": "2023 Game Changers Winner ",
20
+ "isHiddenIfNotOwned": true,
21
+ "assetPath": "ShooterGame/Content/Personalization/Titles/2023GameChangersWinner/PlayerTitle_2023GameChangersWinner_PrimaryAsset"
22
+ },
23
+ "1fcfb3b1-4e5d-1745-eb41-59b8bad3d48a": {
24
+ "uuid": "1fcfb3b1-4e5d-1745-eb41-59b8bad3d48a",
25
+ "displayName": "Different Title",
26
+ "titleText": "Different",
27
+ "isHiddenIfNotOwned": true,
28
+ "assetPath": "ShooterGame/Content/Personalization/Titles/2024EOY_EventPass/PlayerTitle_Different_PrimaryAsset"
29
+ },
30
+ "48570afb-49f6-bc62-1706-f79c7c36ee37": {
31
+ "uuid": "48570afb-49f6-bc62-1706-f79c7c36ee37",
32
+ "displayName": "ZZZ Title",
33
+ "titleText": "ZZZ",
34
+ "isHiddenIfNotOwned": true,
35
+ "assetPath": "ShooterGame/Content/Personalization/Titles/2024EOY_EventPass/PlayerTitle_ZZZ_PrimaryAsset"
36
+ },
37
+ "e3647f4c-40ce-6a9b-3be7-3987cac91aeb": {
38
+ "uuid": "e3647f4c-40ce-6a9b-3be7-3987cac91aeb",
39
+ "displayName": "13-0 Club Title",
40
+ "titleText": "13-0 Club",
41
+ "isHiddenIfNotOwned": true,
42
+ "assetPath": "ShooterGame/Content/Personalization/Titles/2024GameChangersTournament/PlayerTitle_13-0Club_PrimaryAsset"
43
+ },
44
+ "5883eac6-47b4-4d74-9411-118b7df1e080": {
45
+ "uuid": "5883eac6-47b4-4d74-9411-118b7df1e080",
46
+ "displayName": "I am her Title",
47
+ "titleText": "I am her",
48
+ "isHiddenIfNotOwned": true,
49
+ "assetPath": "ShooterGame/Content/Personalization/Titles/2024GameChangersTournament/PlayerTitle_IAmHer_PrimaryAsset"
50
+ },
51
+ "0c478a50-4f0d-0e67-a6fd-2fbdfbbd57ed": {
52
+ "uuid": "0c478a50-4f0d-0e67-a6fd-2fbdfbbd57ed",
53
+ "displayName": "Queen Title",
54
+ "titleText": "Queen",
55
+ "isHiddenIfNotOwned": true,
56
+ "assetPath": "ShooterGame/Content/Personalization/Titles/2024GameChangersTournament/PlayerTitle_Queen_PrimaryAsset"
57
+ },
58
+ "141585d1-4382-0b85-349e-bc87db745d8a": {
59
+ "uuid": "141585d1-4382-0b85-349e-bc87db745d8a",
60
+ "displayName": "Ribbit Title",
61
+ "titleText": "Ribbit",
62
+ "isHiddenIfNotOwned": true,
63
+ "assetPath": "ShooterGame/Content/Personalization/Titles/2024GameChangersTournament/PlayerTitle_Ribbit_PrimaryAsset"
64
+ },
65
+ "ccdc3ec9-4977-d75c-7de0-00bb0b8a9f29": {
66
+ "uuid": "ccdc3ec9-4977-d75c-7de0-00bb0b8a9f29",
67
+ "displayName": "Fortune Booster Title",
68
+ "titleText": "Fortune Booster",
69
+ "isHiddenIfNotOwned": false,
70
+ "assetPath": "ShooterGame/Content/Personalization/Titles/2024LNY/PlayerTitle_LNY24_PrimaryAsset"
71
+ },
72
+ "885869be-46b9-45c3-492b-76b9129cb0d2": {
73
+ "uuid": "885869be-46b9-45c3-492b-76b9129cb0d2",
74
+ "displayName": "2024 VCT Champion Title",
75
+ "titleText": "2024 VCT Champion",
76
+ "isHiddenIfNotOwned": true,
77
+ "assetPath": "ShooterGame/Content/Personalization/Titles/2024VCTxChampionWinners/PlayerTitle_2024VCTxChampionWinners_PrimaryAsset"
78
+ },
79
+ "beaa1a7b-4716-ef0c-5947-b7bc44add795": {
80
+ "uuid": "beaa1a7b-4716-ef0c-5947-b7bc44add795",
81
+ "displayName": "Duo Title",
82
+ "titleText": "Duo",
83
+ "isHiddenIfNotOwned": false,
84
+ "assetPath": "ShooterGame/Content/Personalization/Titles/2024_ValentinesDay/PlayerTitle_Duo_PrimaryAsset"
85
+ },
86
+ "38560e42-41cc-58d4-852b-7698a9e2a7f6": {
87
+ "uuid": "38560e42-41cc-58d4-852b-7698a9e2a7f6",
88
+ "displayName": "</3 Title",
89
+ "titleText": "</3",
90
+ "isHiddenIfNotOwned": false,
91
+ "assetPath": "ShooterGame/Content/Personalization/Titles/2024_ValentinesDay/PlayerTitle_EmojiHeartBreak_PrimaryAsset"
92
+ },
93
+ "21054634-428a-ec43-e5b7-e99888f137e7": {
94
+ "uuid": "21054634-428a-ec43-e5b7-e99888f137e7",
95
+ "displayName": "<3 Title",
96
+ "titleText": "<3",
97
+ "isHiddenIfNotOwned": false,
98
+ "assetPath": "ShooterGame/Content/Personalization/Titles/2024_ValentinesDay/PlayerTitle_EmojiHeart_PrimaryAsset"
99
+ },
100
+ "899e7754-4c86-8c16-a94e-f2bb6c0d808f": {
101
+ "uuid": "899e7754-4c86-8c16-a94e-f2bb6c0d808f",
102
+ "displayName": "Cooked Title",
103
+ "titleText": "Cooked",
104
+ "isHiddenIfNotOwned": true,
105
+ "assetPath": "ShooterGame/Content/Personalization/Titles/2025LNY_EventPass/PlayerTitle_Cooked_PrimaryAsset"
106
+ },
107
+ "25b17fb8-4818-08ab-e5da-a384dd6d4d8f": {
108
+ "uuid": "25b17fb8-4818-08ab-e5da-a384dd6d4d8f",
109
+ "displayName": "Serpent Title",
110
+ "titleText": "Serpent",
111
+ "isHiddenIfNotOwned": true,
112
+ "assetPath": "ShooterGame/Content/Personalization/Titles/2025LNY_EventPass/PlayerTitle_Serpent_PrimaryAsset"
113
+ },
114
+ "a65074fd-4937-734e-20fe-3cafa842c631": {
115
+ "uuid": "a65074fd-4937-734e-20fe-3cafa842c631",
116
+ "displayName": "Catalyst Title",
117
+ "titleText": "Catalyst",
118
+ "isHiddenIfNotOwned": false,
119
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Act1_2_BP/PlayerTitle_Catalyst_PrimaryAsset"
120
+ },
121
+ "2d284b12-4536-1d0e-b08c-e58850b2a76e": {
122
+ "uuid": "2d284b12-4536-1d0e-b08c-e58850b2a76e",
123
+ "displayName": "Chicken Title",
124
+ "titleText": "Chicken",
125
+ "isHiddenIfNotOwned": false,
126
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Act1_2_BP/PlayerTitle_Chicken_PrimaryAsset"
127
+ },
128
+ "326c3796-43c0-4aca-cd5e-53b3ccf8c507": {
129
+ "uuid": "326c3796-43c0-4aca-cd5e-53b3ccf8c507",
130
+ "displayName": "Foxy Title",
131
+ "titleText": "Foxy",
132
+ "isHiddenIfNotOwned": false,
133
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Act1_2_BP/PlayerTitle_Foxy_PrimaryAsset"
134
+ },
135
+ "dc75c976-4a9a-97f0-a94d-42bd5f5e262f": {
136
+ "uuid": "dc75c976-4a9a-97f0-a94d-42bd5f5e262f",
137
+ "displayName": "Bait Title",
138
+ "titleText": "Bait",
139
+ "isHiddenIfNotOwned": false,
140
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Act1_3_BP/PlayerTitle_Bait_PrimaryAsset"
141
+ },
142
+ "349d430a-445f-c87e-cc8d-38bc2a86213a": {
143
+ "uuid": "349d430a-445f-c87e-cc8d-38bc2a86213a",
144
+ "displayName": "Pumped Title",
145
+ "titleText": "Pumped",
146
+ "isHiddenIfNotOwned": false,
147
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Act1_3_BP/PlayerTitle_Pumped_PrimaryAsset"
148
+ },
149
+ "5dc79611-42f8-24ad-9f5d-6d8288a7fe9a": {
150
+ "uuid": "5dc79611-42f8-24ad-9f5d-6d8288a7fe9a",
151
+ "displayName": "Spicy Title",
152
+ "titleText": "Spicy",
153
+ "isHiddenIfNotOwned": false,
154
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Act1_3_BP/PlayerTitle_Spicy_PrimaryAsset"
155
+ },
156
+ "e64d8d84-46a5-6a9b-ee09-08af910b3235": {
157
+ "uuid": "e64d8d84-46a5-6a9b-ee09-08af910b3235",
158
+ "displayName": "Primordial Title",
159
+ "titleText": "Primordial",
160
+ "isHiddenIfNotOwned": false,
161
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Aggrobot/PlayerTitle_AggrobotTitle1_PrimaryAsset"
162
+ },
163
+ "e79d9585-4ea7-f8f1-3d4e-31a1e2c71577": {
164
+ "uuid": "e79d9585-4ea7-f8f1-3d4e-31a1e2c71577",
165
+ "displayName": "Vibin' Title",
166
+ "titleText": "Vibin'",
167
+ "isHiddenIfNotOwned": false,
168
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Aggrobot/PlayerTitle_AggrobotTitle2_PrimaryAsset"
169
+ },
170
+ "9e6f13d8-49f3-db30-76bd-e69a0dba963e": {
171
+ "uuid": "9e6f13d8-49f3-db30-76bd-e69a0dba963e",
172
+ "displayName": "Bounty Hunter Title",
173
+ "titleText": "Bounty Hunter",
174
+ "isHiddenIfNotOwned": false,
175
+ "assetPath": "ShooterGame/Content/Personalization/Titles/BountyHunter/PlayerTitle_BountyHunter_PrimaryAsset"
176
+ },
177
+ "daae405e-4fc7-0c3a-0ab6-08bebca1a8dc": {
178
+ "uuid": "daae405e-4fc7-0c3a-0ab6-08bebca1a8dc",
179
+ "displayName": "Living Nightmare Title",
180
+ "titleText": "Living Nightmare",
181
+ "isHiddenIfNotOwned": false,
182
+ "assetPath": "ShooterGame/Content/Personalization/Titles/BountyHunter/PlayerTitle_LivingNightmare_PrimaryAsset"
183
+ },
184
+ "c9788603-495c-f7a6-abe1-88ad75c2aff3": {
185
+ "uuid": "c9788603-495c-f7a6-abe1-88ad75c2aff3",
186
+ "displayName": "Wired Title",
187
+ "titleText": "Wired",
188
+ "isHiddenIfNotOwned": false,
189
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Cable/PlayerTitle_CableTitle1_PrimaryAsset"
190
+ },
191
+ "3d5ec384-436c-2d09-6359-6b89ec5c9682": {
192
+ "uuid": "3d5ec384-436c-2d09-6359-6b89ec5c9682",
193
+ "displayName": "Ståljeger Title",
194
+ "titleText": "Ståljeger",
195
+ "isHiddenIfNotOwned": false,
196
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Cable/PlayerTitle_CableTitle2_PrimaryAsset"
197
+ },
198
+ "999a4178-450b-2584-f6ec-cfa0f6d620d6": {
199
+ "uuid": "999a4178-450b-2584-f6ec-cfa0f6d620d6",
200
+ "displayName": "On Target Title",
201
+ "titleText": "On Target",
202
+ "isHiddenIfNotOwned": false,
203
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Cashew/PlayerTitle_CashewTitle1_PrimaryAsset"
204
+ },
205
+ "d07b7d04-4ffa-8909-51e8-f3b30675235e": {
206
+ "uuid": "d07b7d04-4ffa-8909-51e8-f3b30675235e",
207
+ "displayName": "Hermano Title",
208
+ "titleText": "Hermano",
209
+ "isHiddenIfNotOwned": false,
210
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Cashew/PlayerTitle_CashewTitle2_PrimaryAsset"
211
+ },
212
+ "e8c04a61-49a8-8d0a-501c-13b26f20110a": {
213
+ "uuid": "e8c04a61-49a8-8d0a-501c-13b26f20110a",
214
+ "displayName": "Lowrider Title",
215
+ "titleText": "Lowrider",
216
+ "isHiddenIfNotOwned": false,
217
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Champions2023Drop/PlayerTitle_Champions2023_PrimaryAsset"
218
+ },
219
+ "93ef2b52-4c5c-06a7-7f34-70ba5deb1b23": {
220
+ "uuid": "93ef2b52-4c5c-06a7-7f34-70ba5deb1b23",
221
+ "displayName": "100% Title",
222
+ "titleText": "100%",
223
+ "isHiddenIfNotOwned": true,
224
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Champions2024_Drops/PlayerTitle_100Percent_PrimaryAsset"
225
+ },
226
+ "98b7a8a1-4f7d-798c-7b1c-14b285c9c4d3": {
227
+ "uuid": "98b7a8a1-4f7d-798c-7b1c-14b285c9c4d3",
228
+ "displayName": "One More Title",
229
+ "titleText": "One More",
230
+ "isHiddenIfNotOwned": false,
231
+ "assetPath": "ShooterGame/Content/Personalization/Titles/ChampionsPass2023/PlayerTitle_ChampionsPass2023Title1_PrimaryAsset"
232
+ },
233
+ "c4de2e82-4288-92bb-ed42-e4aa12a657ef": {
234
+ "uuid": "c4de2e82-4288-92bb-ed42-e4aa12a657ef",
235
+ "displayName": "Tear Jerker Title",
236
+ "titleText": "Tear Jerker",
237
+ "isHiddenIfNotOwned": false,
238
+ "assetPath": "ShooterGame/Content/Personalization/Titles/ChampionsPass2023/PlayerTitle_ChampionsPass2023Title2_PrimaryAsset"
239
+ },
240
+ "47aca56d-49bc-d79f-ba3f-3389899c74ed": {
241
+ "uuid": "47aca56d-49bc-d79f-ba3f-3389899c74ed",
242
+ "displayName": "Fire-Born Title",
243
+ "titleText": "Fire-Born",
244
+ "isHiddenIfNotOwned": false,
245
+ "assetPath": "ShooterGame/Content/Personalization/Titles/China/PlayerTitle_CN_WelcomeTitle_Fireborn_PrimaryAsset"
246
+ },
247
+ "e68c6e48-4c1e-5144-2ad8-59a32f3ca499": {
248
+ "uuid": "e68c6e48-4c1e-5144-2ad8-59a32f3ca499",
249
+ "displayName": "Flex Title",
250
+ "titleText": "Flex",
251
+ "isHiddenIfNotOwned": false,
252
+ "assetPath": "ShooterGame/Content/Personalization/Titles/China/PlayerTitle_CN_WelcomeTitle_Flex_PrimaryAsset"
253
+ },
254
+ "703cd95a-4624-16f3-fdd9-f4a881993577": {
255
+ "uuid": "703cd95a-4624-16f3-fdd9-f4a881993577",
256
+ "displayName": "Charmer Title",
257
+ "titleText": "Charmer",
258
+ "isHiddenIfNotOwned": false,
259
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Deadeye/PlayerTitle_Charmer_PrimaryAsset"
260
+ },
261
+ "9f294ab8-4b0a-4c3f-711c-cb89ca4d3ad5": {
262
+ "uuid": "9f294ab8-4b0a-4c3f-711c-cb89ca4d3ad5",
263
+ "displayName": "High Class Title",
264
+ "titleText": "High Class",
265
+ "isHiddenIfNotOwned": false,
266
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Deadeye/PlayerTitle_HighClass_PrimaryAsset"
267
+ },
268
+ "4661c80b-462d-0d9d-d76e-be9aa7962643": {
269
+ "uuid": "4661c80b-462d-0d9d-d76e-be9aa7962643",
270
+ "displayName": "Haz's Duo Title",
271
+ "titleText": "Haz's Duo",
272
+ "isHiddenIfNotOwned": false,
273
+ "assetPath": "ShooterGame/Content/Personalization/Titles/DuosDay2025/PlayerTitle_HazsDuo_PrimaryAsset"
274
+ },
275
+ "24bf8d05-4538-8ddc-bd8c-d4b343cff848": {
276
+ "uuid": "24bf8d05-4538-8ddc-bd8c-d4b343cff848",
277
+ "displayName": "Matt's Duo Title",
278
+ "titleText": "Matt's Duo",
279
+ "isHiddenIfNotOwned": false,
280
+ "assetPath": "ShooterGame/Content/Personalization/Titles/DuosDay2025/PlayerTitle_MattsDuo_PrimaryAsset"
281
+ },
282
+ "5bdea980-4397-a1bd-1fab-659153ca196e": {
283
+ "uuid": "5bdea980-4397-a1bd-1fab-659153ca196e",
284
+ "displayName": "Boosted Title",
285
+ "titleText": "Boosted",
286
+ "isHiddenIfNotOwned": false,
287
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep2_Act1_BP/PlayerTitle_Boosted_PrimaryAsset"
288
+ },
289
+ "63057041-4f65-5579-e5a6-d88ae7007ebb": {
290
+ "uuid": "63057041-4f65-5579-e5a6-d88ae7007ebb",
291
+ "displayName": "Unlucky Title",
292
+ "titleText": "Unlucky",
293
+ "isHiddenIfNotOwned": false,
294
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep2_Act1_BP/PlayerTitle_Unlucky_PrimaryAsset"
295
+ },
296
+ "1626ab23-49dd-aa09-dee5-05962e49b342": {
297
+ "uuid": "1626ab23-49dd-aa09-dee5-05962e49b342",
298
+ "displayName": "Wraith Title",
299
+ "titleText": "Wraith",
300
+ "isHiddenIfNotOwned": false,
301
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep2_Act1_BP/PlayerTitle_Wraith_PrimaryAsset"
302
+ },
303
+ "88be9116-4d09-b9a1-87d5-2f8d1831aabe": {
304
+ "uuid": "88be9116-4d09-b9a1-87d5-2f8d1831aabe",
305
+ "displayName": "Bulldog Title",
306
+ "titleText": "Bulldog",
307
+ "isHiddenIfNotOwned": false,
308
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep2_Act2_BP/PlayerTitle_Bulldog_PrimaryAsset"
309
+ },
310
+ "bf94d3eb-4025-4e4a-9942-a2a17c0da2db": {
311
+ "uuid": "bf94d3eb-4025-4e4a-9942-a2a17c0da2db",
312
+ "displayName": "Full Auto Title",
313
+ "titleText": "Full Auto",
314
+ "isHiddenIfNotOwned": false,
315
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep2_Act2_BP/PlayerTitle_FullAuto_PrimaryAsset"
316
+ },
317
+ "b293212f-4574-1ffa-4593-4fad2b97b5ec": {
318
+ "uuid": "b293212f-4574-1ffa-4593-4fad2b97b5ec",
319
+ "displayName": "Sheriff Title",
320
+ "titleText": "Sheriff",
321
+ "isHiddenIfNotOwned": false,
322
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep2_Act2_BP/PlayerTitle_Sheriff_PrimaryAsset"
323
+ },
324
+ "42e2f97d-4e69-274c-589c-0fbdeb397df9": {
325
+ "uuid": "42e2f97d-4e69-274c-589c-0fbdeb397df9",
326
+ "displayName": "Chill Title",
327
+ "titleText": "Chill",
328
+ "isHiddenIfNotOwned": false,
329
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep2_Act3_BP/PlayerTitle_Chill_PrimaryAsset"
330
+ },
331
+ "951af77f-4683-ba12-2557-1da1950c390b": {
332
+ "uuid": "951af77f-4683-ba12-2557-1da1950c390b",
333
+ "displayName": "Hard Carry Title",
334
+ "titleText": "Hard Carry",
335
+ "isHiddenIfNotOwned": false,
336
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep2_Act3_BP/PlayerTitle_HardCarry_PrimaryAsset"
337
+ },
338
+ "21dda67e-46d9-081d-0436-fc93fbb1331d": {
339
+ "uuid": "21dda67e-46d9-081d-0436-fc93fbb1331d",
340
+ "displayName": "Lucky Title",
341
+ "titleText": "Lucky",
342
+ "isHiddenIfNotOwned": false,
343
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep2_Act3_BP/PlayerTitle_Lucky_PrimaryAsset"
344
+ },
345
+ "3fabf39b-452e-9f82-52ec-5c984619c782": {
346
+ "uuid": "3fabf39b-452e-9f82-52ec-5c984619c782",
347
+ "displayName": "Cracked Title",
348
+ "titleText": "Cracked",
349
+ "isHiddenIfNotOwned": false,
350
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep3_Act1_BP/PlayerTitle_Cracked_PrimaryAsset"
351
+ },
352
+ "229907f5-41a1-855d-a1f6-c1a934c74ed1": {
353
+ "uuid": "229907f5-41a1-855d-a1f6-c1a934c74ed1",
354
+ "displayName": "No Breaks Title",
355
+ "titleText": "No Breaks",
356
+ "isHiddenIfNotOwned": false,
357
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep3_Act1_BP/PlayerTitle_NoBreaks_PrimaryAsset"
358
+ },
359
+ "9f2bbbe7-4b73-3ad0-193c-c7a0ee5ff6a8": {
360
+ "uuid": "9f2bbbe7-4b73-3ad0-193c-c7a0ee5ff6a8",
361
+ "displayName": "Salty Title",
362
+ "titleText": "Salty",
363
+ "isHiddenIfNotOwned": false,
364
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep3_Act1_BP/PlayerTitle_Salty_PrimaryAsset"
365
+ },
366
+ "ca0895c6-412b-0f14-0fa4-5dafb9b9fb15": {
367
+ "uuid": "ca0895c6-412b-0f14-0fa4-5dafb9b9fb15",
368
+ "displayName": "Aimbot Title",
369
+ "titleText": "Aimbot",
370
+ "isHiddenIfNotOwned": false,
371
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep3_Act2_BP/PlayerTitle_Aimbot_PrimaryAsset"
372
+ },
373
+ "7c2efedc-4d1f-509a-fb02-f2af4d9395d5": {
374
+ "uuid": "7c2efedc-4d1f-509a-fb02-f2af4d9395d5",
375
+ "displayName": "Cheap Title",
376
+ "titleText": "Cheap",
377
+ "isHiddenIfNotOwned": false,
378
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep3_Act2_BP/PlayerTitle_Cheap_PrimaryAsset"
379
+ },
380
+ "5c3e2030-4d8a-a242-04b1-ff872557ebfd": {
381
+ "uuid": "5c3e2030-4d8a-a242-04b1-ff872557ebfd",
382
+ "displayName": "Lurker Title",
383
+ "titleText": "Lurker",
384
+ "isHiddenIfNotOwned": false,
385
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep3_Act2_BP/PlayerTitle_Lurker_PrimaryAsset"
386
+ },
387
+ "cbab01c3-4626-2418-f52b-9db472572908": {
388
+ "uuid": "cbab01c3-4626-2418-f52b-9db472572908",
389
+ "displayName": "Hardstuck Title",
390
+ "titleText": "Hardstuck",
391
+ "isHiddenIfNotOwned": false,
392
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep3_Act3_BP/PlayerTitle_Hardstuck_PrimaryAsset"
393
+ },
394
+ "eea7d1b0-4a94-59d7-b131-5998a1b3b9f9": {
395
+ "uuid": "eea7d1b0-4a94-59d7-b131-5998a1b3b9f9",
396
+ "displayName": "Haunted Title",
397
+ "titleText": "Haunted",
398
+ "isHiddenIfNotOwned": false,
399
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep3_Act3_BP/PlayerTitle_Haunted_PrimaryAsset"
400
+ },
401
+ "25c60422-4246-fe96-9ac1-d88e7a379571": {
402
+ "uuid": "25c60422-4246-fe96-9ac1-d88e7a379571",
403
+ "displayName": "Unstoppable Title",
404
+ "titleText": "Unstoppable",
405
+ "isHiddenIfNotOwned": false,
406
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep3_Act3_BP/PlayerTitle_Unstoppable_PrimaryAsset"
407
+ },
408
+ "8b426759-4e32-0c61-51cc-289dc0a33073": {
409
+ "uuid": "8b426759-4e32-0c61-51cc-289dc0a33073",
410
+ "displayName": "Jinx Title",
411
+ "titleText": "Jinx",
412
+ "isHiddenIfNotOwned": false,
413
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep3_Act3_Bundle/PlayerTitle_Jinx_PrimaryAsset"
414
+ },
415
+ "5c26249f-4396-4bd8-166a-8fbf15ba4219": {
416
+ "uuid": "5c26249f-4396-4bd8-166a-8fbf15ba4219",
417
+ "displayName": "Arcane Title",
418
+ "titleText": "Arcane",
419
+ "isHiddenIfNotOwned": false,
420
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep3_Act3_EventPass/PlayerTitle_Arcane_PrimaryAsset"
421
+ },
422
+ "fc78400c-4356-c491-ab14-3dbb9e481073": {
423
+ "uuid": "fc78400c-4356-c491-ab14-3dbb9e481073",
424
+ "displayName": "Cupcake Title",
425
+ "titleText": "Cupcake",
426
+ "isHiddenIfNotOwned": false,
427
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep3_Act3_EventPass/PlayerTitle_Cupcake_PrimaryAsset"
428
+ },
429
+ "2111510b-4dbf-e9b6-9959-60b8fbce5b2b": {
430
+ "uuid": "2111510b-4dbf-e9b6-9959-60b8fbce5b2b",
431
+ "displayName": "Liar Title",
432
+ "titleText": "Liar",
433
+ "isHiddenIfNotOwned": false,
434
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep3_Act3_EventPass/PlayerTitle_Liar_PrimaryAsset"
435
+ },
436
+ "184e2e0d-4df5-2979-9bb0-93b102cf38fd": {
437
+ "uuid": "184e2e0d-4df5-2979-9bb0-93b102cf38fd",
438
+ "displayName": "Boomer Title",
439
+ "titleText": "Boomer",
440
+ "isHiddenIfNotOwned": false,
441
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep4_Act1_BP/PlayerTitle_Boomer_PrimaryAsset"
442
+ },
443
+ "28a16537-46e1-5b94-be11-788e89dd2f56": {
444
+ "uuid": "28a16537-46e1-5b94-be11-788e89dd2f56",
445
+ "displayName": "Cringe Title",
446
+ "titleText": "Cringe",
447
+ "isHiddenIfNotOwned": false,
448
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep4_Act1_BP/PlayerTitle_Cringe_PrimaryAsset"
449
+ },
450
+ "a87a5216-42d2-7c01-0d88-d69274c35254": {
451
+ "uuid": "a87a5216-42d2-7c01-0d88-d69274c35254",
452
+ "displayName": "Unrivaled Title",
453
+ "titleText": "Unrivaled",
454
+ "isHiddenIfNotOwned": false,
455
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep4_Act1_BP/PlayerTitle_Unrivaled_PrimaryAsset"
456
+ },
457
+ "ae71f09f-4875-9c37-d6e0-bd83fab998bf": {
458
+ "uuid": "ae71f09f-4875-9c37-d6e0-bd83fab998bf",
459
+ "displayName": "Wide Title",
460
+ "titleText": "Wide",
461
+ "isHiddenIfNotOwned": false,
462
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep4_Act2_BP/PlayerTitle_GalaxyBrain_PrimaryAsset"
463
+ },
464
+ "025b0aaf-4bc6-522c-faae-a484779c5d03": {
465
+ "uuid": "025b0aaf-4bc6-522c-faae-a484779c5d03",
466
+ "displayName": "Habibi Title",
467
+ "titleText": "Habibi",
468
+ "isHiddenIfNotOwned": false,
469
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep4_Act2_BP/PlayerTitle_Habibi_PrimaryAsset"
470
+ },
471
+ "810b90a3-4399-1f96-9e86-ce853c932156": {
472
+ "uuid": "810b90a3-4399-1f96-9e86-ce853c932156",
473
+ "displayName": "Goinmul Title",
474
+ "titleText": "Goinmul",
475
+ "isHiddenIfNotOwned": false,
476
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep4_Act2_BP/PlayerTitle_StagnantWater_PrimaryAsset"
477
+ },
478
+ "93a2544e-4f3e-2914-0d38-00a58345ffd9": {
479
+ "uuid": "93a2544e-4f3e-2914-0d38-00a58345ffd9",
480
+ "displayName": "Chalked Title",
481
+ "titleText": "Chalked",
482
+ "isHiddenIfNotOwned": false,
483
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep4_Act3_BP/PlayerTitle_Chalked_PrimaryAsset"
484
+ },
485
+ "5b3510f1-49ac-dc6e-2158-bbbd09e071d1": {
486
+ "uuid": "5b3510f1-49ac-dc6e-2158-bbbd09e071d1",
487
+ "displayName": "Finest Title",
488
+ "titleText": "Finest",
489
+ "isHiddenIfNotOwned": false,
490
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep4_Act3_BP/PlayerTitle_Finest_PrimaryAsset"
491
+ },
492
+ "39374ca0-447b-1d4e-aa38-e6b0e0b07946": {
493
+ "uuid": "39374ca0-447b-1d4e-aa38-e6b0e0b07946",
494
+ "displayName": "No Scope Title",
495
+ "titleText": "No Scope",
496
+ "isHiddenIfNotOwned": false,
497
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep4_Act3_BP/PlayerTitle_NoScope_PrimaryAsset"
498
+ },
499
+ "8178b705-49f5-553a-29c8-6ca3a5bb3f83": {
500
+ "uuid": "8178b705-49f5-553a-29c8-6ca3a5bb3f83",
501
+ "displayName": "Clown Title",
502
+ "titleText": "Clown",
503
+ "isHiddenIfNotOwned": false,
504
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep5_Act1_BP/PlayerTitle_Clown_PrimaryAsset"
505
+ },
506
+ "41c01df4-4d3d-d08d-58d4-e198763019f2": {
507
+ "uuid": "41c01df4-4d3d-d08d-58d4-e198763019f2",
508
+ "displayName": "Guilty Title",
509
+ "titleText": "Guilty",
510
+ "isHiddenIfNotOwned": false,
511
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep5_Act1_BP/PlayerTitle_Guilty_PrimaryAsset"
512
+ },
513
+ "a030f8ac-4475-d8d0-53a1-b8aafd5a3546": {
514
+ "uuid": "a030f8ac-4475-d8d0-53a1-b8aafd5a3546",
515
+ "displayName": "Random Title",
516
+ "titleText": "Random",
517
+ "isHiddenIfNotOwned": false,
518
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep5_Act1_BP/PlayerTitle_Random_PrimaryAsset"
519
+ },
520
+ "d9ab76c4-4b27-6437-577a-0f9dc8e28de7": {
521
+ "uuid": "d9ab76c4-4b27-6437-577a-0f9dc8e28de7",
522
+ "displayName": "Dimensional Title",
523
+ "titleText": "Dimensional",
524
+ "isHiddenIfNotOwned": false,
525
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep5_Act1_EventPass/PlayerTitle_Dimensional_PrimaryAsset"
526
+ },
527
+ "dd66cdcb-46cb-5e6e-f66f-51aa8cc3c14b": {
528
+ "uuid": "dd66cdcb-46cb-5e6e-f66f-51aa8cc3c14b",
529
+ "displayName": "Double Agent Title",
530
+ "titleText": "Double Agent",
531
+ "isHiddenIfNotOwned": false,
532
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep5_Act1_EventPass/PlayerTitle_DoubleAgent_PrimaryAsset"
533
+ },
534
+ "b4309170-40bd-49cd-a097-a9a5b988d1d4": {
535
+ "uuid": "b4309170-40bd-49cd-a097-a9a5b988d1d4",
536
+ "displayName": "Clean Title",
537
+ "titleText": "Clean",
538
+ "isHiddenIfNotOwned": false,
539
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep5_Act2_BP/PlayerTitle_Clean_PrimaryAsset"
540
+ },
541
+ "7a6bbce5-4708-42d0-2152-98963ebdcf2c": {
542
+ "uuid": "7a6bbce5-4708-42d0-2152-98963ebdcf2c",
543
+ "displayName": "Extra Title",
544
+ "titleText": "Extra",
545
+ "isHiddenIfNotOwned": false,
546
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep5_Act2_BP/PlayerTitle_Extra_PrimaryAsset"
547
+ },
548
+ "2cb0c732-46b1-8c7f-81fc-25ac323f8962": {
549
+ "uuid": "2cb0c732-46b1-8c7f-81fc-25ac323f8962",
550
+ "displayName": "Mid Title",
551
+ "titleText": "Mid",
552
+ "isHiddenIfNotOwned": false,
553
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep5_Act2_BP/PlayerTitle_Mid_PrimaryAsset"
554
+ },
555
+ "d67cef9b-43cd-bc8c-840d-039582975c2a": {
556
+ "uuid": "d67cef9b-43cd-bc8c-840d-039582975c2a",
557
+ "displayName": "Gamer Title",
558
+ "titleText": "Gamer",
559
+ "isHiddenIfNotOwned": false,
560
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep5_Act2_EventPass/PlayerTitle_Gamer_PrimaryAsset"
561
+ },
562
+ "171e2f90-41e0-48d0-bbf5-28a531c7eafb": {
563
+ "uuid": "171e2f90-41e0-48d0-bbf5-28a531c7eafb",
564
+ "displayName": "Potato Title",
565
+ "titleText": "Potato",
566
+ "isHiddenIfNotOwned": false,
567
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep5_Act2_EventPass/PlayerTitle_Potato_PrimaryAsset"
568
+ },
569
+ "06478ef0-4dc2-5767-ec02-d190487ed132": {
570
+ "uuid": "06478ef0-4dc2-5767-ec02-d190487ed132",
571
+ "displayName": "Cursed Title",
572
+ "titleText": "Cursed",
573
+ "isHiddenIfNotOwned": false,
574
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep5_Act3_BP/PlayerTItle_Cursed_PrimaryAsset"
575
+ },
576
+ "18d5ee78-4a55-d1bb-205f-29ac410b5a7d": {
577
+ "uuid": "18d5ee78-4a55-d1bb-205f-29ac410b5a7d",
578
+ "displayName": "Icy Title",
579
+ "titleText": "Icy",
580
+ "isHiddenIfNotOwned": false,
581
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep5_Act3_BP/PlayerTitle_Icy_PrimaryAsset"
582
+ },
583
+ "f286dd70-42eb-57ba-9711-e2b56db08448": {
584
+ "uuid": "f286dd70-42eb-57ba-9711-e2b56db08448",
585
+ "displayName": "¡VAMOS! Title",
586
+ "titleText": "¡VAMOS!",
587
+ "isHiddenIfNotOwned": false,
588
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep5_Act3_BP/PlayerTitle_Vamos_PrimaryAsset"
589
+ },
590
+ "26db5aaa-4f29-953d-4377-a78e3122010d": {
591
+ "uuid": "26db5aaa-4f29-953d-4377-a78e3122010d",
592
+ "displayName": "Dimension Title",
593
+ "titleText": "Dimension",
594
+ "isHiddenIfNotOwned": false,
595
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep5_Act3_EventPass/PlayerTitle_Dimension_PrimaryAsset"
596
+ },
597
+ "0a4f7e1d-4478-e4fb-1bab-518d005034db": {
598
+ "uuid": "0a4f7e1d-4478-e4fb-1bab-518d005034db",
599
+ "displayName": "Disruption Title",
600
+ "titleText": "Disruption",
601
+ "isHiddenIfNotOwned": false,
602
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep5_Act3_EventPass/PlayerTitle_Disruption_PrimaryAsset"
603
+ },
604
+ "c406ce13-48d8-bdad-42ce-7a9d4c967492": {
605
+ "uuid": "c406ce13-48d8-bdad-42ce-7a9d4c967492",
606
+ "displayName": "Operator Only Title",
607
+ "titleText": "Operator Only",
608
+ "isHiddenIfNotOwned": false,
609
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep6_Act1_BP/PlayerTitle_OperatorOnly_PrimaryAsset"
610
+ },
611
+ "37690f15-4bbb-cea6-d8bd-bd8387b77ed1": {
612
+ "uuid": "37690f15-4bbb-cea6-d8bd-bd8387b77ed1",
613
+ "displayName": "Rez Bait Title",
614
+ "titleText": "Rez Bait",
615
+ "isHiddenIfNotOwned": false,
616
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep6_Act1_BP/PlayerTitle_RezBait_PrimaryAsset"
617
+ },
618
+ "0053beda-44f4-47f0-3ec5-68a20f7a0505": {
619
+ "uuid": "0053beda-44f4-47f0-3ec5-68a20f7a0505",
620
+ "displayName": "Unrated Title",
621
+ "titleText": "Unrated",
622
+ "isHiddenIfNotOwned": false,
623
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep6_Act1_BP/PlayerTitle_Unrated_PrimaryAsset"
624
+ },
625
+ "254021ec-426c-85de-3eba-faaeff17a5f5": {
626
+ "uuid": "254021ec-426c-85de-3eba-faaeff17a5f5",
627
+ "displayName": "Ace Title",
628
+ "titleText": "Ace",
629
+ "isHiddenIfNotOwned": false,
630
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep6_Act2_BP/PlayerTitle_Ace_PrimaryAsset"
631
+ },
632
+ "0fa48078-4978-cea8-c417-13972c5f981d": {
633
+ "uuid": "0fa48078-4978-cea8-c417-13972c5f981d",
634
+ "displayName": "Big Brain Title",
635
+ "titleText": "Big Brain",
636
+ "isHiddenIfNotOwned": false,
637
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep6_Act2_BP/PlayerTitle_BigBrain_PrimaryAsset"
638
+ },
639
+ "db75b6ef-4a26-55c0-587a-0dbf65a52040": {
640
+ "uuid": "db75b6ef-4a26-55c0-587a-0dbf65a52040",
641
+ "displayName": "Slay Title",
642
+ "titleText": "Slay",
643
+ "isHiddenIfNotOwned": false,
644
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep6_Act2_BP/PlayerTitle_Slay_PrimaryAsset"
645
+ },
646
+ "82de8a03-4ec9-0879-109b-1da4f2b3b1e6": {
647
+ "uuid": "82de8a03-4ec9-0879-109b-1da4f2b3b1e6",
648
+ "displayName": "Beard Papi Title",
649
+ "titleText": "Beard Papi",
650
+ "isHiddenIfNotOwned": false,
651
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep6_Act3_BP/PlayerTitle_BeardPapi_PrimaryAsset"
652
+ },
653
+ "a8b8d049-471a-c3ff-3870-61b88e845b78": {
654
+ "uuid": "a8b8d049-471a-c3ff-3870-61b88e845b78",
655
+ "displayName": "Gizem Title",
656
+ "titleText": "Gizem",
657
+ "isHiddenIfNotOwned": false,
658
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep6_Act3_BP/PlayerTitle_Gizem_PrimaryAsset"
659
+ },
660
+ "129190d4-42fa-4e79-75e3-ffb5679d1dc2": {
661
+ "uuid": "129190d4-42fa-4e79-75e3-ffb5679d1dc2",
662
+ "displayName": "UwU Title",
663
+ "titleText": "UwU",
664
+ "isHiddenIfNotOwned": false,
665
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep6_Act3_BP/PlayerTitle_UWU_PrimaryAsset"
666
+ },
667
+ "083766c1-4fdf-6602-311c-f6b634ddf564": {
668
+ "uuid": "083766c1-4fdf-6602-311c-f6b634ddf564",
669
+ "displayName": "Chef Title",
670
+ "titleText": "Chef",
671
+ "isHiddenIfNotOwned": false,
672
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep7_Act1_BP/PlayerTitle_Chef_PrimaryAsset"
673
+ },
674
+ "9fbec649-47d4-e7d3-579e-2e924ad1743f": {
675
+ "uuid": "9fbec649-47d4-e7d3-579e-2e924ad1743f",
676
+ "displayName": "Thirsty Title",
677
+ "titleText": "Thirsty ",
678
+ "isHiddenIfNotOwned": false,
679
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep7_Act1_BP/PlayerTitle_Thirsty_PrimaryAsset"
680
+ },
681
+ "33098ad2-4f3c-e93f-2bf9-70add3b90573": {
682
+ "uuid": "33098ad2-4f3c-e93f-2bf9-70add3b90573",
683
+ "displayName": "Twisten Title",
684
+ "titleText": "Twisten",
685
+ "isHiddenIfNotOwned": false,
686
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep7_Act1_BP/PlayerTitle_Twisten_PrimaryAsset"
687
+ },
688
+ "67ccf036-4860-a290-73a5-cc8f7b85cc7c": {
689
+ "uuid": "67ccf036-4860-a290-73a5-cc8f7b85cc7c",
690
+ "displayName": "Default Title",
691
+ "titleText": "Default",
692
+ "isHiddenIfNotOwned": false,
693
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep7_Act2_BP/PlayerTitle_BP_Default_PrimaryAsset"
694
+ },
695
+ "0bd2b029-496a-b3f4-417b-1cb4b06f2ad7": {
696
+ "uuid": "0bd2b029-496a-b3f4-417b-1cb4b06f2ad7",
697
+ "displayName": "OwO Title",
698
+ "titleText": "OwO",
699
+ "isHiddenIfNotOwned": false,
700
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep7_Act2_BP/PlayerTitle_OwO_PrimaryAsset"
701
+ },
702
+ "abb03247-4478-1b95-50b3-648f4338aca9": {
703
+ "uuid": "abb03247-4478-1b95-50b3-648f4338aca9",
704
+ "displayName": "Rawr Title",
705
+ "titleText": "Rawr",
706
+ "isHiddenIfNotOwned": false,
707
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep7_Act2_BP/PlayerTitle_Rawr_PrimaryAsset"
708
+ },
709
+ "a647ee60-41a4-5c1f-e255-3896b786112b": {
710
+ "uuid": "a647ee60-41a4-5c1f-e255-3896b786112b",
711
+ "displayName": "Bet Title",
712
+ "titleText": "Bet",
713
+ "isHiddenIfNotOwned": false,
714
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep7_Act3_BP/PlayerTitle_Bet_PrimaryAsset"
715
+ },
716
+ "bc6a30d8-4d83-82aa-dfe9-7389c776f312": {
717
+ "uuid": "bc6a30d8-4d83-82aa-dfe9-7389c776f312",
718
+ "displayName": "Grrr Title",
719
+ "titleText": "Grrr",
720
+ "isHiddenIfNotOwned": false,
721
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep7_Act3_BP/PlayerTitle_Grrr_PrimaryAsset"
722
+ },
723
+ "00e33dd8-4b70-db72-0ba7-d59db3693378": {
724
+ "uuid": "00e33dd8-4b70-db72-0ba7-d59db3693378",
725
+ "displayName": "Rockets Title",
726
+ "titleText": "Rockets",
727
+ "isHiddenIfNotOwned": false,
728
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep7_Act3_BP/PlayerTitle_Rockets_PrimaryAsset"
729
+ },
730
+ "5c64334a-4bda-37db-a5af-ba96efdb6349": {
731
+ "uuid": "5c64334a-4bda-37db-a5af-ba96efdb6349",
732
+ "displayName": "No Chill Title",
733
+ "titleText": "No Chill ",
734
+ "isHiddenIfNotOwned": false,
735
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep8_Act1_BP/PlayerTitle_NoChill_PrimaryAsset"
736
+ },
737
+ "0357d6fd-4d79-ff08-9764-39b8e39fa74c": {
738
+ "uuid": "0357d6fd-4d79-ff08-9764-39b8e39fa74c",
739
+ "displayName": "No Shot Title",
740
+ "titleText": "No Shot ",
741
+ "isHiddenIfNotOwned": false,
742
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep8_Act1_BP/PlayerTitle_NoShot_PrimaryAsset"
743
+ },
744
+ "eafed084-4c7e-5c83-9331-1397ae5dc2d4": {
745
+ "uuid": "eafed084-4c7e-5c83-9331-1397ae5dc2d4",
746
+ "displayName": "Scattered Title",
747
+ "titleText": "Scattered",
748
+ "isHiddenIfNotOwned": false,
749
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep8_Act1_BP/PlayerTitle_Scattered_PrimaryAsset"
750
+ },
751
+ "53062821-4d76-b19f-ff64-8cba2b7dd35b": {
752
+ "uuid": "53062821-4d76-b19f-ff64-8cba2b7dd35b",
753
+ "displayName": "Real Title",
754
+ "titleText": "Real",
755
+ "isHiddenIfNotOwned": false,
756
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep8_Act2_BP/PlayerTitle_Real_PrimaryAsset"
757
+ },
758
+ "108229d2-4650-d7cb-ea58-adab1c02e709": {
759
+ "uuid": "108229d2-4650-d7cb-ea58-adab1c02e709",
760
+ "displayName": "Super Shy Title",
761
+ "titleText": "Super Shy",
762
+ "isHiddenIfNotOwned": false,
763
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep8_Act2_BP/PlayerTitle_SuperShy_PrimaryAsset"
764
+ },
765
+ "a9dd687e-4654-a110-d060-ac80bf27f6a1": {
766
+ "uuid": "a9dd687e-4654-a110-d060-ac80bf27f6a1",
767
+ "displayName": "Unserious Title",
768
+ "titleText": "Unserious",
769
+ "isHiddenIfNotOwned": false,
770
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep8_Act2_BP/PlayerTitle_Unserious_PrimaryAsset"
771
+ },
772
+ "1b4e3bf6-4850-3d9b-a02e-8182caf29b76": {
773
+ "uuid": "1b4e3bf6-4850-3d9b-a02e-8182caf29b76",
774
+ "displayName": ":3 Title",
775
+ "titleText": ":3",
776
+ "isHiddenIfNotOwned": false,
777
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep8_Act3_BP/PlayerTitle_CatFace_PrimaryAsset"
778
+ },
779
+ "dd09c951-4813-c6aa-1164-56906be63298": {
780
+ "uuid": "dd09c951-4813-c6aa-1164-56906be63298",
781
+ "displayName": "Fetch Title",
782
+ "titleText": "Fetch",
783
+ "isHiddenIfNotOwned": false,
784
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep8_Act3_BP/PlayerTitle_Fetch_PrimaryAsset"
785
+ },
786
+ "1608c00d-44d4-886e-4d17-fe8c372395c6": {
787
+ "uuid": "1608c00d-44d4-886e-4d17-fe8c372395c6",
788
+ "displayName": "Happy Birthday Title",
789
+ "titleText": "Happy Birthday",
790
+ "isHiddenIfNotOwned": false,
791
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep8_Act3_BP/PlayerTitle_HappyBirthday_PrimaryAsset"
792
+ },
793
+ "3bd26312-4c0a-d247-c479-06a4a518f841": {
794
+ "uuid": "3bd26312-4c0a-d247-c479-06a4a518f841",
795
+ "displayName": "Dream Team Title",
796
+ "titleText": "Dream Team",
797
+ "isHiddenIfNotOwned": false,
798
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep9_Act1_BP/PlayerTitle_DreamTeam_PrimaryAsset"
799
+ },
800
+ "01d64808-4c4e-6e12-2315-e38b3a330fbe": {
801
+ "uuid": "01d64808-4c4e-6e12-2315-e38b3a330fbe",
802
+ "displayName": "Skill Issue Title",
803
+ "titleText": "Skill Issue",
804
+ "isHiddenIfNotOwned": false,
805
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep9_Act1_BP/PlayerTitle_SkillIssue_PrimaryAsset"
806
+ },
807
+ "451152ee-4186-6397-7b3c-6798201fa1e0": {
808
+ "uuid": "451152ee-4186-6397-7b3c-6798201fa1e0",
809
+ "displayName": "Supernova Title",
810
+ "titleText": "Supernova",
811
+ "isHiddenIfNotOwned": false,
812
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep9_Act1_BP/PlayerTitle_Supernova_PrimaryAsset"
813
+ },
814
+ "503fedd1-4082-619f-4e54-a09b931ccf22": {
815
+ "uuid": "503fedd1-4082-619f-4e54-a09b931ccf22",
816
+ "displayName": "Basic Title",
817
+ "titleText": "Basic",
818
+ "isHiddenIfNotOwned": false,
819
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep9_Act2_BP/PlayerTitle_Basic_PrimaryAsset"
820
+ },
821
+ "71bcb4df-49e5-adef-b1ce-da914b26f615": {
822
+ "uuid": "71bcb4df-49e5-adef-b1ce-da914b26f615",
823
+ "displayName": "Yapper Title",
824
+ "titleText": "Yapper",
825
+ "isHiddenIfNotOwned": false,
826
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep9_Act2_BP/PlayerTitle_Yapper_PrimaryAsset"
827
+ },
828
+ "4f4e1150-4da1-8b9a-c447-28a205d36bbb": {
829
+ "uuid": "4f4e1150-4da1-8b9a-c447-28a205d36bbb",
830
+ "displayName": "brat Title",
831
+ "titleText": "brat",
832
+ "isHiddenIfNotOwned": false,
833
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep9_Act2_BP/PlayerTitle_brat_PrimaryAsset"
834
+ },
835
+ "161e5df8-477a-7669-ba0e-19884082dcd4": {
836
+ "uuid": "161e5df8-477a-7669-ba0e-19884082dcd4",
837
+ "displayName": "Aura Title",
838
+ "titleText": "Aura",
839
+ "isHiddenIfNotOwned": false,
840
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep9_Act3_BP/PlayerTitle_Aura_PrimaryAsset"
841
+ },
842
+ "48507fdf-4cf3-8f94-d45b-0cacaa4ab839": {
843
+ "uuid": "48507fdf-4cf3-8f94-d45b-0cacaa4ab839",
844
+ "displayName": "Ghosted Title",
845
+ "titleText": "Ghosted",
846
+ "isHiddenIfNotOwned": false,
847
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep9_Act3_BP/PlayerTitle_Ghosted_PrimaryAsset"
848
+ },
849
+ "c6fcc529-4bf9-625e-c0bf-d2b4af1e989a": {
850
+ "uuid": "c6fcc529-4bf9-625e-c0bf-d2b4af1e989a",
851
+ "displayName": "Treat Title",
852
+ "titleText": "Treat",
853
+ "isHiddenIfNotOwned": false,
854
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Ep9_Act3_BP/PlayerTitle_Treat_PrimaryAsset"
855
+ },
856
+ "631f4283-48b1-1855-d646-5e8f80e29821": {
857
+ "uuid": "631f4283-48b1-1855-d646-5e8f80e29821",
858
+ "displayName": "Day One Title",
859
+ "titleText": "Day One",
860
+ "isHiddenIfNotOwned": false,
861
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Episode1-1/PlayerTitle_Episode1-1_DayOne_PrimaryAsset"
862
+ },
863
+ "00d4d326-4edc-3229-7c28-129d3374e3ad": {
864
+ "uuid": "00d4d326-4edc-3229-7c28-129d3374e3ad",
865
+ "displayName": "Lone Wolf Title",
866
+ "titleText": "Lone Wolf",
867
+ "isHiddenIfNotOwned": false,
868
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Episode1-1/PlayerTitle_Episode1-1_LoneWolf_PrimaryAsset"
869
+ },
870
+ "9f0ead27-4925-db1e-626f-ab95d9c45845": {
871
+ "uuid": "9f0ead27-4925-db1e-626f-ab95d9c45845",
872
+ "displayName": "Team Player Title",
873
+ "titleText": "Team Player",
874
+ "isHiddenIfNotOwned": false,
875
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Episode1-1/PlayerTitle_Episode1-1_TeamPlayer_PrimaryAsset"
876
+ },
877
+ "ede4ce31-433f-edff-8bf2-a0b7a99e2193": {
878
+ "uuid": "ede4ce31-433f-edff-8bf2-a0b7a99e2193",
879
+ "displayName": "Louder Title",
880
+ "titleText": "Louder",
881
+ "isHiddenIfNotOwned": true,
882
+ "assetPath": "ShooterGame/Content/Personalization/Titles/GameChangers2023/PlayerTitle_GameChangers2023_PrimaryAsset"
883
+ },
884
+ "1c162242-4c26-4f7c-b969-1dbd857ced08": {
885
+ "uuid": "1c162242-4c26-4f7c-b969-1dbd857ced08",
886
+ "displayName": "2024 Game Changers Winner Title",
887
+ "titleText": "2024 Game Changers Winner",
888
+ "isHiddenIfNotOwned": true,
889
+ "assetPath": "ShooterGame/Content/Personalization/Titles/GameChangers2024/PlayerTitle_2024GameChangersWinner_PrimaryAsset"
890
+ },
891
+ "82360804-4438-c3a4-f36b-5d8ae0047c95": {
892
+ "uuid": "82360804-4438-c3a4-f36b-5d8ae0047c95",
893
+ "displayName": "Main Character Title",
894
+ "titleText": "Main Character",
895
+ "isHiddenIfNotOwned": true,
896
+ "assetPath": "ShooterGame/Content/Personalization/Titles/GameChangers2024/PlayerTitle_GameChangers2024Drops_PrimaryAsset"
897
+ },
898
+ "bf097526-4503-6b17-2859-49a67bde66d2": {
899
+ "uuid": "bf097526-4503-6b17-2859-49a67bde66d2",
900
+ "displayName": "Bot Title",
901
+ "titleText": "Bot",
902
+ "isHiddenIfNotOwned": false,
903
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Grenadier/PlayerTitle_Bot_PrimaryAsset"
904
+ },
905
+ "3a8f14a7-43e0-5c08-d021-41a5d8b3c983": {
906
+ "uuid": "3a8f14a7-43e0-5c08-d021-41a5d8b3c983",
907
+ "displayName": "Built Different Title",
908
+ "titleText": "Built Different",
909
+ "isHiddenIfNotOwned": false,
910
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Grenadier/PlayerTitle_BuiltDifferent_PrimaryAsset"
911
+ },
912
+ "ca40b3ab-4d9a-a032-60f1-ac9b22e50db9": {
913
+ "uuid": "ca40b3ab-4d9a-a032-60f1-ac9b22e50db9",
914
+ "displayName": "=^._.^= Title",
915
+ "titleText": "=^._.^=",
916
+ "isHiddenIfNotOwned": false,
917
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Halloween2024/PlayerTitle_Halloween2024_PrimaryAsset"
918
+ },
919
+ "bc45e4ae-43b9-474b-aaa5-fbb157b69595": {
920
+ "uuid": "bc45e4ae-43b9-474b-aaa5-fbb157b69595",
921
+ "displayName": "United Title",
922
+ "titleText": "United",
923
+ "isHiddenIfNotOwned": false,
924
+ "assetPath": "ShooterGame/Content/Personalization/Titles/HorizonsEventPass2023/PlayerTitle_United_PrimaryAsset"
925
+ },
926
+ "fd6ac34b-4806-e8e9-e081-d88d803a80aa": {
927
+ "uuid": "fd6ac34b-4806-e8e9-e081-d88d803a80aa",
928
+ "displayName": "Welcome Title",
929
+ "titleText": "Welcome",
930
+ "isHiddenIfNotOwned": false,
931
+ "assetPath": "ShooterGame/Content/Personalization/Titles/HorizonsEventPass2023/PlayerTitle_Welcome_PrimaryAsset"
932
+ },
933
+ "39a0f753-4a86-9a32-5e1d-7687b13f6e7e": {
934
+ "uuid": "39a0f753-4a86-9a32-5e1d-7687b13f6e7e",
935
+ "displayName": "ONE // 2022 Title",
936
+ "titleText": "ONE // 2022",
937
+ "isHiddenIfNotOwned": true,
938
+ "assetPath": "ShooterGame/Content/Personalization/Titles/JapanTeamTitle22/PlayerTitle_JapanTeam22_PrimaryAsset"
939
+ },
940
+ "eac291a7-4a39-2dea-8a21-41bf17a1d820": {
941
+ "uuid": "eac291a7-4a39-2dea-8a21-41bf17a1d820",
942
+ "displayName": "Gajeua Title",
943
+ "titleText": "Gajeua",
944
+ "isHiddenIfNotOwned": true,
945
+ "assetPath": "ShooterGame/Content/Personalization/Titles/KR_PCB_Giveaways/PlayerTitle_Gajeua_PrimaryAsset"
946
+ },
947
+ "08bc0abb-4878-e384-6719-0196163cde67": {
948
+ "uuid": "08bc0abb-4878-e384-6719-0196163cde67",
949
+ "displayName": "Soaked Title",
950
+ "titleText": "Soaked",
951
+ "isHiddenIfNotOwned": false,
952
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Mage/PlayerTitle_Soaked_PrimaryAsset"
953
+ },
954
+ "1ae3bd2a-4a12-d824-960e-a6a167d2d4e8": {
955
+ "uuid": "1ae3bd2a-4a12-d824-960e-a6a167d2d4e8",
956
+ "displayName": "Torrential Title",
957
+ "titleText": "Torrential",
958
+ "isHiddenIfNotOwned": false,
959
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Mage/PlayerTitle_Torrential_PrimaryAsset"
960
+ },
961
+ "721e1099-4156-4698-9c6b-7fb7cd8dd12b": {
962
+ "uuid": "721e1099-4156-4698-9c6b-7fb7cd8dd12b",
963
+ "displayName": "VCT Masters Bangkok Winner Title",
964
+ "titleText": "VCT Masters Bangkok Winner",
965
+ "isHiddenIfNotOwned": true,
966
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Masters1_2025Winner/PlayerTitle_Masters1_2025Winner_PrimaryAsset"
967
+ },
968
+ "358b77c6-439a-5e1d-7bb8-e2bcac51fae9": {
969
+ "uuid": "358b77c6-439a-5e1d-7bb8-e2bcac51fae9",
970
+ "displayName": "Crispy Title",
971
+ "titleText": "Crispy",
972
+ "isHiddenIfNotOwned": true,
973
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Masters1_2025_Drop/PlayerTitle_Masters1_2025_Drop_PrimaryAsset"
974
+ },
975
+ "adf2a0d5-43b2-e993-fe0b-66a51a3b7e2c": {
976
+ "uuid": "adf2a0d5-43b2-e993-fe0b-66a51a3b7e2c",
977
+ "displayName": "Ñ Title",
978
+ "titleText": "Ñ",
979
+ "isHiddenIfNotOwned": true,
980
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Masters24Drops/PlayerTitle_Masters24Drop_PrimaryAsset"
981
+ },
982
+ "16a50610-4fcc-8f6c-7edb-f2b00cf6af6b": {
983
+ "uuid": "16a50610-4fcc-8f6c-7edb-f2b00cf6af6b",
984
+ "displayName": "Jiāyóu Title",
985
+ "titleText": "Jiāyóu",
986
+ "isHiddenIfNotOwned": true,
987
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Masters24Drops/PlayerTitle_MastersShanghaiDrop24_PrimaryAsset"
988
+ },
989
+ "33a012ba-406f-adfb-13a6-21a70e02d631": {
990
+ "uuid": "33a012ba-406f-adfb-13a6-21a70e02d631",
991
+ "displayName": "Fam Title",
992
+ "titleText": "Fam",
993
+ "isHiddenIfNotOwned": true,
994
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Masters2_2025_Drops/PlayerTitle_Masters2_2025Drop_PrimaryAsset"
995
+ },
996
+ "bd7d7561-45e2-8f5d-2fce-d59dd78658bb": {
997
+ "uuid": "bd7d7561-45e2-8f5d-2fce-d59dd78658bb",
998
+ "displayName": "Eh? Title",
999
+ "titleText": "Eh?",
1000
+ "isHiddenIfNotOwned": true,
1001
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Masters2_2025_Drops/PlayerTitle_Masters2_2025PickEms2_PrimaryAsset"
1002
+ },
1003
+ "5ce31d67-4024-8101-1328-dcb35c33d56c": {
1004
+ "uuid": "5ce31d67-4024-8101-1328-dcb35c33d56c",
1005
+ "displayName": "VCT Masters Toronto Winner Title",
1006
+ "titleText": "VCT Masters Toronto Winner",
1007
+ "isHiddenIfNotOwned": true,
1008
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Masters2_2025_Drops/PlayerTitle_Masters2_2025Winners_PrimaryAsset"
1009
+ },
1010
+ "867b572f-4a0b-c29a-1410-66b54a867a5f": {
1011
+ "uuid": "867b572f-4a0b-c29a-1410-66b54a867a5f",
1012
+ "displayName": "Tempered Title",
1013
+ "titleText": "Tempered",
1014
+ "isHiddenIfNotOwned": false,
1015
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Nox/PlayerTitle_NoxTitle1_PrimaryAsset"
1016
+ },
1017
+ "b1e7ae08-4b7e-7b76-38fc-279179f960a7": {
1018
+ "uuid": "b1e7ae08-4b7e-7b76-38fc-279179f960a7",
1019
+ "displayName": "Metalweaver Title",
1020
+ "titleText": "Metalweaver",
1021
+ "isHiddenIfNotOwned": false,
1022
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Nox/PlayerTitle_NoxTitle2_PrimaryAsset"
1023
+ },
1024
+ "96bbed0e-426e-2f54-8ce1-ff820ca6b703": {
1025
+ "uuid": "96bbed0e-426e-2f54-8ce1-ff820ca6b703",
1026
+ "displayName": "All Star Title",
1027
+ "titleText": "All Star",
1028
+ "isHiddenIfNotOwned": false,
1029
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_AllStar_PrimaryAsset"
1030
+ },
1031
+ "0210a31e-41a0-6150-ee41-bd9d727b629b": {
1032
+ "uuid": "0210a31e-41a0-6150-ee41-bd9d727b629b",
1033
+ "displayName": "Dauntless Title",
1034
+ "titleText": "Dauntless",
1035
+ "isHiddenIfNotOwned": false,
1036
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Ascendant_PrimaryAsset"
1037
+ },
1038
+ "bf25c13b-4f89-1ab5-4455-53b34b9763f0": {
1039
+ "uuid": "bf25c13b-4f89-1ab5-4455-53b34b9763f0",
1040
+ "displayName": "Ballistic Title",
1041
+ "titleText": "Ballistic",
1042
+ "isHiddenIfNotOwned": false,
1043
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Ballistic_PrimaryAsset"
1044
+ },
1045
+ "887d1bc0-43b4-c084-4723-e0963a491722": {
1046
+ "uuid": "887d1bc0-43b4-c084-4723-e0963a491722",
1047
+ "displayName": "Biohazard Title",
1048
+ "titleText": "Biohazard",
1049
+ "isHiddenIfNotOwned": false,
1050
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Biohazard_PrimaryAsset"
1051
+ },
1052
+ "0ec01b3e-4822-d882-7e6e-e9a0b47cd8bb": {
1053
+ "uuid": "0ec01b3e-4822-d882-7e6e-e9a0b47cd8bb",
1054
+ "displayName": "Catastrophic Title",
1055
+ "titleText": "Catastrophic",
1056
+ "isHiddenIfNotOwned": false,
1057
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Catastrophic_PrimaryAsset"
1058
+ },
1059
+ "13b4c766-4f55-11f2-cde3-adababe50c7d": {
1060
+ "uuid": "13b4c766-4f55-11f2-cde3-adababe50c7d",
1061
+ "displayName": "Coach Title",
1062
+ "titleText": "Coach",
1063
+ "isHiddenIfNotOwned": false,
1064
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Coach_PrimaryAsset"
1065
+ },
1066
+ "e5b82cbf-409e-af39-a6f8-6dadf336dedb": {
1067
+ "uuid": "e5b82cbf-409e-af39-a6f8-6dadf336dedb",
1068
+ "displayName": "Concussive Title",
1069
+ "titleText": "Concussive",
1070
+ "isHiddenIfNotOwned": false,
1071
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Concussive_PrimaryAsset"
1072
+ },
1073
+ "e4bdb590-4888-86aa-a259-bebdb52fcbe7": {
1074
+ "uuid": "e4bdb590-4888-86aa-a259-bebdb52fcbe7",
1075
+ "displayName": "Deadeye Title",
1076
+ "titleText": "Deadeye",
1077
+ "isHiddenIfNotOwned": false,
1078
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Deadeye_PrimaryAsset"
1079
+ },
1080
+ "d13e579c-435e-44d4-cec2-6eae5a3c5ed4": {
1081
+ "uuid": "d13e579c-435e-44d4-cec2-6eae5a3c5ed4",
1082
+ "displayName": null,
1083
+ "titleText": null,
1084
+ "isHiddenIfNotOwned": false,
1085
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Default_PrimaryAsset"
1086
+ },
1087
+ "86375046-4f22-9dc8-f8d8-b3b4d029cd4b": {
1088
+ "uuid": "86375046-4f22-9dc8-f8d8-b3b4d029cd4b",
1089
+ "displayName": "Empress Title",
1090
+ "titleText": "Empress",
1091
+ "isHiddenIfNotOwned": false,
1092
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Empress_PrimaryAsset"
1093
+ },
1094
+ "37121e2f-43f6-0b7d-fdc4-29b85f3121c9": {
1095
+ "uuid": "37121e2f-43f6-0b7d-fdc4-29b85f3121c9",
1096
+ "displayName": "Enlightened Title",
1097
+ "titleText": "Enlightened",
1098
+ "isHiddenIfNotOwned": false,
1099
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Enlightened_PrimaryAsset"
1100
+ },
1101
+ "86bd997d-4e37-18c9-ada0-bf92e54baf60": {
1102
+ "uuid": "86bd997d-4e37-18c9-ada0-bf92e54baf60",
1103
+ "displayName": "First Title",
1104
+ "titleText": "First",
1105
+ "isHiddenIfNotOwned": true,
1106
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_First_PrimaryAsset"
1107
+ },
1108
+ "633be923-4e83-204f-8da1-d5930f939369": {
1109
+ "uuid": "633be923-4e83-204f-8da1-d5930f939369",
1110
+ "displayName": "Flashy Title",
1111
+ "titleText": "Flashy",
1112
+ "isHiddenIfNotOwned": false,
1113
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Flashy_PrimaryAsset"
1114
+ },
1115
+ "8f53997a-481a-d982-1deb-8fa995dbd7d4": {
1116
+ "uuid": "8f53997a-481a-d982-1deb-8fa995dbd7d4",
1117
+ "displayName": "Gatecrasher Title",
1118
+ "titleText": "Gatecrasher",
1119
+ "isHiddenIfNotOwned": false,
1120
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Gatecrasher_PrimaryAsset"
1121
+ },
1122
+ "c3b8609d-46cf-e290-868a-e4852a85704f": {
1123
+ "uuid": "c3b8609d-46cf-e290-868a-e4852a85704f",
1124
+ "displayName": "Genius Title",
1125
+ "titleText": "Genius",
1126
+ "isHiddenIfNotOwned": false,
1127
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Genius_PrimaryAsset"
1128
+ },
1129
+ "574b3440-46bd-fee9-0735-12b4e8a55acd": {
1130
+ "uuid": "574b3440-46bd-fee9-0735-12b4e8a55acd",
1131
+ "displayName": "Harbinger Title",
1132
+ "titleText": "Harbinger",
1133
+ "isHiddenIfNotOwned": false,
1134
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Harbinger_PrimaryAsset"
1135
+ },
1136
+ "24e2431e-45b4-ef91-e3f5-f19012522a70": {
1137
+ "uuid": "24e2431e-45b4-ef91-e3f5-f19012522a70",
1138
+ "displayName": "Hasty Title",
1139
+ "titleText": "Hasty",
1140
+ "isHiddenIfNotOwned": false,
1141
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Hasty_PrimaryAsset"
1142
+ },
1143
+ "7e3a1c4f-4aae-0569-cd74-a38f3cce2f51": {
1144
+ "uuid": "7e3a1c4f-4aae-0569-cd74-a38f3cce2f51",
1145
+ "displayName": "High Command Title",
1146
+ "titleText": "High Command",
1147
+ "isHiddenIfNotOwned": false,
1148
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_HighCommand_PrimaryAsset"
1149
+ },
1150
+ "566b6a77-4f72-af35-6d17-43be14e73cb7": {
1151
+ "uuid": "566b6a77-4f72-af35-6d17-43be14e73cb7",
1152
+ "displayName": "Hotshot Title",
1153
+ "titleText": "Hotshot",
1154
+ "isHiddenIfNotOwned": false,
1155
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Hotshot_PrimaryAsset"
1156
+ },
1157
+ "e1cbd3aa-4156-5330-20c4-e4b95a236dc2": {
1158
+ "uuid": "e1cbd3aa-4156-5330-20c4-e4b95a236dc2",
1159
+ "displayName": "Hunter Title",
1160
+ "titleText": "Hunter",
1161
+ "isHiddenIfNotOwned": false,
1162
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Hunter_PrimaryAsset"
1163
+ },
1164
+ "475467ae-4a07-41e7-df1e-699cc239fbd1": {
1165
+ "uuid": "475467ae-4a07-41e7-df1e-699cc239fbd1",
1166
+ "displayName": "Hurricane Title",
1167
+ "titleText": "Hurricane",
1168
+ "isHiddenIfNotOwned": false,
1169
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Hurricane_PrimaryAsset"
1170
+ },
1171
+ "eab22308-45da-2059-c14f-44b4c52237b1": {
1172
+ "uuid": "eab22308-45da-2059-c14f-44b4c52237b1",
1173
+ "displayName": "Infinite Title",
1174
+ "titleText": "Infinite",
1175
+ "isHiddenIfNotOwned": false,
1176
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Infinite_PrimaryAsset"
1177
+ },
1178
+ "32087e8b-4260-37af-f865-5aa64d79f916": {
1179
+ "uuid": "32087e8b-4260-37af-f865-5aa64d79f916",
1180
+ "displayName": "Mind Thief Title",
1181
+ "titleText": "Mind Thief",
1182
+ "isHiddenIfNotOwned": false,
1183
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_MindThief_PrimaryAsset"
1184
+ },
1185
+ "42e5678c-4ffd-c1a1-71ab-568db7af918a": {
1186
+ "uuid": "42e5678c-4ffd-c1a1-71ab-568db7af918a",
1187
+ "displayName": "Nature's Wrath Title",
1188
+ "titleText": "Nature's Wrath",
1189
+ "isHiddenIfNotOwned": false,
1190
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_NaturesWrath_PrimaryAsset"
1191
+ },
1192
+ "224f0e96-475d-165d-3ca6-8481a4cb7629": {
1193
+ "uuid": "224f0e96-475d-165d-3ca6-8481a4cb7629",
1194
+ "displayName": "Old Dog Title",
1195
+ "titleText": "Old Dog",
1196
+ "isHiddenIfNotOwned": false,
1197
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_OldDog_PrimaryAsset"
1198
+ },
1199
+ "f802662f-7a82-43d9-a626-335d65df08c5": {
1200
+ "uuid": "f802662f-7a82-43d9-a626-335d65df08c5",
1201
+ "displayName": "Pioneer Title",
1202
+ "titleText": "Pioneer",
1203
+ "isHiddenIfNotOwned": true,
1204
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Pioneer_PrimaryAsset"
1205
+ },
1206
+ "d873aef3-49be-277d-7966-d0a2d9d9ad22": {
1207
+ "uuid": "d873aef3-49be-277d-7966-d0a2d9d9ad22",
1208
+ "displayName": "Recruit Title",
1209
+ "titleText": "Recruit",
1210
+ "isHiddenIfNotOwned": false,
1211
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Recruit_PrimaryAsset"
1212
+ },
1213
+ "e23eaf20-4fb2-5c01-03b0-4fa7f14fbfbd": {
1214
+ "uuid": "e23eaf20-4fb2-5c01-03b0-4fa7f14fbfbd",
1215
+ "displayName": "Revenant Title",
1216
+ "titleText": "Revenant",
1217
+ "isHiddenIfNotOwned": false,
1218
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Revenant_PrimaryAsset"
1219
+ },
1220
+ "82de085a-4c2b-da95-a139-048e4ce83dae": {
1221
+ "uuid": "82de085a-4c2b-da95-a139-048e4ce83dae",
1222
+ "displayName": "Savage Title",
1223
+ "titleText": "Savage",
1224
+ "isHiddenIfNotOwned": false,
1225
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Savage_PrimaryAsset"
1226
+ },
1227
+ "b957c1f1-4784-f202-9bee-8598ebaa8bad": {
1228
+ "uuid": "b957c1f1-4784-f202-9bee-8598ebaa8bad",
1229
+ "displayName": "Sharpshooter Title",
1230
+ "titleText": "Sharpshooter",
1231
+ "isHiddenIfNotOwned": false,
1232
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Sharpshooter_PrimaryAsset"
1233
+ },
1234
+ "540826d2-4aff-4da9-e1b7-4ebf79deb4b4": {
1235
+ "uuid": "540826d2-4aff-4da9-e1b7-4ebf79deb4b4",
1236
+ "displayName": "Stellar Title",
1237
+ "titleText": "Stellar",
1238
+ "isHiddenIfNotOwned": false,
1239
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Stellar_PrimaryAsset"
1240
+ },
1241
+ "533b2a28-4638-f8cc-5aae-28a9a9af5a69": {
1242
+ "uuid": "533b2a28-4638-f8cc-5aae-28a9a9af5a69",
1243
+ "displayName": "Swift Title",
1244
+ "titleText": "Swift",
1245
+ "isHiddenIfNotOwned": false,
1246
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Swift_PrimaryAsset"
1247
+ },
1248
+ "af20bdd6-4829-2dee-1bd3-77a34b6e2e9e": {
1249
+ "uuid": "af20bdd6-4829-2dee-1bd3-77a34b6e2e9e",
1250
+ "displayName": "Techie Title",
1251
+ "titleText": "Techie",
1252
+ "isHiddenIfNotOwned": false,
1253
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Techie_PrimaryAsset"
1254
+ },
1255
+ "58dbc4af-4baf-bd4b-7084-9f92485b4006": {
1256
+ "uuid": "58dbc4af-4baf-bd4b-7084-9f92485b4006",
1257
+ "displayName": "Toxic Title",
1258
+ "titleText": "Toxic",
1259
+ "isHiddenIfNotOwned": false,
1260
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Toxic_PrimaryAsset"
1261
+ },
1262
+ "189f8454-45f8-0a74-4b25-77aae468ac02": {
1263
+ "uuid": "189f8454-45f8-0a74-4b25-77aae468ac02",
1264
+ "displayName": "Trailblazer Title",
1265
+ "titleText": "Trailblazer",
1266
+ "isHiddenIfNotOwned": false,
1267
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Trailblazer_PrimaryAsset"
1268
+ },
1269
+ "336516ab-475b-7e0c-74d1-9caaa4d580ac": {
1270
+ "uuid": "336516ab-475b-7e0c-74d1-9caaa4d580ac",
1271
+ "displayName": "Unmasked Title",
1272
+ "titleText": "Unmasked",
1273
+ "isHiddenIfNotOwned": false,
1274
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Unmasked_PrimaryAsset"
1275
+ },
1276
+ "e3ca05a4-4e44-9afe-3791-7d96ca8f71fa": {
1277
+ "uuid": "e3ca05a4-4e44-9afe-3791-7d96ca8f71fa",
1278
+ "displayName": "V1.0 Title",
1279
+ "titleText": "V1.0",
1280
+ "isHiddenIfNotOwned": true,
1281
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_V1dot0_PrimaryAsset"
1282
+ },
1283
+ "3aebca82-4877-bfa9-b215-8e8e3e5dedc7": {
1284
+ "uuid": "3aebca82-4877-bfa9-b215-8e8e3e5dedc7",
1285
+ "displayName": "Warden Title",
1286
+ "titleText": "Warden",
1287
+ "isHiddenIfNotOwned": false,
1288
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Warden_PrimaryAsset"
1289
+ },
1290
+ "503810e1-44f2-7ce9-5226-9398e60557de": {
1291
+ "uuid": "503810e1-44f2-7ce9-5226-9398e60557de",
1292
+ "displayName": "Warhead Title",
1293
+ "titleText": "Warhead",
1294
+ "isHiddenIfNotOwned": false,
1295
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Warhead_PrimaryAsset"
1296
+ },
1297
+ "bec998ee-416d-ba4a-8afb-a4ba38c9e228": {
1298
+ "uuid": "bec998ee-416d-ba4a-8afb-a4ba38c9e228",
1299
+ "displayName": "Watchdog Title",
1300
+ "titleText": "Watchdog",
1301
+ "isHiddenIfNotOwned": false,
1302
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PlayerTitle_Watchdog_PrimaryAsset"
1303
+ },
1304
+ "c8be8fda-46a8-9843-87bc-ecbf9672c227": {
1305
+ "uuid": "c8be8fda-46a8-9843-87bc-ecbf9672c227",
1306
+ "displayName": "Premier Ignition Champion Title",
1307
+ "titleText": "Premier Ignition Champion",
1308
+ "isHiddenIfNotOwned": true,
1309
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PremierIgnition/PlayerTitle_PremierIgnition_PrimaryAsset"
1310
+ },
1311
+ "c3ea6ac6-4dad-98d4-99a3-f7813edbc431": {
1312
+ "uuid": "c3ea6ac6-4dad-98d4-99a3-f7813edbc431",
1313
+ "displayName": "Premier Beta Champion Title",
1314
+ "titleText": "Premier Beta Champion",
1315
+ "isHiddenIfNotOwned": true,
1316
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PremierOpenBeta/PlayerTitle_PremierOpenBetaChampion_PrimaryAsset"
1317
+ },
1318
+ "302f332d-4a9a-1f2c-9331-779b338fdcc7": {
1319
+ "uuid": "302f332d-4a9a-1f2c-9331-779b338fdcc7",
1320
+ "displayName": "Premier Beta Title",
1321
+ "titleText": "Premier Beta",
1322
+ "isHiddenIfNotOwned": true,
1323
+ "assetPath": "ShooterGame/Content/Personalization/Titles/PremierOpenBeta/PlayerTitle_PremierOpenBeta_PrimaryAsset"
1324
+ },
1325
+ "580557bc-43da-8548-741a-34a0da3785bd": {
1326
+ "uuid": "580557bc-43da-8548-741a-34a0da3785bd",
1327
+ "displayName": "PREMIER LAUNCH CHAMPION // ADV TITLE",
1328
+ "titleText": "PREMIER LAUNCH CHAMPION // ADV",
1329
+ "isHiddenIfNotOwned": true,
1330
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep7/PlayerTitle_PremierEp7Advanced_PrimaryAsset"
1331
+ },
1332
+ "cb5cce68-434b-7022-e18b-56bb5257b4f8": {
1333
+ "uuid": "cb5cce68-434b-7022-e18b-56bb5257b4f8",
1334
+ "displayName": "PREMIER LAUNCH CHAMPION // CTD TITLE",
1335
+ "titleText": "PREMIER LAUNCH CHAMPION // CTD",
1336
+ "isHiddenIfNotOwned": true,
1337
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep7/PlayerTitle_PremierEp7Contender_PrimaryAsset"
1338
+ },
1339
+ "a235f017-4225-70fa-e5fe-9ca460ce1053": {
1340
+ "uuid": "a235f017-4225-70fa-e5fe-9ca460ce1053",
1341
+ "displayName": "PREMIER LAUNCH CHAMPION // ELT TITLE",
1342
+ "titleText": "PREMIER LAUNCH CHAMPION // ELT",
1343
+ "isHiddenIfNotOwned": true,
1344
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep7/PlayerTitle_PremierEp7Elite_PrimaryAsset"
1345
+ },
1346
+ "58a13ac0-4329-ea83-1235-16905766475d": {
1347
+ "uuid": "58a13ac0-4329-ea83-1235-16905766475d",
1348
+ "displayName": "PREMIER LAUNCH CHAMPION // INT TITLE",
1349
+ "titleText": "PREMIER LAUNCH CHAMPION // INT",
1350
+ "isHiddenIfNotOwned": true,
1351
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep7/PlayerTitle_PremierEp7Intermediate_PrimaryAsset"
1352
+ },
1353
+ "2fbbc891-44cd-b604-e35a-f9ae5436ab76": {
1354
+ "uuid": "2fbbc891-44cd-b604-e35a-f9ae5436ab76",
1355
+ "displayName": "PREMIER LAUNCH CHAMPION // OPN TITLE",
1356
+ "titleText": "PREMIER LAUNCH CHAMPION // OPN",
1357
+ "isHiddenIfNotOwned": true,
1358
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep7/PlayerTitle_PremierEp7Open_PrimaryAsset"
1359
+ },
1360
+ "b2446a1e-4e07-b483-662e-4db0ddf23535": {
1361
+ "uuid": "b2446a1e-4e07-b483-662e-4db0ddf23535",
1362
+ "displayName": "PREMIER E7A3 CHAMPION // ADV TITLE",
1363
+ "titleText": "PREMIER E7A3 CHAMPION // ADV",
1364
+ "isHiddenIfNotOwned": true,
1365
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep7Act3/PlayerTitle_PremierStageE7A3Advanced_PrimaryAsset"
1366
+ },
1367
+ "b8b1c163-4902-719f-cbdc-a09b2ed3a4bc": {
1368
+ "uuid": "b8b1c163-4902-719f-cbdc-a09b2ed3a4bc",
1369
+ "displayName": "PREMIER E7A3 CHAMPION // CTD TITLE",
1370
+ "titleText": "PREMIER E7A3 CHAMPION // CTD",
1371
+ "isHiddenIfNotOwned": true,
1372
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep7Act3/PlayerTitle_PremierStageE7A3Contender_PrimaryAsset"
1373
+ },
1374
+ "f19a9088-49d0-2a25-4256-04b9b16762ba": {
1375
+ "uuid": "f19a9088-49d0-2a25-4256-04b9b16762ba",
1376
+ "displayName": "PREMIER E7A3 CHAMPION // ELT TITLE",
1377
+ "titleText": "PREMIER E7A3 CHAMPION // ELT",
1378
+ "isHiddenIfNotOwned": true,
1379
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep7Act3/PlayerTitle_PremierStageE7A3Elite_PrimaryAsset"
1380
+ },
1381
+ "6c468c03-434f-c305-b947-4e900102a4e2": {
1382
+ "uuid": "6c468c03-434f-c305-b947-4e900102a4e2",
1383
+ "displayName": "PREMIER E7A3 CHAMPION // INT TITLE",
1384
+ "titleText": "PREMIER E7A3 CHAMPION // INT",
1385
+ "isHiddenIfNotOwned": true,
1386
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep7Act3/PlayerTitle_PremierStageE7A3Intermediate_PrimaryAsset"
1387
+ },
1388
+ "c2713143-4579-f890-c512-d2ab8caa27be": {
1389
+ "uuid": "c2713143-4579-f890-c512-d2ab8caa27be",
1390
+ "displayName": "PREMIER E7A3 CHAMPION // OPN TITLE",
1391
+ "titleText": "PREMIER E7A3 CHAMPION // OPN",
1392
+ "isHiddenIfNotOwned": true,
1393
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep7Act3/PlayerTitle_PremierStageE7A3Open_PrimaryAsset"
1394
+ },
1395
+ "6fe78578-405b-0400-5cd1-76aa87b2b94f": {
1396
+ "uuid": "6fe78578-405b-0400-5cd1-76aa87b2b94f",
1397
+ "displayName": "PREMIER E8A1 CHAMPION // ADV Title",
1398
+ "titleText": "PREMIER E8A1 CHAMPION // ADV",
1399
+ "isHiddenIfNotOwned": true,
1400
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep8Act1/PlayerTitle_PremierStageE8A1Advanced_PrimaryAsset"
1401
+ },
1402
+ "d96c8889-4883-1f0f-f1bc-71807e18e885": {
1403
+ "uuid": "d96c8889-4883-1f0f-f1bc-71807e18e885",
1404
+ "displayName": "PREMIER E8A1 CHAMPION // CTD Title",
1405
+ "titleText": "PREMIER E8A1 CHAMPION // CTD",
1406
+ "isHiddenIfNotOwned": true,
1407
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep8Act1/PlayerTitle_PremierStageE8A1Contender_PrimaryAsset"
1408
+ },
1409
+ "bad41af7-4d45-4fdf-50bf-8792def106fd": {
1410
+ "uuid": "bad41af7-4d45-4fdf-50bf-8792def106fd",
1411
+ "displayName": "PREMIER E8A1 CHAMPION // ELT Title",
1412
+ "titleText": "PREMIER E8A1 CHAMPION // ELT",
1413
+ "isHiddenIfNotOwned": true,
1414
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep8Act1/PlayerTitle_PremierStageE8A1Elite_PrimaryAsset"
1415
+ },
1416
+ "e3082ce4-425d-754a-67e5-c282617ad3e0": {
1417
+ "uuid": "e3082ce4-425d-754a-67e5-c282617ad3e0",
1418
+ "displayName": "PREMIER E8A1 CHAMPION // INT Title",
1419
+ "titleText": "PREMIER E8A1 CHAMPION // INT",
1420
+ "isHiddenIfNotOwned": true,
1421
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep8Act1/PlayerTitle_PremierStageE8A1Intermediate_PrimaryAsset"
1422
+ },
1423
+ "355986ae-4a27-1d4e-a5ad-658b5a578182": {
1424
+ "uuid": "355986ae-4a27-1d4e-a5ad-658b5a578182",
1425
+ "displayName": "PREMIER E8A1 CHAMPION // OPN Title",
1426
+ "titleText": "PREMIER E8A1 CHAMPION // OPN",
1427
+ "isHiddenIfNotOwned": true,
1428
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep8Act1/PlayerTitle_PremierStageE8A1Open_PrimaryAsset"
1429
+ },
1430
+ "2c5736c9-41ad-0cc7-45af-099b4fcaf52d": {
1431
+ "uuid": "2c5736c9-41ad-0cc7-45af-099b4fcaf52d",
1432
+ "displayName": "PREMIER E8A2 CHAMPION // ADV Title",
1433
+ "titleText": "PREMIER E8A2 CHAMPION // ADV",
1434
+ "isHiddenIfNotOwned": true,
1435
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep8Act2/PlayerTitle_PremierStageE8A2Advanced_PrimaryAsset"
1436
+ },
1437
+ "32abb0ba-4ef4-7934-9766-a5a7185e1456": {
1438
+ "uuid": "32abb0ba-4ef4-7934-9766-a5a7185e1456",
1439
+ "displayName": "PREMIER E8A2 CHAMPION // CTD Title",
1440
+ "titleText": "PREMIER E8A2 CHAMPION // CTD",
1441
+ "isHiddenIfNotOwned": true,
1442
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep8Act2/PlayerTitle_PremierStageE8A2Contender_PrimaryAsset"
1443
+ },
1444
+ "65f9ec08-454b-8d59-1c8a-d8825a7cc030": {
1445
+ "uuid": "65f9ec08-454b-8d59-1c8a-d8825a7cc030",
1446
+ "displayName": "PREMIER E8A2 CHAMPION // ELT Title",
1447
+ "titleText": "PREMIER E8A2 CHAMPION // ELT",
1448
+ "isHiddenIfNotOwned": true,
1449
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep8Act2/PlayerTitle_PremierStageE8A2Elite_PrimaryAsset"
1450
+ },
1451
+ "79cd0450-440f-d27e-6ad8-ba8ce05c201c": {
1452
+ "uuid": "79cd0450-440f-d27e-6ad8-ba8ce05c201c",
1453
+ "displayName": "PREMIER E8A2 CHAMPION // INT Title",
1454
+ "titleText": "PREMIER E8A2 CHAMPION // INT",
1455
+ "isHiddenIfNotOwned": true,
1456
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep8Act2/PlayerTitle_PremierStageE8A2Intermediate_PrimaryAsset"
1457
+ },
1458
+ "f67f69f8-4e43-5178-19df-50b26d84ee01": {
1459
+ "uuid": "f67f69f8-4e43-5178-19df-50b26d84ee01",
1460
+ "displayName": "PREMIER E8A2 CHAMPION // OPN Title",
1461
+ "titleText": "PREMIER E8A2 CHAMPION // OPN",
1462
+ "isHiddenIfNotOwned": true,
1463
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep8Act2/PlayerTitle_PremierStageE8A2Open_PrimaryAsset"
1464
+ },
1465
+ "ab11b87e-46c1-69a6-b857-dfb9b7b1c22b": {
1466
+ "uuid": "ab11b87e-46c1-69a6-b857-dfb9b7b1c22b",
1467
+ "displayName": "PREMIER E8A3 CHAMPION // ADV Title",
1468
+ "titleText": "PREMIER E8A3 CHAMPION // ADV",
1469
+ "isHiddenIfNotOwned": true,
1470
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep8Act3/PlayerTitle_PremierStageE8A3Advanced_PrimaryAsset"
1471
+ },
1472
+ "332c1442-4c05-aaec-1e68-04bccdb0e03c": {
1473
+ "uuid": "332c1442-4c05-aaec-1e68-04bccdb0e03c",
1474
+ "displayName": "PREMIER E8A3 CHAMPION // CTD Title",
1475
+ "titleText": "PREMIER E8A3 CHAMPION // CTD",
1476
+ "isHiddenIfNotOwned": true,
1477
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep8Act3/PlayerTitle_PremierStageE8A3Contender_PrimaryAsset"
1478
+ },
1479
+ "1b0249c4-4833-6f61-7961-c68b2f6ae192": {
1480
+ "uuid": "1b0249c4-4833-6f61-7961-c68b2f6ae192",
1481
+ "displayName": "PREMIER E8A3 CHAMPION // ELT Title",
1482
+ "titleText": "PREMIER E8A3 CHAMPION // ELT",
1483
+ "isHiddenIfNotOwned": true,
1484
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep8Act3/PlayerTitle_PremierStageE8A3Elite_PrimaryAsset"
1485
+ },
1486
+ "d32bee5a-404e-dcdc-c918-4f9536e03dd2": {
1487
+ "uuid": "d32bee5a-404e-dcdc-c918-4f9536e03dd2",
1488
+ "displayName": "PREMIER E8A3 CHAMPION // INT Title",
1489
+ "titleText": "PREMIER E8A3 CHAMPION // INT",
1490
+ "isHiddenIfNotOwned": true,
1491
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep8Act3/PlayerTitle_PremierStageE8A3Intermediate_PrimaryAsset"
1492
+ },
1493
+ "01f5d936-4e0d-f9f3-dcee-16a46f822729": {
1494
+ "uuid": "01f5d936-4e0d-f9f3-dcee-16a46f822729",
1495
+ "displayName": "PREMIER E8A3 CHAMPION // OPN Title",
1496
+ "titleText": "PREMIER E8A3 CHAMPION // OPN",
1497
+ "isHiddenIfNotOwned": true,
1498
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep8Act3/PlayerTitle_PremierStageE8A3Open_PrimaryAsset"
1499
+ },
1500
+ "b08d6dd6-4e57-fbfd-8610-d9b7aa4559ce": {
1501
+ "uuid": "b08d6dd6-4e57-fbfd-8610-d9b7aa4559ce",
1502
+ "displayName": "PREMIER E9A1 CHAMPION // ADV Title",
1503
+ "titleText": "PREMIER E9A1 CHAMPION // ADV",
1504
+ "isHiddenIfNotOwned": true,
1505
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep9Act1/PlayerTitle_PremierStageE9A1Advanced_PrimaryAsset"
1506
+ },
1507
+ "5f44dab2-457a-66e0-9d14-c2b1d31a804f": {
1508
+ "uuid": "5f44dab2-457a-66e0-9d14-c2b1d31a804f",
1509
+ "displayName": "PREMIER E9A1 CHAMPION // CTD Title",
1510
+ "titleText": "PREMIER E9A1 CHAMPION // CTD",
1511
+ "isHiddenIfNotOwned": true,
1512
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep9Act1/PlayerTitle_PremierStageE9A1Contender_PrimaryAsset"
1513
+ },
1514
+ "843ef6ff-42ae-2692-165c-d48160d8e668": {
1515
+ "uuid": "843ef6ff-42ae-2692-165c-d48160d8e668",
1516
+ "displayName": "PREMIER E9A1 CHAMPION // ELT Title",
1517
+ "titleText": "PREMIER E9A1 CHAMPION // ELT",
1518
+ "isHiddenIfNotOwned": true,
1519
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep9Act1/PlayerTitle_PremierStageE9A1Elite_PrimaryAsset"
1520
+ },
1521
+ "3b92faa7-4524-5ffa-f86d-55b3302220c1": {
1522
+ "uuid": "3b92faa7-4524-5ffa-f86d-55b3302220c1",
1523
+ "displayName": "PREMIER E9A1 GRAND CHAMP Title",
1524
+ "titleText": "PREMIER E9A1 GRAND CHAMP",
1525
+ "isHiddenIfNotOwned": true,
1526
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep9Act1/PlayerTitle_PremierStageE9A1GrandChampion_PrimaryAsset"
1527
+ },
1528
+ "ed115f7e-4ee8-c74f-a9ff-54bc27efa666": {
1529
+ "uuid": "ed115f7e-4ee8-c74f-a9ff-54bc27efa666",
1530
+ "displayName": "PREMIER E9A1 CHAMPION // INT Title",
1531
+ "titleText": "PREMIER E9A1 CHAMPION // INT",
1532
+ "isHiddenIfNotOwned": true,
1533
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep9Act1/PlayerTitle_PremierStageE9A1Intermediate_PrimaryAsset"
1534
+ },
1535
+ "e5cce9d7-4c50-2b96-e617-9f84df99dc92": {
1536
+ "uuid": "e5cce9d7-4c50-2b96-e617-9f84df99dc92",
1537
+ "displayName": "PREMIER E9A1 CHAMPION // OPN Title",
1538
+ "titleText": "PREMIER E9A1 CHAMPION // OPN",
1539
+ "isHiddenIfNotOwned": true,
1540
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep9Act1/PlayerTitle_PremierStageE9A1Open_PrimaryAsset"
1541
+ },
1542
+ "825fc0bd-4f71-cff2-5f40-458c48ff9300": {
1543
+ "uuid": "825fc0bd-4f71-cff2-5f40-458c48ff9300",
1544
+ "displayName": "PREMIER E9A2 CHAMPION // ADV Title",
1545
+ "titleText": "PREMIER E9A2 CHAMPION // ADV",
1546
+ "isHiddenIfNotOwned": true,
1547
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep9Act2/PlayerTitle_PremierStageE9A2Advanced_PrimaryAsset"
1548
+ },
1549
+ "50947289-4ef9-5c46-3380-89b5cf89c22f": {
1550
+ "uuid": "50947289-4ef9-5c46-3380-89b5cf89c22f",
1551
+ "displayName": "PREMIER E9A2 CHAMPION // CTD Title",
1552
+ "titleText": "PREMIER E9A2 CHAMPION // CTD",
1553
+ "isHiddenIfNotOwned": true,
1554
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep9Act2/PlayerTitle_PremierStageE9A2Contender_PrimaryAsset"
1555
+ },
1556
+ "62fe9350-4c4b-4a6f-285a-a181f8b2f050": {
1557
+ "uuid": "62fe9350-4c4b-4a6f-285a-a181f8b2f050",
1558
+ "displayName": "PREMIER E9A2 CHAMPION // ELT Title",
1559
+ "titleText": "PREMIER E9A2 CHAMPION // ELT",
1560
+ "isHiddenIfNotOwned": true,
1561
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep9Act2/PlayerTitle_PremierStageE9A2Elite_PrimaryAsset"
1562
+ },
1563
+ "37895482-439c-6beb-0dbd-d09d6376545f": {
1564
+ "uuid": "37895482-439c-6beb-0dbd-d09d6376545f",
1565
+ "displayName": "PREMIER E9A2 GRAND CHAMP Title",
1566
+ "titleText": "PREMIER E9A2 GRAND CHAMP",
1567
+ "isHiddenIfNotOwned": true,
1568
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep9Act2/PlayerTitle_PremierStageE9A2GrandChampion_PrimaryAsset"
1569
+ },
1570
+ "de8f7be3-4854-cd63-8cd1-c9b606581553": {
1571
+ "uuid": "de8f7be3-4854-cd63-8cd1-c9b606581553",
1572
+ "displayName": "PREMIER E9A2 CHAMPION // INT Title",
1573
+ "titleText": "PREMIER E9A2 CHAMPION // INT",
1574
+ "isHiddenIfNotOwned": true,
1575
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep9Act2/PlayerTitle_PremierStageE9A2Intermediate_PrimaryAsset"
1576
+ },
1577
+ "98a4fd78-48b6-2406-fee6-0297cad65cb6": {
1578
+ "uuid": "98a4fd78-48b6-2406-fee6-0297cad65cb6",
1579
+ "displayName": "PREMIER E9A2 CHAMPION // OPN Title",
1580
+ "titleText": "PREMIER E9A2 CHAMPION // OPN",
1581
+ "isHiddenIfNotOwned": true,
1582
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep9Act2/PlayerTitle_PremierStageE9A2Open_PrimaryAsset"
1583
+ },
1584
+ "f5953aaa-4f60-2ee9-c410-d78281077921": {
1585
+ "uuid": "f5953aaa-4f60-2ee9-c410-d78281077921",
1586
+ "displayName": "PREMIER E9A3 CHAMPION // ADV Title",
1587
+ "titleText": "PREMIER E9A3 CHAMPION // ADV",
1588
+ "isHiddenIfNotOwned": true,
1589
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep9Act3/PlayerTitle_PremierStageE9A3Advanced_PrimaryAsset"
1590
+ },
1591
+ "310c5efc-4a74-05ef-226b-3ea819785be3": {
1592
+ "uuid": "310c5efc-4a74-05ef-226b-3ea819785be3",
1593
+ "displayName": "PREMIER E9A3 CHAMPION // CTD Title",
1594
+ "titleText": "PREMIER E9A3 CHAMPION // CTD",
1595
+ "isHiddenIfNotOwned": true,
1596
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep9Act3/PlayerTitle_PremierStageE9A3Contender_PrimaryAsset"
1597
+ },
1598
+ "8d864d1f-4f63-c622-625b-2f87ea56b48f": {
1599
+ "uuid": "8d864d1f-4f63-c622-625b-2f87ea56b48f",
1600
+ "displayName": "PREMIER E9A3 CHAMPION // ELT Title",
1601
+ "titleText": "PREMIER E9A3 CHAMPION // ELT",
1602
+ "isHiddenIfNotOwned": true,
1603
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep9Act3/PlayerTitle_PremierStageE9A3Elite_PrimaryAsset"
1604
+ },
1605
+ "46a39cce-49af-3681-7463-bfb77e04a3e8": {
1606
+ "uuid": "46a39cce-49af-3681-7463-bfb77e04a3e8",
1607
+ "displayName": "PREMIER E9A3 GRAND CHAMP Title",
1608
+ "titleText": "PREMIER E9A3 GRAND CHAMP",
1609
+ "isHiddenIfNotOwned": true,
1610
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep9Act3/PlayerTitle_PremierStageE9A3GrandChampion_PrimaryAsset"
1611
+ },
1612
+ "2776b715-4c89-e210-5f01-448784413eee": {
1613
+ "uuid": "2776b715-4c89-e210-5f01-448784413eee",
1614
+ "displayName": "PREMIER E9A3 CHAMPION // INT Title",
1615
+ "titleText": "PREMIER E9A3 CHAMPION // INT",
1616
+ "isHiddenIfNotOwned": true,
1617
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep9Act3/PlayerTitle_PremierStageE9A3Intermediate_PrimaryAsset"
1618
+ },
1619
+ "51f38b77-4ad0-50e9-f512-2f842f9ccb8b": {
1620
+ "uuid": "51f38b77-4ad0-50e9-f512-2f842f9ccb8b",
1621
+ "displayName": "PREMIER E9A3 CHAMPION // OPN Title",
1622
+ "titleText": "PREMIER E9A3 CHAMPION // OPN",
1623
+ "isHiddenIfNotOwned": true,
1624
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_Ep9Act3/PlayerTitle_PremierStageE9A3Open_PrimaryAsset"
1625
+ },
1626
+ "ab7d011c-4c8b-c323-0437-19943a73bd53": {
1627
+ "uuid": "ab7d011c-4c8b-c323-0437-19943a73bd53",
1628
+ "displayName": "PREMIER V25A1 CHAMPION // ADV Title",
1629
+ "titleText": "PREMIER V25A1 CHAMPION // ADV",
1630
+ "isHiddenIfNotOwned": true,
1631
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_V25_Act1/PlayerTitle_PremierStageV25A1Advanced_PrimaryAsset"
1632
+ },
1633
+ "8fa9c67d-4d2d-3083-d83b-7fa29b2331f1": {
1634
+ "uuid": "8fa9c67d-4d2d-3083-d83b-7fa29b2331f1",
1635
+ "displayName": "PREMIER V25A1 CHAMPION // CTD Title",
1636
+ "titleText": "PREMIER V25A1 CHAMPION // CTD",
1637
+ "isHiddenIfNotOwned": true,
1638
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_V25_Act1/PlayerTitle_PremierStageV25A1Contender_PrimaryAsset"
1639
+ },
1640
+ "dc70eec7-4d28-0c05-1f70-ed890820f5a8": {
1641
+ "uuid": "dc70eec7-4d28-0c05-1f70-ed890820f5a8",
1642
+ "displayName": "PREMIER V25A1 CHAMPION // ELT Title",
1643
+ "titleText": "PREMIER V25A1 CHAMPION // ELT",
1644
+ "isHiddenIfNotOwned": true,
1645
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_V25_Act1/PlayerTitle_PremierStageV25A1Elite_PrimaryAsset"
1646
+ },
1647
+ "7c145dc9-4459-cf80-89a7-2b8a27fb0d0d": {
1648
+ "uuid": "7c145dc9-4459-cf80-89a7-2b8a27fb0d0d",
1649
+ "displayName": "PREMIER V25A1 GRAND CHAMP Title",
1650
+ "titleText": "PREMIER V25A1 GRAND CHAMP",
1651
+ "isHiddenIfNotOwned": true,
1652
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_V25_Act1/PlayerTitle_PremierStageV25A1GrandChampion_PrimaryAsset"
1653
+ },
1654
+ "2df88072-4191-2baa-ad15-cbb6a9ceee61": {
1655
+ "uuid": "2df88072-4191-2baa-ad15-cbb6a9ceee61",
1656
+ "displayName": "PREMIER V25A1 CHAMPION // INT Title",
1657
+ "titleText": "PREMIER V25A1 CHAMPION // INT",
1658
+ "isHiddenIfNotOwned": true,
1659
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_V25_Act1/PlayerTitle_PremierStageV25A1Intermediate_PrimaryAsset"
1660
+ },
1661
+ "82cef197-4078-a992-552b-06beb65b5a24": {
1662
+ "uuid": "82cef197-4078-a992-552b-06beb65b5a24",
1663
+ "displayName": "PREMIER V25A1 CHAMPION // OPN Title",
1664
+ "titleText": "PREMIER V25A1 CHAMPION // OPN",
1665
+ "isHiddenIfNotOwned": true,
1666
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_V25_Act1/PlayerTitle_PremierStageV25A1Open_PrimaryAsset"
1667
+ },
1668
+ "abb43945-4ec6-62b5-b226-80a731e2ed2d": {
1669
+ "uuid": "abb43945-4ec6-62b5-b226-80a731e2ed2d",
1670
+ "displayName": "PREMIER V25A2 CHAMPION // ADV Title",
1671
+ "titleText": "PREMIER V25A2 CHAMPION // ADV",
1672
+ "isHiddenIfNotOwned": true,
1673
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_V25_Act2/PlayerTitle_PremierStageV25A2Advanced_PrimaryAsset"
1674
+ },
1675
+ "b716a7be-44ed-4bf3-73b3-f08da1683ec2": {
1676
+ "uuid": "b716a7be-44ed-4bf3-73b3-f08da1683ec2",
1677
+ "displayName": "PREMIER V25A2 CHAMPION // CTD Title",
1678
+ "titleText": "PREMIER V25A2 CHAMPION // CTD",
1679
+ "isHiddenIfNotOwned": true,
1680
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_V25_Act2/PlayerTitle_PremierStageV25A2Contender_PrimaryAsset"
1681
+ },
1682
+ "6ed40923-455e-11e2-1867-f091f1ed411e": {
1683
+ "uuid": "6ed40923-455e-11e2-1867-f091f1ed411e",
1684
+ "displayName": "PREMIER V25A2 CHAMPION // ELT Title",
1685
+ "titleText": "PREMIER V25A2 CHAMPION // ELT",
1686
+ "isHiddenIfNotOwned": true,
1687
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_V25_Act2/PlayerTitle_PremierStageV25A2Elite_PrimaryAsset"
1688
+ },
1689
+ "e5dce9d2-4731-64af-0f19-d1be5a5c19d4": {
1690
+ "uuid": "e5dce9d2-4731-64af-0f19-d1be5a5c19d4",
1691
+ "displayName": "PREMIER V25A2 GRAND CHAMP Title",
1692
+ "titleText": "PREMIER V25A2 GRAND CHAMP",
1693
+ "isHiddenIfNotOwned": true,
1694
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_V25_Act2/PlayerTitle_PremierStageV25A2GrandChampion_PrimaryAsset"
1695
+ },
1696
+ "97c6aeed-4809-5dda-1041-2c87f78d0b6f": {
1697
+ "uuid": "97c6aeed-4809-5dda-1041-2c87f78d0b6f",
1698
+ "displayName": "PREMIER V25A2 CHAMPION // INT Title",
1699
+ "titleText": "PREMIER V25A2 CHAMPION // INT",
1700
+ "isHiddenIfNotOwned": true,
1701
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_V25_Act2/PlayerTitle_PremierStageV25A2Intermediate_PrimaryAsset"
1702
+ },
1703
+ "74e91e98-49cb-38ca-655b-cc97858ed87a": {
1704
+ "uuid": "74e91e98-49cb-38ca-655b-cc97858ed87a",
1705
+ "displayName": "PREMIER V25A2 CHAMPION // OPN Title",
1706
+ "titleText": "PREMIER V25A2 CHAMPION // OPN",
1707
+ "isHiddenIfNotOwned": true,
1708
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_V25_Act2/PlayerTitle_PremierStageV25A2Open_PrimaryAsset"
1709
+ },
1710
+ "80297990-4529-567d-d3fe-f598de18c4d9": {
1711
+ "uuid": "80297990-4529-567d-d3fe-f598de18c4d9",
1712
+ "displayName": "PREMIER V25A3 CHAMPION // ADV Title",
1713
+ "titleText": "PREMIER V25A3 CHAMPION // ADV",
1714
+ "isHiddenIfNotOwned": true,
1715
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_V25_Act3/PlayerTitle_PremierStageV25A3Advanced_PrimaryAsset"
1716
+ },
1717
+ "46ca21cb-4dcf-c67b-01a9-65bec963e871": {
1718
+ "uuid": "46ca21cb-4dcf-c67b-01a9-65bec963e871",
1719
+ "displayName": "PREMIER V25A3 CHAMPION // CTD Title",
1720
+ "titleText": "PREMIER V25A3 CHAMPION // CTD",
1721
+ "isHiddenIfNotOwned": true,
1722
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_V25_Act3/PlayerTitle_PremierStageV25A3Contender_PrimaryAsset"
1723
+ },
1724
+ "148f0317-4158-f2cb-d34c-4bb0725b6dae": {
1725
+ "uuid": "148f0317-4158-f2cb-d34c-4bb0725b6dae",
1726
+ "displayName": "PREMIER V25A3 CHAMPION // ELT Title",
1727
+ "titleText": "PREMIER V25A3 CHAMPION // ELT",
1728
+ "isHiddenIfNotOwned": true,
1729
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_V25_Act3/PlayerTitle_PremierStageV25A3Elite_PrimaryAsset"
1730
+ },
1731
+ "25b0be18-4144-f85e-fa50-88ac8c60bed4": {
1732
+ "uuid": "25b0be18-4144-f85e-fa50-88ac8c60bed4",
1733
+ "displayName": "PREMIER V25A3 GRAND CHAMP Title",
1734
+ "titleText": "PREMIER V25A3 GRAND CHAMP",
1735
+ "isHiddenIfNotOwned": true,
1736
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_V25_Act3/PlayerTitle_PremierStageV25A3GrandChampion_PrimaryAsset"
1737
+ },
1738
+ "b76feb24-427f-5910-f9e3-0bb63d5787ff": {
1739
+ "uuid": "b76feb24-427f-5910-f9e3-0bb63d5787ff",
1740
+ "displayName": "PREMIER V25A3 CHAMPION // INT Title",
1741
+ "titleText": "PREMIER V25A3 CHAMPION // INT",
1742
+ "isHiddenIfNotOwned": true,
1743
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_V25_Act3/PlayerTitle_PremierStageV25A3Intermediate_PrimaryAsset"
1744
+ },
1745
+ "67b2e86a-4803-8683-e9b7-719975f62fd1": {
1746
+ "uuid": "67b2e86a-4803-8683-e9b7-719975f62fd1",
1747
+ "displayName": "PREMIER V25A3 CHAMPION // OPN Title",
1748
+ "titleText": "PREMIER V25A3 CHAMPION // OPN",
1749
+ "isHiddenIfNotOwned": true,
1750
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Premier_V25_Act3/PlayerTitle_PremierStageV25A3Open_PrimaryAsset"
1751
+ },
1752
+ "f3bf3c15-4e3b-6e58-64a3-8f9995f39370": {
1753
+ "uuid": "f3bf3c15-4e3b-6e58-64a3-8f9995f39370",
1754
+ "displayName": "Ally Title",
1755
+ "titleText": "Ally",
1756
+ "isHiddenIfNotOwned": true,
1757
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Pride/Pride2021/PlayerTitle_Ally_PrimaryAsset"
1758
+ },
1759
+ "c70f542b-4880-c65f-485e-ec8ffd055243": {
1760
+ "uuid": "c70f542b-4880-c65f-485e-ec8ffd055243",
1761
+ "displayName": "Proud Title",
1762
+ "titleText": "Proud",
1763
+ "isHiddenIfNotOwned": true,
1764
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Pride/Pride2021/PlayerTitle_Proud_PrimaryAsset"
1765
+ },
1766
+ "4ef6afa5-41de-2d89-2bec-adb0feeecfad": {
1767
+ "uuid": "4ef6afa5-41de-2d89-2bec-adb0feeecfad",
1768
+ "displayName": "Proud and Fierce Title",
1769
+ "titleText": "Proud and Fierce",
1770
+ "isHiddenIfNotOwned": true,
1771
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Pride/Pride2023/PlayerTitle_PrideTitle_PrimaryAsset"
1772
+ },
1773
+ "a32d5803-4a00-ae44-2a7b-7bb2c3469008": {
1774
+ "uuid": "a32d5803-4a00-ae44-2a7b-7bb2c3469008",
1775
+ "displayName": "Better Together Title",
1776
+ "titleText": "Better Together",
1777
+ "isHiddenIfNotOwned": true,
1778
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Pride/Pride2024/PlayerTitle_Pride2024Title_PrimaryAsset"
1779
+ },
1780
+ "31ebd73d-4566-c82e-96de-59946848b87f": {
1781
+ "uuid": "31ebd73d-4566-c82e-96de-59946848b87f",
1782
+ "displayName": "Ate Title",
1783
+ "titleText": "Ate",
1784
+ "isHiddenIfNotOwned": true,
1785
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Pride/Pride2025/PlayerTitle_Pride2025_PrimaryAsset"
1786
+ },
1787
+ "2178d2e2-402a-4d13-47d2-f8bf096067a3": {
1788
+ "uuid": "2178d2e2-402a-4d13-47d2-f8bf096067a3",
1789
+ "displayName": "Polar Clutch Title",
1790
+ "titleText": "Polar Clutch",
1791
+ "isHiddenIfNotOwned": true,
1792
+ "assetPath": "ShooterGame/Content/Personalization/Titles/RedBull2024_Partnership/PlayerTitle_PolarClutch_PrimaryAsset"
1793
+ },
1794
+ "08ac32fb-450a-34b8-4aef-d88e50ebd3cb": {
1795
+ "uuid": "08ac32fb-450a-34b8-4aef-d88e50ebd3cb",
1796
+ "displayName": "Clutch Title",
1797
+ "titleText": "Clutch",
1798
+ "isHiddenIfNotOwned": true,
1799
+ "assetPath": "ShooterGame/Content/Personalization/Titles/RedWings/PlayerTitle_Clutch_PrimaryAsset"
1800
+ },
1801
+ "421ee05f-4bae-370f-9660-638b208383a6": {
1802
+ "uuid": "421ee05f-4bae-370f-9660-638b208383a6",
1803
+ "displayName": "Tuned In Title",
1804
+ "titleText": "Tuned In",
1805
+ "isHiddenIfNotOwned": false,
1806
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Sequoia/PlayerTitle_SequoiaTitle1_PrimaryAsset"
1807
+ },
1808
+ "6770cf22-40f8-6c09-d508-b68c5d718317": {
1809
+ "uuid": "6770cf22-40f8-6c09-d508-b68c5d718317",
1810
+ "displayName": "Fixer Title",
1811
+ "titleText": "Fixer",
1812
+ "isHiddenIfNotOwned": false,
1813
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Sequoia/PlayerTitle_SequoiaTitle2_PrimaryAsset"
1814
+ },
1815
+ "58e5f5db-4b18-cf8a-afa2-b49574b34456": {
1816
+ "uuid": "58e5f5db-4b18-cf8a-afa2-b49574b34456",
1817
+ "displayName": "Champion Title",
1818
+ "titleText": "Champion",
1819
+ "isHiddenIfNotOwned": false,
1820
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Skinline_Titles/Champions/PlayerTitle_2021Champions_PrimaryAsset"
1821
+ },
1822
+ "e4a373f9-49cd-4645-4b4f-3796303175c3": {
1823
+ "uuid": "e4a373f9-49cd-4645-4b4f-3796303175c3",
1824
+ "displayName": "Outlaw Title",
1825
+ "titleText": "Outlaw",
1826
+ "isHiddenIfNotOwned": false,
1827
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Skinline_Titles/DoubleSniperStarterPack/PlayerTitle_DoubleSniperStarterPack_PrimaryAsset"
1828
+ },
1829
+ "22478fe7-4724-da26-cbbc-1d96134d2e93": {
1830
+ "uuid": "22478fe7-4724-da26-cbbc-1d96134d2e93",
1831
+ "displayName": "Mischievous Title",
1832
+ "titleText": "Mischievous",
1833
+ "isHiddenIfNotOwned": false,
1834
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Smonk/PlayerTitle_SmonkTitle1_PrimaryAsset"
1835
+ },
1836
+ "b215b87d-47ed-958d-b710-ee93a2ba9db8": {
1837
+ "uuid": "b215b87d-47ed-958d-b710-ee93a2ba9db8",
1838
+ "displayName": "Undying Title",
1839
+ "titleText": "Undying",
1840
+ "isHiddenIfNotOwned": false,
1841
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Smonk/PlayerTitle_SmonkTitle2_PrimaryAsset"
1842
+ },
1843
+ "44517ae3-4c48-d06e-4478-7c8007528652": {
1844
+ "uuid": "44517ae3-4c48-d06e-4478-7c8007528652",
1845
+ "displayName": "SNEAKERHEAD Title",
1846
+ "titleText": "SNEAKERHEAD",
1847
+ "isHiddenIfNotOwned": true,
1848
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Sneakerhead/PlayerTitle_Sneakerhead_PrimaryAsset"
1849
+ },
1850
+ "e398da6e-4719-eb48-0f79-72b51bf4c49f": {
1851
+ "uuid": "e398da6e-4719-eb48-0f79-72b51bf4c49f",
1852
+ "displayName": "Electrifying Title",
1853
+ "titleText": "Electrifying",
1854
+ "isHiddenIfNotOwned": false,
1855
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Sprinter/PlayerTitle_Electrifying_PrimaryAsset"
1856
+ },
1857
+ "c4285636-4056-8c21-b0d1-55867e74c98f": {
1858
+ "uuid": "c4285636-4056-8c21-b0d1-55867e74c98f",
1859
+ "displayName": "Zoomer Title",
1860
+ "titleText": "Zoomer",
1861
+ "isHiddenIfNotOwned": false,
1862
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Sprinter/PlayerTitle_Zoomer_PrimaryAsset"
1863
+ },
1864
+ "02b7600f-4f1e-7fe7-ea3a-4b8e1b802de4": {
1865
+ "uuid": "02b7600f-4f1e-7fe7-ea3a-4b8e1b802de4",
1866
+ "displayName": "Dreamwing Lunari Title",
1867
+ "titleText": "Dreamwing Lunari",
1868
+ "isHiddenIfNotOwned": false,
1869
+ "assetPath": "ShooterGame/Content/Personalization/Titles/StarPower/PlayerTitle_StarpowerAK_PrimaryAsset"
1870
+ },
1871
+ "fcf82480-44b6-1a40-0555-45a63c9d84c6": {
1872
+ "uuid": "fcf82480-44b6-1a40-0555-45a63c9d84c6",
1873
+ "displayName": "Dreamwing Solari Title",
1874
+ "titleText": "Dreamwing Solari",
1875
+ "isHiddenIfNotOwned": false,
1876
+ "assetPath": "ShooterGame/Content/Personalization/Titles/StarPower/PlayerTitle_StarpowerHMG_PrimaryAsset"
1877
+ },
1878
+ "4e9ac6e9-46b3-f62d-90fb-959f95db8390": {
1879
+ "uuid": "4e9ac6e9-46b3-f62d-90fb-959f95db8390",
1880
+ "displayName": "Dreamwing Amari Title",
1881
+ "titleText": "Dreamwing Amari",
1882
+ "isHiddenIfNotOwned": false,
1883
+ "assetPath": "ShooterGame/Content/Personalization/Titles/StarPower/PlayerTitle_StarpowerLuger_PrimaryAsset"
1884
+ },
1885
+ "fb9b90f3-41cc-72ed-8271-d691d4ce4544": {
1886
+ "uuid": "fb9b90f3-41cc-72ed-8271-d691d4ce4544",
1887
+ "displayName": "Dreamwing Terrari Title",
1888
+ "titleText": "Dreamwing Terrari",
1889
+ "isHiddenIfNotOwned": false,
1890
+ "assetPath": "ShooterGame/Content/Personalization/Titles/StarPower/PlayerTitle_StarpowerMP5_PrimaryAsset"
1891
+ },
1892
+ "f6ebd3df-4a26-747d-fb89-d8a3155fa8c2": {
1893
+ "uuid": "f6ebd3df-4a26-747d-fb89-d8a3155fa8c2",
1894
+ "displayName": "Dreamwing Evori Title",
1895
+ "titleText": "Dreamwing Evori",
1896
+ "isHiddenIfNotOwned": false,
1897
+ "assetPath": "ShooterGame/Content/Personalization/Titles/StarPower/PlayerTitle_StarpowerMelee_PrimaryAsset"
1898
+ },
1899
+ "f56d6897-4726-f336-77dc-6f82d2f982f2": {
1900
+ "uuid": "f56d6897-4726-f336-77dc-6f82d2f982f2",
1901
+ "displayName": "In Control Title",
1902
+ "titleText": "In Control",
1903
+ "isHiddenIfNotOwned": true,
1904
+ "assetPath": "ShooterGame/Content/Personalization/Titles/SupernovaEvent/PlayerTitle_InControl_PrimaryAsset"
1905
+ },
1906
+ "a63d4ef6-474c-aae6-8acc-e7875c476b34": {
1907
+ "uuid": "a63d4ef6-474c-aae6-8acc-e7875c476b34",
1908
+ "displayName": "Prismatic Title",
1909
+ "titleText": "Prismatic",
1910
+ "isHiddenIfNotOwned": false,
1911
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Terra/PlayerTitle_TerraTitle1_PrimaryAsset"
1912
+ },
1913
+ "110295ac-497c-d587-3f58-2d865f290016": {
1914
+ "uuid": "110295ac-497c-d587-3f58-2d865f290016",
1915
+ "displayName": "Iridescent Title",
1916
+ "titleText": "Iridescent",
1917
+ "isHiddenIfNotOwned": false,
1918
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Terra/PlayerTitle_TerraTitle2_PrimaryAsset"
1919
+ },
1920
+ "f3009eb7-4416-39e0-4b66-edb914c7f950": {
1921
+ "uuid": "f3009eb7-4416-39e0-4b66-edb914c7f950",
1922
+ "displayName": "NPC Title",
1923
+ "titleText": "NPC",
1924
+ "isHiddenIfNotOwned": false,
1925
+ "assetPath": "ShooterGame/Content/Personalization/Titles/V25_Act1_BP/PlayerTitle_NPC_PrimaryAsset"
1926
+ },
1927
+ "d4fb406f-42ce-dda3-c244-5da4a83d5e5f": {
1928
+ "uuid": "d4fb406f-42ce-dda3-c244-5da4a83d5e5f",
1929
+ "displayName": "New Year, New Me Title",
1930
+ "titleText": "New Year, New Me",
1931
+ "isHiddenIfNotOwned": false,
1932
+ "assetPath": "ShooterGame/Content/Personalization/Titles/V25_Act1_BP/PlayerTitle_NewYearNewMe_PrimaryAsset"
1933
+ },
1934
+ "6b4e1d0c-410e-878b-f151-9b8a8abc83a3": {
1935
+ "uuid": "6b4e1d0c-410e-878b-f151-9b8a8abc83a3",
1936
+ "displayName": "Pookie Title",
1937
+ "titleText": "Pookie",
1938
+ "isHiddenIfNotOwned": false,
1939
+ "assetPath": "ShooterGame/Content/Personalization/Titles/V25_Act1_BP/PlayerTitle_Pookie_PrimaryAsset"
1940
+ },
1941
+ "a6e414a8-42a6-4126-0a1c-a19c8977b63e": {
1942
+ "uuid": "a6e414a8-42a6-4126-0a1c-a19c8977b63e",
1943
+ "displayName": "Bestie Title",
1944
+ "titleText": "Bestie",
1945
+ "isHiddenIfNotOwned": false,
1946
+ "assetPath": "ShooterGame/Content/Personalization/Titles/V25_Act2_BP/PlayerTitle_Bestie_PrimaryAsset"
1947
+ },
1948
+ "b40e328b-4d8e-4a02-904d-f595c56d2ca9": {
1949
+ "uuid": "b40e328b-4d8e-4a02-904d-f595c56d2ca9",
1950
+ "displayName": "Delulu Title",
1951
+ "titleText": "Delulu",
1952
+ "isHiddenIfNotOwned": false,
1953
+ "assetPath": "ShooterGame/Content/Personalization/Titles/V25_Act2_BP/PlayerTitle_Delulu_PrimaryAsset"
1954
+ },
1955
+ "e5fc10fa-4e21-215f-962e-f799b321efcd": {
1956
+ "uuid": "e5fc10fa-4e21-215f-962e-f799b321efcd",
1957
+ "displayName": "Stylish Title",
1958
+ "titleText": "Stylish",
1959
+ "isHiddenIfNotOwned": false,
1960
+ "assetPath": "ShooterGame/Content/Personalization/Titles/V25_Act2_BP/PlayerTitle_Stylish_PrimaryAsset"
1961
+ },
1962
+ "3d9cda2b-4b2b-11c4-aa34-679987682f16": {
1963
+ "uuid": "3d9cda2b-4b2b-11c4-aa34-679987682f16",
1964
+ "displayName": "5K Title",
1965
+ "titleText": "5K",
1966
+ "isHiddenIfNotOwned": false,
1967
+ "assetPath": "ShooterGame/Content/Personalization/Titles/V25_Act3_BP/PlayerTitle_5K_PrimaryAsset"
1968
+ },
1969
+ "737723fc-4f7e-9676-d2d1-46ae2ca8684c": {
1970
+ "uuid": "737723fc-4f7e-9676-d2d1-46ae2ca8684c",
1971
+ "displayName": "5th Title",
1972
+ "titleText": "5th",
1973
+ "isHiddenIfNotOwned": false,
1974
+ "assetPath": "ShooterGame/Content/Personalization/Titles/V25_Act3_BP/PlayerTitle_5th_PrimaryAsset"
1975
+ },
1976
+ "6ee9282a-426a-7654-62d1-3fba65e8efe0": {
1977
+ "uuid": "6ee9282a-426a-7654-62d1-3fba65e8efe0",
1978
+ "displayName": "Family Title",
1979
+ "titleText": "Family",
1980
+ "isHiddenIfNotOwned": false,
1981
+ "assetPath": "ShooterGame/Content/Personalization/Titles/V25_Act3_BP/PlayerTitle_Family_PrimaryAsset"
1982
+ },
1983
+ "e7257c0b-456f-65bd-fd60-95b78482fdaa": {
1984
+ "uuid": "e7257c0b-456f-65bd-fd60-95b78482fdaa",
1985
+ "displayName": "Disciplined Title",
1986
+ "titleText": "Disciplined",
1987
+ "isHiddenIfNotOwned": false,
1988
+ "assetPath": "ShooterGame/Content/Personalization/Titles/V25_Act4_BP/PlayerTitle_Disciplined_PrimaryAsset"
1989
+ },
1990
+ "8c59bb12-44af-f0be-a469-678c1187e940": {
1991
+ "uuid": "8c59bb12-44af-f0be-a469-678c1187e940",
1992
+ "displayName": "Galactic Title",
1993
+ "titleText": "Galactic",
1994
+ "isHiddenIfNotOwned": false,
1995
+ "assetPath": "ShooterGame/Content/Personalization/Titles/V25_Act4_BP/PlayerTitle_Galactic_PrimaryAsset"
1996
+ },
1997
+ "9c9f7f40-4d3c-e92f-ef16-01a5f46b636b": {
1998
+ "uuid": "9c9f7f40-4d3c-e92f-ef16-01a5f46b636b",
1999
+ "displayName": "Sunkissed Title",
2000
+ "titleText": "Sunkissed",
2001
+ "isHiddenIfNotOwned": false,
2002
+ "assetPath": "ShooterGame/Content/Personalization/Titles/V25_Act4_BP/PlayerTitle_Sunkissed_PrimaryAsset"
2003
+ },
2004
+ "c402b173-403b-b3f6-f1a6-2a819a687397": {
2005
+ "uuid": "c402b173-403b-b3f6-f1a6-2a819a687397",
2006
+ "displayName": "YR1 Title",
2007
+ "titleText": "YR1",
2008
+ "isHiddenIfNotOwned": false,
2009
+ "assetPath": "ShooterGame/Content/Personalization/Titles/VALBirthday2021/PlayerTitle_YR1_PrimaryAsset"
2010
+ },
2011
+ "77b12d01-4209-6b61-16aa-23a7382ae17b": {
2012
+ "uuid": "77b12d01-4209-6b61-16aa-23a7382ae17b",
2013
+ "displayName": "Year One Title",
2014
+ "titleText": "Year One",
2015
+ "isHiddenIfNotOwned": false,
2016
+ "assetPath": "ShooterGame/Content/Personalization/Titles/VALBirthday2021/PlayerTitle_YearOne_PrimaryAsset"
2017
+ },
2018
+ "1ba98f24-4989-8778-f8a6-b7af353a1625": {
2019
+ "uuid": "1ba98f24-4989-8778-f8a6-b7af353a1625",
2020
+ "displayName": "2021 VCT Champion Title",
2021
+ "titleText": "2021 VCT Champion",
2022
+ "isHiddenIfNotOwned": true,
2023
+ "assetPath": "ShooterGame/Content/Personalization/Titles/VCT/2021_Champions_Winners/PlayerTitle_2021ChampionsWinners_PrimaryAsset"
2024
+ },
2025
+ "00031857-43a9-9545-4e05-58ad0a62b79d": {
2026
+ "uuid": "00031857-43a9-9545-4e05-58ad0a62b79d",
2027
+ "displayName": "VCT Masters Berlin Winner Title",
2028
+ "titleText": "VCT Masters Berlin Winner",
2029
+ "isHiddenIfNotOwned": true,
2030
+ "assetPath": "ShooterGame/Content/Personalization/Titles/VCT/2021_VCT_Masters_Berlin/PlayerTitle_2021VCTMastersBerlin_PrimaryAsset"
2031
+ },
2032
+ "cd19dad9-4975-7e7d-c511-c6a851589c15": {
2033
+ "uuid": "cd19dad9-4975-7e7d-c511-c6a851589c15",
2034
+ "displayName": "VCT Masters Reykjavik Winner Title",
2035
+ "titleText": "VCT Masters Reykjavik Winner",
2036
+ "isHiddenIfNotOwned": true,
2037
+ "assetPath": "ShooterGame/Content/Personalization/Titles/VCT/2021_VCT_Masters_Reykjavik/PlayerTitle_2021VCTMastersReykjavik_PrimaryAsset"
2038
+ },
2039
+ "a6d9e243-4046-b025-358e-0087b4b7fcf3": {
2040
+ "uuid": "a6d9e243-4046-b025-358e-0087b4b7fcf3",
2041
+ "displayName": "2022 VCT Champion Title",
2042
+ "titleText": "2022 VCT Champion",
2043
+ "isHiddenIfNotOwned": true,
2044
+ "assetPath": "ShooterGame/Content/Personalization/Titles/VCT/2022_Champions_Winners/PlayerTitle_2022ChampionsWinners_PrimaryAsset"
2045
+ },
2046
+ "a7d5ae34-4907-072c-13f9-67af86ec737c": {
2047
+ "uuid": "a7d5ae34-4907-072c-13f9-67af86ec737c",
2048
+ "displayName": "Game Changer Title",
2049
+ "titleText": "Game Changer",
2050
+ "isHiddenIfNotOwned": true,
2051
+ "assetPath": "ShooterGame/Content/Personalization/Titles/VCT/2022_GameChanger_Title/PlayerTitle_GameChangers_PrimaryAsset"
2052
+ },
2053
+ "2c4634dd-40bd-052e-bf3c-92a7aca4f084": {
2054
+ "uuid": "2c4634dd-40bd-052e-bf3c-92a7aca4f084",
2055
+ "displayName": "2022 Game Changers Winner Title",
2056
+ "titleText": "2022 Game Changers Winner",
2057
+ "isHiddenIfNotOwned": true,
2058
+ "assetPath": "ShooterGame/Content/Personalization/Titles/VCT/2022_VCT_GameChangerWinner_Title/PlayerTitle_22GameChangersWinner_PrimaryAsset"
2059
+ },
2060
+ "75aaadc3-427a-e194-e8d0-fd8b76b4540f": {
2061
+ "uuid": "75aaadc3-427a-e194-e8d0-fd8b76b4540f",
2062
+ "displayName": "VCT Masters Copenhagen Winner Title",
2063
+ "titleText": "VCT Masters Copenhagen Winner",
2064
+ "isHiddenIfNotOwned": true,
2065
+ "assetPath": "ShooterGame/Content/Personalization/Titles/VCT/2022_VCT_Masters_Copenhagen/PlayerTitle_2022VCTMastersCopenhagen_PrimaryAsset"
2066
+ },
2067
+ "d9c1a80f-4531-8c05-9841-4aafd417df8c": {
2068
+ "uuid": "d9c1a80f-4531-8c05-9841-4aafd417df8c",
2069
+ "displayName": "VCT Masters Reykjavik Winner Title",
2070
+ "titleText": "VCT Masters Reykjavik Winner",
2071
+ "isHiddenIfNotOwned": true,
2072
+ "assetPath": "ShooterGame/Content/Personalization/Titles/VCT/2022_VCT_Masters_Reykjavik/PlayerTitle_2022VCTMastersReykjavik_PrimaryAsset"
2073
+ },
2074
+ "05f48085-4f2a-5726-cf11-dc958e154675": {
2075
+ "uuid": "05f48085-4f2a-5726-cf11-dc958e154675",
2076
+ "displayName": "2023 VCT Champion Title",
2077
+ "titleText": "2023 VCT Champion",
2078
+ "isHiddenIfNotOwned": true,
2079
+ "assetPath": "ShooterGame/Content/Personalization/Titles/VCT/2023_Champions_Winners/PlayerTitle_2023_ChampionsWinners_PrimaryAsset"
2080
+ },
2081
+ "ce6f4f24-402c-d24d-c28c-4db1aa89dc9b": {
2082
+ "uuid": "ce6f4f24-402c-d24d-c28c-4db1aa89dc9b",
2083
+ "displayName": "VCT LOCK//IN Winner Title",
2084
+ "titleText": "VCT LOCK//IN Winner",
2085
+ "isHiddenIfNotOwned": true,
2086
+ "assetPath": "ShooterGame/Content/Personalization/Titles/VCT/2023_VCT_EsportsInvitational_Winner_Title/PlayerTitle_2023VCTEsportsInvitational_Winner_PrimaryAsset"
2087
+ },
2088
+ "dd9b86b1-4661-1c98-65ac-c09b70a88e74": {
2089
+ "uuid": "dd9b86b1-4661-1c98-65ac-c09b70a88e74",
2090
+ "displayName": "Locked In Title",
2091
+ "titleText": "Locked In",
2092
+ "isHiddenIfNotOwned": true,
2093
+ "assetPath": "ShooterGame/Content/Personalization/Titles/VCT/2023_VCT_LockIn/PlayerTitle_2023VCTLockIn_PrimaryAsset"
2094
+ },
2095
+ "af85e868-4c20-2e15-7b2e-51b6721ed93e": {
2096
+ "uuid": "af85e868-4c20-2e15-7b2e-51b6721ed93e",
2097
+ "displayName": "Unpredictable Title",
2098
+ "titleText": "Unpredictable",
2099
+ "isHiddenIfNotOwned": true,
2100
+ "assetPath": "ShooterGame/Content/Personalization/Titles/VCT/2023_VCT_Masters_Tokyo/PlayerTitle_Masters1_PrimaryAsset"
2101
+ },
2102
+ "cc33f13b-4b66-56da-f80a-e9be7271b163": {
2103
+ "uuid": "cc33f13b-4b66-56da-f80a-e9be7271b163",
2104
+ "displayName": "VCT Masters Tokyo Winner Title",
2105
+ "titleText": "VCT Masters Tokyo Winner",
2106
+ "isHiddenIfNotOwned": true,
2107
+ "assetPath": "ShooterGame/Content/Personalization/Titles/VCT/2023_VCT_Masters_Tokyo_Winner/PlayerTitle_2023MastersTokyoWinner_PrimaryAsset"
2108
+ },
2109
+ "070cc36a-4de2-b9f3-a30c-3898f53f4d6b": {
2110
+ "uuid": "070cc36a-4de2-b9f3-a30c-3898f53f4d6b",
2111
+ "displayName": "VCT Masters Shanghai Winner Title",
2112
+ "titleText": "VCT Masters Shanghai Winner",
2113
+ "isHiddenIfNotOwned": true,
2114
+ "assetPath": "ShooterGame/Content/Personalization/Titles/VCT/2024_MastersShanghaiWinner/PlayerTitle_MastersShanghaiWinner24_PrimaryAsset"
2115
+ },
2116
+ "6ee99ff5-4a24-94cb-7ffb-e690a6b6ec93": {
2117
+ "uuid": "6ee99ff5-4a24-94cb-7ffb-e690a6b6ec93",
2118
+ "displayName": "VCT Masters Madrid Winner Title",
2119
+ "titleText": "VCT Masters Madrid Winner",
2120
+ "isHiddenIfNotOwned": true,
2121
+ "assetPath": "ShooterGame/Content/Personalization/Titles/VCT/MadridWinner24/PlayerTItle_MastersMadridWinner2024_PrimaryAsset"
2122
+ },
2123
+ "6966d46b-4fd1-3287-fd00-a790c9e7a3d8": {
2124
+ "uuid": "6966d46b-4fd1-3287-fd00-a790c9e7a3d8",
2125
+ "displayName": "Fire Title",
2126
+ "titleText": "Fire",
2127
+ "isHiddenIfNotOwned": true,
2128
+ "assetPath": "ShooterGame/Content/Personalization/Titles/VCT/PlayerTitle_2022ChampionsDrops_Fire_PrimaryAsset"
2129
+ },
2130
+ "f0751060-4d86-39e8-b881-469f52058b3f": {
2131
+ "uuid": "f0751060-4d86-39e8-b881-469f52058b3f",
2132
+ "displayName": "2021 VCT Regional Masters Winner Title",
2133
+ "titleText": "2021 VCT Regional Masters Winner",
2134
+ "isHiddenIfNotOwned": true,
2135
+ "assetPath": "ShooterGame/Content/Personalization/Titles/VCT/PlayerTitle_VCTWinner_PrimaryAsset"
2136
+ },
2137
+ "d11e42f8-45e9-7d71-720b-8c9c54c3b808": {
2138
+ "uuid": "d11e42f8-45e9-7d71-720b-8c9c54c3b808",
2139
+ "displayName": "VCT Game Changer Title",
2140
+ "titleText": "VCT Game Changer",
2141
+ "isHiddenIfNotOwned": true,
2142
+ "assetPath": "ShooterGame/Content/Personalization/Titles/VCT/VCT_GameChanger_Title/PlayerTitle_VCT_GameChanger_PrimaryAsset"
2143
+ },
2144
+ "8fd54857-406f-a9e7-e700-80aa8f0f3467": {
2145
+ "uuid": "8fd54857-406f-a9e7-e700-80aa8f0f3467",
2146
+ "displayName": "β Title",
2147
+ "titleText": "β",
2148
+ "isHiddenIfNotOwned": false,
2149
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Val5Beta/PlayerTitle_Val5Beta_PrimaryAsset"
2150
+ },
2151
+ "4691c456-401c-0bb5-8c31-72ab0f287b1a": {
2152
+ "uuid": "4691c456-401c-0bb5-8c31-72ab0f287b1a",
2153
+ "displayName": "5 Years Title",
2154
+ "titleText": "5 Years",
2155
+ "isHiddenIfNotOwned": true,
2156
+ "assetPath": "ShooterGame/Content/Personalization/Titles/Val5EventPass/PlayerTitle_YearFive_PrimaryAsset"
2157
+ }
2158
+ }