diff --git a/apps/econ/src/econ.app.ts b/apps/econ/src/econ.app.ts index 294d0b2..08e0a1b 100644 --- a/apps/econ/src/econ.app.ts +++ b/apps/econ/src/econ.app.ts @@ -695,9 +695,32 @@ const app = new Hono({ strict: false }) // per-rotation challenge data is wired up. .get('/api/challenge/v2/getCurrent', (c) => c.json(weeklyChallenge)) + // Report progress on a weekly challenge. The client evaluates the challenge's rule + // tree locally and posts ChallengeMapId/ChallengeId, that tree in `Config`, and + // whether it now considers the challenge `Complete`. Stubbed: with no challenge- + // progress DB yet we persist nothing and never mark a challenge complete (so the + // gift flow isn't triggered). Echo the identifying fields back with Complete=false + // so the client gets a well-formed, non-null body to deserialize. + .post('/api/challenge/v2/updateProgress', async (c) => { + const body = await c.req + .json<{ ChallengeMapId?: string | number; ChallengeId?: string | number; Config?: string }>() + .catch(() => ({}) as Record) + return c.json({ + ChallengeMapId: Number(body.ChallengeMapId) || 0, + ChallengeId: Number(body.ChallengeId) || 0, + Config: typeof body.Config === 'string' ? body.Config : '', + Complete: false, + }) + }) + // Pending game rewards. Returns "[]". .get('/api/gamerewards/v1/pending', (c) => c.json([])) + // Request a game reward (client posts `rewardType`/`Message`, e.g. + // FirstActivityOfDay). Stubbed: with no reward DB yet we grant nothing and return an + // empty list of rewards — matching the `pending` shape so the client deserializes it. + .post('/api/gamerewards/v1/request', (c) => c.json([])) + // The player's room keys. Returns "[]". .get('/api/roomkeys/v1/mine', (c) => c.json([])) // Room keys for a given room (client calls this on the econ host). [] with no DB. diff --git a/apps/econ/src/test/integration/api.test.ts b/apps/econ/src/test/integration/api.test.ts index 6b37060..42f70f6 100644 --- a/apps/econ/src/test/integration/api.test.ts +++ b/apps/econ/src/test/integration/api.test.ts @@ -946,6 +946,38 @@ describe('econ endpoints', () => { expect(await res.json()).toEqual([]) }) + test('POST /api/challenge/v2/updateProgress echoes the challenge, never complete (stub)', async () => { + const config = + '{"ct":1,"ipc":false,"ctc":[{"ct":0,"ipc":false,"wc":[{"ct":6,"vs":[2]},{"ct":7,"vs":[{"l":"a673712c-877f-4749-b69a-4a4c6310d545"}]}]}],"t":5,"cc":1}' + const res = await exports.default.fetch(`${ORIGIN}/api/challenge/v2/updateProgress`, { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ + ChallengeMapId: '17', + ChallengeId: '49', + Config: config, + Complete: 'False', + }), + }) + expect(res.status).toBe(200) + expect(await res.json()).toEqual({ + ChallengeMapId: 17, + ChallengeId: 49, + Config: config, + Complete: false, + }) + }) + + test('POST /api/gamerewards/v1/request returns [] (stub)', async () => { + const res = await exports.default.fetch(`${ORIGIN}/api/gamerewards/v1/request`, { + method: 'POST', + headers: { 'Content-Type': 'application/x-www-form-urlencoded' }, + body: 'rewardType=FirstActivityOfDay&Message=First%20Game%20of%20the%20Day', + }) + expect(res.status).toBe(200) + expect(await res.json()).toEqual([]) + }) + test('GET /api/roomkeys/v1/mine returns []', async () => { const res = await exports.default.fetch(`${ORIGIN}/api/roomkeys/v1/mine`) expect(res.status).toBe(200) diff --git a/apps/econ/static/storefronts/sf3.json b/apps/econ/static/storefronts/sf3.json index f5c65d3..d078adb 100644 --- a/apps/econ/static/storefronts/sf3.json +++ b/apps/econ/static/storefronts/sf3.json @@ -1,41121 +1,46847 @@ { - "NewUntil": null, - "NextUpdate": "2222-02-22T22:22:00Z", + "NextUpdate": "2026-06-14T00:12:20.1324853Z", "StoreItems": [ { "GiftDrop": { - "GiftDropId": 302, - "FriendlyName": "Doctor's Head Mirror", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5ac25e5a-8c8e-445c-82a4-7272baec1eb5,,,", + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,imDGL6dhrka-KliYlfpdgw,6094370d-5e28-473a-b422-f3f1c75d5db8,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 303, - "FriendlyName": "Drum Major Hat (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Quiver (Grey)", + "GiftDropId": 7, "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 8000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 3, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 7200, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 304, - "FriendlyName": "Lacrosse Helmet (Purple)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7134c60b-0640-463a-8d97-caa9184bef93,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "Tooltip": " Debug: 7", + "Unique": true }, "IsFeatured": false, - "NewUntil": null, "Prices": [ { "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 4, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 305, - "FriendlyName": "Lacrosse Helmet (Pink)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7134c60b-0640-463a-8d97-caa9184bef93,e3454bc7-c88d-4958-8b81-db3fe5472a1e,7e688b30-ed13-4790-9ad8-c49885d1b7e8,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 5, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 316, - "FriendlyName": "Flower Headband (Pink)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "2b2eb9e5-d52e-4004-bdb2-0bcf6910992d,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 6, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 317, - "FriendlyName": "Sun Hat", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "703f1987-2b31-4b6f-bab7-1939b1105ac0,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-06-27T21:00:00Z", - "SaleEndDate": "2021-06-28T21:00:00Z" - } + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 } ], "PurchasableItemId": 7, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 318, - "FriendlyName": "Visor", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "8c51fc1a-b1ad-4002-a13c-4313abd92c7f,,,", + "AvatarItemDesc": "ec5255d5-edaf-4888-9fe1-e89ac0e0d300,,,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Astronaut Suit (White)", + "GiftDropId": 8, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 8", + "Unique": true }, "IsFeatured": false, - "NewUntil": null, "Prices": [ { "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 } ], "PurchasableItemId": 8, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 331, - "FriendlyName": "Baseball Helmet (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "293e7ad3-01c9-43af-96e3-06c34145ff12,,,", + "AvatarItemDesc": "ec5255d5-edaf-4888-9fe1-e89ac0e0d300,9GhnX4Pj4E-wxbPlD8GB-g,YSrGwXybGEqaqHNCS64qOA,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 15, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 332, - "FriendlyName": "Beret (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 16, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 333, - "FriendlyName": "Bike Helmet (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,,,", - "AvatarItemType": 0, "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", + "FriendlyName": "Astronaut Suit (Orange)", + "GiftDropId": 9, "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 17, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 334, - "FriendlyName": "Bow (Orange)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "1e504fee-b593-4037-bd8f-b88025147991,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 18, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 335, - "FriendlyName": "Boxing Helmet (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "b99a89c7-38c5-4196-9862-4e1bf9cb0ce1,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 4000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 19, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3600, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 336, - "FriendlyName": "Cat Ears (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "Tooltip": " Debug: 9", + "Unique": true }, "IsFeatured": false, - "NewUntil": null, "Prices": [ { "CurrencyType": 2, - "Price": 9000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-06-06T21:00:00Z", - "SaleEndDate": "2021-06-07T21:00:00Z" - } + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 20, + "PurchasableItemId": 9, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 8100, - "StorefrontSaleData": null + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 337, - "FriendlyName": "Cloche (Pink)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 21, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 339, - "FriendlyName": "Cowboy Hat (Cherry)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,624c85e5-095a-48b6-85fb-c9bbade19a8d,54778d93-2cff-48db-b25b-65c08b0e5be8,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 6000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 23, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 5400, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 340, - "FriendlyName": "Cowboy Hat (Black, Gold)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,192ba73d-6990-42da-8fe0-914c2a7181eb,54778d93-2cff-48db-b25b-65c08b0e5be8,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 6000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 24, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 5400, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 341, - "FriendlyName": "Cowboy Hat (Yellow)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,5e00a832-3f25-4dd3-84d2-b6ed6a4b4c37,54778d93-2cff-48db-b25b-65c08b0e5be8,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 6000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 25, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 5400, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 342, - "FriendlyName": "Equestrian Helmet (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 26, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 343, - "FriendlyName": "Firefighter Helmet (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "bb54e0e9-5d90-41f3-94c0-8e82f1791af1,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 27, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 344, - "FriendlyName": "Flat Cap (Grey)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 28, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 345, - "FriendlyName": "Football Helmet (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 29, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 346, - "FriendlyName": "Football Helmet (Orange)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,d8d490aa-7088-4163-9305-1441367f490c,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 30, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 347, - "FriendlyName": "Football Helmet (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,61ff7a02-50ff-49ea-b95e-c31b95a30c8e,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 31, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 348, - "FriendlyName": "Flower Hair Clip (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "a61e86cd-f7e7-4ac7-a6e8-df269bc5cb01,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 32, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 349, - "FriendlyName": "Hockey Helmet (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 33, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 355, - "FriendlyName": "Luchador Mask (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-05-23T21:00:00Z", - "SaleEndDate": "2021-05-24T21:00:00Z" - } - } - ], - "PurchasableItemId": 39, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 358, - "FriendlyName": "Captain Hat (White, Blue, Gold)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 42, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 359, - "FriendlyName": "Captain Hat (White, Black, Gold)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,f5403c89-9769-479b-8a05-c71607f9b189,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 43, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 360, - "FriendlyName": "Captain Hat (White, Black, Silver)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,36e63797-5a42-4779-a5cc-ef5c2e7d17d4,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 44, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 361, - "FriendlyName": "Captain Hat (Black, Black, Gold)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,70112887-dc8d-49d5-96ed-0845204e0b58,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 45, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 362, - "FriendlyName": "Small Brim Hat (Purple)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 46, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 364, - "FriendlyName": "Top Hat (Black, Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 6500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 48, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 5850, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 368, - "FriendlyName": "Side Pony Hair", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "49397e16-1027-4286-9bc4-b59eae565ff0,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 50, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 369, - "FriendlyName": "Mohawk Hair", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "e49d5d78-157e-4bc8-b878-ff7c4963fdc4,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 51, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 376, - "FriendlyName": "Sunglasses (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "6427bd57-fcb2-420f-8b3e-d1da43470b84,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 55, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 377, - "FriendlyName": "Paintball Goggles", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "34144f4c-f6ef-49e5-a286-1781e82e6782,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 56, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 379, - "FriendlyName": "Ranger Stache", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "3e139dd9-4757-43a8-8546-8da70dc17f0a,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 58, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 380, - "FriendlyName": "Cowboy Stache", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "cca7ab3d-5609-4700-92fd-3280fcea9b77,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 59, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 381, - "FriendlyName": "Sea Captain Beard", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "c161dc73-6ce3-49c4-8d15-45e6911f84e4,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 60, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 383, - "FriendlyName": "Bowtie (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 62, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 385, - "FriendlyName": "Bandana (Flowers, Orange)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 63, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 392, - "FriendlyName": "Luchador Cape (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 69, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4050, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 393, - "FriendlyName": "Doctor's Stethoscope", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "587ca2bb-dd42-42bf-833f-4e2a97349866,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 70, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 402, - "FriendlyName": "Tied Scarf (Striped, Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 76, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 403, - "FriendlyName": "Astronaut Suit (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ec5255d5-edaf-4888-9fe1-e89ac0e0d300,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 8500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 77, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 7650, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 404, - "FriendlyName": "Babydoll Dress (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,,,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Babydoll Dress (Blue)", + "GiftDropId": 10, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 10", + "Unique": true }, "IsFeatured": false, - "NewUntil": null, "Prices": [ { "CurrencyType": 2, "Price": 200, - "StorefrontSaleData": null + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 78, + "PurchasableItemId": 10, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 405, - "FriendlyName": "Babydoll Dress (Maroon)", - "Tooltip": "", - "ConsumableItemDesc": "", "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,d6823e01-69f0-4f85-b94a-74894356a2cf,cb9e9e05-c481-4397-86e7-c2111bc0e817,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Babydoll Dress (Maroon)", + "GiftDropId": 11, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 11", + "Unique": true }, "IsFeatured": false, - "NewUntil": null, "Prices": [ { "CurrencyType": 2, "Price": 200, - "StorefrontSaleData": null + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 79, + "PurchasableItemId": 11, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 406, - "FriendlyName": "Babydoll Dress (Yellow)", - "Tooltip": "", - "ConsumableItemDesc": "", "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,c5deba2a-6e35-4b13-8e94-8ba5457f39df,cb9e9e05-c481-4397-86e7-c2111bc0e817,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Babydoll Dress (Yellow)", + "GiftDropId": 12, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 12", + "Unique": true }, "IsFeatured": false, - "NewUntil": null, "Prices": [ { "CurrencyType": 2, "Price": 200, - "StorefrontSaleData": null + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 80, + "PurchasableItemId": 12, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 407, - "FriendlyName": "Babydoll Dress (Brown)", - "Tooltip": "", - "ConsumableItemDesc": "", "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,e13cf33d-7588-4e2e-955e-f0a29d6380b7,cb9e9e05-c481-4397-86e7-c2111bc0e817,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Babydoll Dress (Brown)", + "GiftDropId": 13, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 13", + "Unique": true }, "IsFeatured": false, - "NewUntil": null, "Prices": [ { "CurrencyType": 2, "Price": 200, - "StorefrontSaleData": null + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 81, + "PurchasableItemId": 13, "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 408, - "FriendlyName": "Baseball Jersey (White, Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 82, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 409, - "FriendlyName": "Basketball Jersey (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 83, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 410, - "FriendlyName": "Bike Shirt (Orange)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 84, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 411, - "FriendlyName": "Cheerful Dress (Navy)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 85, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 424, - "FriendlyName": "Collared Shirt (Purple)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,071d1bf3-86dc-4a31-b54a-e6579fab8649,d015cae7-a905-49e4-8823-6dec069689a6,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ { "CurrencyType": 2, "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 87, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 433, - "FriendlyName": "Cowboy Vest (Black, Gold)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,192ba73d-6990-42da-8fe0-914c2a7181eb,98553538-cafd-4df9-8f37-bb0a4bb478a5,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 7000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 90, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 6300, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 434, - "FriendlyName": "Cowboy Vest (Yellow)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,5e00a832-3f25-4dd3-84d2-b6ed6a4b4c37,98553538-cafd-4df9-8f37-bb0a4bb478a5,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 7000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 91, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 6300, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 435, - "FriendlyName": "Cowboy Vest (Cherry)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,624c85e5-095a-48b6-85fb-c9bbade19a8d,98553538-cafd-4df9-8f37-bb0a4bb478a5,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 7000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 92, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 6300, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 440, - "FriendlyName": "Cheerleader Skirt (Pride)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "657efe89-620a-46a2-8b58-cafd855c7cd5,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 93, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 441, - "FriendlyName": "Field Hockey Uniform (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "a986ff33-9e16-4219-8ebb-2e7b4c772ca7,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 94, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 442, - "FriendlyName": "Firefighter Jacket", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "1b37d6cd-0a89-4604-a046-e5cff55b0cf6,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 95, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 443, - "FriendlyName": "Flower Swimsuit (Yellow)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 96, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 444, - "FriendlyName": "Football Shoulder Pads (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 97, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 445, - "FriendlyName": "Football Shoulder Pads (Orange)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,32dde6dc-e3dc-43ee-9b7c-987bc6778c17,e17481fc-b2b6-47a5-91e5-7205f45a3247,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 98, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 446, - "FriendlyName": "Football Shoulder Pads (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,88c3ed05-ce41-4a9d-a4a7-8a428d240b3f,e17481fc-b2b6-47a5-91e5-7205f45a3247,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 99, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 447, - "FriendlyName": "Fur Coat (Brown)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "77c37481-a185-47ff-af55-65f9fdfcf9e5,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 100, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 449, - "FriendlyName": "Jazzercise Shirt (Teal)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5f492f8f-ab61-484a-9587-747132b54309,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 101, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 451, - "FriendlyName": "Luchador Singlet (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 103, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 452, - "FriendlyName": "Cheerleader Sweater (Pride)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "9073d6a0-3bc1-4c82-aeb3-d4ee195538b4,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 104, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 458, - "FriendlyName": "Paintball Vest (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "d8f408f0-78f5-4e8a-b42a-e7b09632d1fd,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 106, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 463, - "FriendlyName": "Long Coat (Purple)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 107, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 464, - "FriendlyName": "Belted Dress (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 108, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 465, - "FriendlyName": "Belted Dress (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,5b58d879-2bc4-47ed-a996-1af2ace16425,3d971439-41d1-43a2-8434-704f9ec8d906,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 109, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 466, - "FriendlyName": "Belted Dress (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,d320ad9b-ba5c-45ea-b2b8-0d3e409a9db1,3d971439-41d1-43a2-8434-704f9ec8d906,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 110, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 467, - "FriendlyName": "Belted Dress (Cream)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,d61711fd-589a-4669-b991-9408a58fffd9,3d971439-41d1-43a2-8434-704f9ec8d906,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 111, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 468, - "FriendlyName": "Flowered Dress (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "515dfc36-7f7b-47bc-abee-380d68f41be6,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 112, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 469, - "FriendlyName": "Captain Jacket (Blue, White, Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 113, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 470, - "FriendlyName": "Captain Jacket (Black, White, Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,b9f51861-ad10-4878-a9b1-d849bccf532a,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 114, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 471, - "FriendlyName": "Captain Jacket (Black, White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,b5d62931-e756-4a8a-8f3b-760beba49319,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 115, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 472, - "FriendlyName": "Captain Jacket (Black, White, Grey)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,6145292a-9002-41c6-8cd5-43679b6f542f,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 116, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 473, - "FriendlyName": "Captain Jacket (Black, White, Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,7c1aaa7e-503b-46ef-b1c5-0c61a75b916e,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 117, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 474, - "FriendlyName": "Captain Jacket (Blue, White, Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,27af51bc-8226-4911-8d47-22d28ea8e378,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 118, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 475, - "FriendlyName": "Captain Jacket (Blue, White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,857fdcd8-704f-43d0-92b9-bca26619b153,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 119, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 476, - "FriendlyName": "Captain Jacket (Black, Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,3df5d13b-ba77-4b51-90b2-7a946e4d0be7,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 120, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 483, - "FriendlyName": "Boxing Shirt (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ff15e25d-d467-47a8-9ecc-e415d5acb90c,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 127, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1800, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 485, - "FriendlyName": "Doctor's Coat", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "27e742bf-3081-4274-ba70-301f0edeb4f1,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 129, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 486, - "FriendlyName": "Drum Major Shirt (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 7500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 130, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 6750, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 491, - "FriendlyName": "Jersey (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,8377ab96-c908-457f-9fee-b784c9a759f3,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 131, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 492, - "FriendlyName": "Jersey (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,dee70c38-7a99-4c2b-9181-665f1bf75aca,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 132, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 498, - "FriendlyName": "Lacrosse Shirt (Purple)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "39278302-b52a-48a8-a566-ed756a5fa1a9,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 138, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 499, - "FriendlyName": "Lacrosse Shirt (Pink)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "39278302-b52a-48a8-a566-ed756a5fa1a9,e3454bc7-c88d-4958-8b81-db3fe5472a1e,da36bbcc-2a9a-4ba2-9e4a-6f52c9b1ef74,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 139, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 503, - "FriendlyName": "Tracksuit (Yellow)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 143, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 517, - "FriendlyName": "Astronaut Gloves (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "88739d79-aeb9-471a-b25b-776f46bba9f6,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 149, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 518, - "FriendlyName": "Bike Gloves (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 150, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 520, - "FriendlyName": "Boxing Gloves (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "b904304b-cce0-466f-8569-c621eeadd4f7,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-05-30T21:00:00Z", - "SaleEndDate": "2021-05-31T21:00:00Z" - } - } - ], - "PurchasableItemId": 152, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 523, - "FriendlyName": "Cowboy Gloves (Cherry)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,17e44296-1cd9-4f8e-9aa7-3837dc69279a,8eef8837-9141-4088-835a-b2f47f4126f8,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 155, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 524, - "FriendlyName": "Cowboy Gloves (Black, Gold)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,c4ebfd1a-fcda-4b98-a151-a941b1801867,8eef8837-9141-4088-835a-b2f47f4126f8,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 156, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 525, - "FriendlyName": "Cowboy Gloves (Yellow)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,c0c33a35-494c-4a1a-aa53-d27d9b9ef5a4,8eef8837-9141-4088-835a-b2f47f4126f8,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 157, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 526, - "FriendlyName": "Drum Major Gloves (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 158, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 532, - "FriendlyName": "Paintball Gloves", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "64ad8789-1645-45f7-819a-a413ff7c9622,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 164, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1600, - "FriendlyName": "Fighter Pilot Helmet (Orange)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,cea53c7f-24a9-4e3b-80b9-fbf95738f973,9d6ac0b7-bbef-40bc-9173-effe65d7c0ff,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 213, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1601, - "FriendlyName": "Fighter Pilot Helmet (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,e37b07d1-6b9d-49b9-94ca-1c728e228cfe,9d6ac0b7-bbef-40bc-9173-effe65d7c0ff,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 214, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1603, - "FriendlyName": "Fighter Pilot Uniform (Orange)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,cea53c7f-24a9-4e3b-80b9-fbf95738f973,435eba0d-d8f9-43cc-91aa-2959d63c6fa7,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 216, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1604, - "FriendlyName": "Fighter Pilot Uniform (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,e37b07d1-6b9d-49b9-94ca-1c728e228cfe,435eba0d-d8f9-43cc-91aa-2959d63c6fa7,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 217, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1606, - "FriendlyName": "Fighter Pilot Gloves (Orange)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,18b52db5-0261-46a0-9214-ff510d455ed9,7869b2a5-cd89-4033-b9f7-4f1451ecb47b,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 219, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1607, - "FriendlyName": "Fighter Pilot Gloves (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,55b4e661-43e1-4708-82d5-2dd2bebd4f45,7869b2a5-cd89-4033-b9f7-4f1451ecb47b,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 220, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1616, - "FriendlyName": "Fighter Pilot Helmet (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 227, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1618, - "FriendlyName": "Fighter Pilot Uniform (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 228, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1619, - "FriendlyName": "Fighter Pilot Gloves (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 229, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1629, - "FriendlyName": "Mullet Hair", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "2b7f4dae-51da-4af0-b009-12d6005c85c6,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 238, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1630, - "FriendlyName": "Curly Mustache", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "6b337a35-95d9-4b3a-9891-d9fbb06262aa,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 239, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1642, - "FriendlyName": "Punk Hawk Hair", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ce250e13-8137-4f62-9e52-2b1cebe7d0ad,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-04-18T21:00:00Z", - "SaleEndDate": "2021-04-19T21:00:00Z" - } - } - ], - "PurchasableItemId": 250, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1643, - "FriendlyName": "Farmer Beard", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7553d851-1986-4325-870d-e425dfb7d007,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 251, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1644, - "FriendlyName": "Safari Belt Sash", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "f47f81e7-fcdd-4687-9b99-013147bef30f,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 252, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1646, - "FriendlyName": "Punk Jacket (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 254, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1647, - "FriendlyName": "Punk Jacket (Pink)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,4169bfed-8403-4590-a29d-4941275ac0b6,d738ad4c-c9b5-41e6-8979-d586c964fb6c,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 255, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1648, - "FriendlyName": "Punk Jacket (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,0724b166-9ace-46ff-a191-b13f135b00a8,d738ad4c-c9b5-41e6-8979-d586c964fb6c,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 256, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1649, - "FriendlyName": "Safari Shirt (Tan)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "1041d745-c5e9-4218-a3e1-198f5c9c418c,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 257, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1650, - "FriendlyName": "Punk Wristbands (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 258, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1651, - "FriendlyName": "Punk Wristbands (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,a6796264-9c7e-4605-830c-06db8d0dc780,dd7472ed-bdcb-4811-81ba-5ed682fb7675,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 259, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1652, - "FriendlyName": "Punk Wristbands (Pink)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,f3b2330a-b981-4c7e-902f-1f57382f2388,dd7472ed-bdcb-4811-81ba-5ed682fb7675,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 260, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1653, - "FriendlyName": "Aviator Hat (Brown)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 261, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1654, - "FriendlyName": "Safari Hat (Tan)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "418ed21e-766f-4c69-9d57-6f866dcc7feb,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 262, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1655, - "FriendlyName": "Aviator Goggles (Brown)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 263, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1656, - "FriendlyName": "Safari Monocle", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "02a5b48c-abba-4385-967b-ba900424829e,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 264, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2700, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1657, - "FriendlyName": "Aviator Coat (Brown)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 265, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1658, - "FriendlyName": "Aviator Gloves (Brown)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 266, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1659, - "FriendlyName": "Safari Gloves (Tan)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "74365234-cb72-409d-8cf5-9a7209f707e1,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 267, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1667, - "FriendlyName": "Barbershop Hat (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "dcf9012d-f9e9-4f15-872e-f130af3b2efa,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 270, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1668, - "FriendlyName": "Barbershop Shirt (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "18cd3470-2dd9-4a0a-98bd-eae2d5f5d522,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 271, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1669, - "FriendlyName": "Barbershop Wrist (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ce81210f-8eb8-4cd2-95d5-046d4da229c8,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 272, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1671, - "FriendlyName": "Safari Hat (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "418ed21e-766f-4c69-9d57-6f866dcc7feb,49bbd11a-e5c9-47ff-b04d-72eb321e8a57,0dabda0d-842c-4d39-a6b9-a8ca3ec20825,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 273, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1675, - "FriendlyName": "Safari Shirt (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "1041d745-c5e9-4218-a3e1-198f5c9c418c,49bbd11a-e5c9-47ff-b04d-72eb321e8a57,84c016ad-133f-45e3-a412-cac35612540b,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 275, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1676, - "FriendlyName": "Punk Wristbands (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,baffdefe-de21-4551-9330-b50873965bdd,dd7472ed-bdcb-4811-81ba-5ed682fb7675,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 276, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1677, - "FriendlyName": "Safari Gloves (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "74365234-cb72-409d-8cf5-9a7209f707e1,49bbd11a-e5c9-47ff-b04d-72eb321e8a57,fa9a3d8e-16c9-4a7e-9166-3226e0d13c39,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 277, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1681, - "FriendlyName": "Aviator Hat (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,a8de80d3-286a-4fdc-bed2-75d52f8c0964,ff5ae41e-e446-4a96-8c11-49d85556fa81,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 281, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1682, - "FriendlyName": "Aviator Hat (Tan)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,c6cf096c-f0cb-4500-80a0-bc2916b5a426,ff5ae41e-e446-4a96-8c11-49d85556fa81,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 282, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1683, - "FriendlyName": "Aviator Goggles (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,7b82c3c5-fd1f-45ec-b83f-e32668aa8dce,556f876a-70da-4104-b792-fca8ad67be0c,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 283, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1684, - "FriendlyName": "Aviator Goggles (Tan)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,23428ca9-be75-4146-b400-df01d1dadac9,556f876a-70da-4104-b792-fca8ad67be0c,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 284, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1690, - "FriendlyName": "Aviator Coat (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,da185fbb-ad2b-4f30-87a2-491f24b78ebb,9009bcdf-b6f7-4dae-b2ec-895511d118ff,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 290, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1691, - "FriendlyName": "Aviator Coat (Tan)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,bea795cc-aabd-4229-84dd-49ab4f91a445,9009bcdf-b6f7-4dae-b2ec-895511d118ff,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 291, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1692, - "FriendlyName": "Aviator Gloves (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,97bbb384-b37e-4ea1-902c-88fbd6854ab5,5659ce2c-9cb0-49da-8c39-4b7df0f8deec,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 292, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1693, - "FriendlyName": "Aviator Gloves (Tan)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,7fb8496f-0e6c-4e48-b8fa-5709ebbf4820,5659ce2c-9cb0-49da-8c39-4b7df0f8deec,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 293, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1694, - "FriendlyName": "Barbershop Hat (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "dcf9012d-f9e9-4f15-872e-f130af3b2efa,631c9015-2a00-47ea-bb35-465a2ddbca5d,83158223-e268-4036-8a6a-218a8430eb2c,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 294, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1695, - "FriendlyName": "Barbershop Hat (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "dcf9012d-f9e9-4f15-872e-f130af3b2efa,7f9cb939-36a4-40da-8337-025e1d7bf8e5,83158223-e268-4036-8a6a-218a8430eb2c,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 295, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1696, - "FriendlyName": "Barbershop Shirt (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "18cd3470-2dd9-4a0a-98bd-eae2d5f5d522,a5925738-a451-4f25-b622-ccbfa12bd88c,15edb8d7-2ff6-4170-a7e6-acd9e965cab5,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 296, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1697, - "FriendlyName": "Barbershop Shirt (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "18cd3470-2dd9-4a0a-98bd-eae2d5f5d522,c64ac7a9-7fd4-4587-8626-0413a190b706,15edb8d7-2ff6-4170-a7e6-acd9e965cab5,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 297, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1698, - "FriendlyName": "Barbershop Wrist (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ce81210f-8eb8-4cd2-95d5-046d4da229c8,bb01b51e-a95f-441e-8c52-abc3aeed7145,f7c7d05f-5454-445a-af38-25f110bd204a,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 298, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1704, - "FriendlyName": "Drum Major Hat (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,5a614f97-ef7f-4b70-afff-9ed837a86407,a8a91216-0fcc-461e-a682-95ee82509cce,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 8000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 300, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 7200, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1706, - "FriendlyName": "Drum Major Hat (Yellow)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,8053b5e5-0f67-4329-a45d-1ee9fc830820,a8a91216-0fcc-461e-a682-95ee82509cce,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 8000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 302, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 7200, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1707, - "FriendlyName": "Field Hockey Uniform (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "a986ff33-9e16-4219-8ebb-2e7b4c772ca7,7b0d6661-e856-4ec1-ab90-d89c28a70826,1fede91a-434e-49a5-882e-e6db107112a8,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 303, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1708, - "FriendlyName": "Drum Major Shirt (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,fe5288bc-0e02-4ea3-b17d-dee0e576979d,b0298c45-0dd1-453e-bad4-41e4656bb38e,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 7500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 304, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 6750, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1710, - "FriendlyName": "Drum Major Shirt (Yellow)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,54d3c589-30ba-44c1-a77c-8f9e16eb0b20,b0298c45-0dd1-453e-bad4-41e4656bb38e,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 7500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 306, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 6750, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1711, - "FriendlyName": "Drum Major Gloves (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,fe5288bc-0e02-4ea3-b17d-dee0e576979d,6b38ab79-142b-446e-978c-ad829ade8823,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 307, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1712, - "FriendlyName": "Drum Major Gloves (Orange)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,b444ed0a-eab5-4bd6-af34-d080de74a149,6b38ab79-142b-446e-978c-ad829ade8823,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 308, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1713, - "FriendlyName": "Drum Major Gloves (Yellow)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,8053b5e5-0f67-4329-a45d-1ee9fc830820,6b38ab79-142b-446e-978c-ad829ade8823,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 309, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1716, - "FriendlyName": "Boxing Helmet (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "b99a89c7-38c5-4196-9862-4e1bf9cb0ce1,8c7b09f2-6213-4ef9-87ab-a2df72d07a22,92714eac-cc07-4f74-a6f5-cfbbadd07e06,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 4000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 312, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3600, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1717, - "FriendlyName": "Cheerful Dress (Purple)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,6e0f3af8-297f-4ea7-8f9e-4a1bc57d3e35,93987d32-7a6e-45df-af56-76f912969ce7,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 313, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1718, - "FriendlyName": "Cheerful Dress (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,faedf215-289b-40f7-90cc-f5b98517d133,93987d32-7a6e-45df-af56-76f912969ce7,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 314, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1719, - "FriendlyName": "Cheerful Dress (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,1773d5d8-4714-4721-b30c-97e25d6f2a5a,93987d32-7a6e-45df-af56-76f912969ce7,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 315, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1720, - "FriendlyName": "Flower Swimsuit (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,cf515c87-3c0a-4443-9f63-5ea1bdbaa61a,3248a3ec-50d1-4c0a-96ae-25eb9d8ed622,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 316, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1721, - "FriendlyName": "Flower Swimsuit (Purple)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,27680277-aec1-41be-a476-9f51cf775580,3248a3ec-50d1-4c0a-96ae-25eb9d8ed622,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 317, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1722, - "FriendlyName": "Flower Swimsuit (Grey)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,5a96ac4d-03c3-4214-9dcb-c2044ff28f2e,3248a3ec-50d1-4c0a-96ae-25eb9d8ed622,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 318, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1723, - "FriendlyName": "Boxing Shirt (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ff15e25d-d467-47a8-9ecc-e415d5acb90c,8c7b09f2-6213-4ef9-87ab-a2df72d07a22,0ec6628c-a106-4452-af82-105a3e3a9f2e,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 319, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1800, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1724, - "FriendlyName": "Boxing Gloves (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "b904304b-cce0-466f-8569-c621eeadd4f7,8c7b09f2-6213-4ef9-87ab-a2df72d07a22,f79f8a46-ef1d-4d8c-a4fc-383e3a9eb10b,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-05-30T21:00:00Z", - "SaleEndDate": "2021-05-31T21:00:00Z" - } - } - ], - "PurchasableItemId": 320, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1728, - "FriendlyName": "Bowtie (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,724c79a3-822c-422f-9462-a5374ee0211c,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 324, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1729, - "FriendlyName": "Bowtie (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,8377ab96-c908-457f-9fee-b784c9a759f3,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 325, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1730, - "FriendlyName": "Bowtie (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,e69372eb-2fd8-4e17-a448-ee0be61a2c7a,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 326, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1731, - "FriendlyName": "Bandana (Dots, Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,827a1538-51bb-4fef-99c1-7f1bebd9866c,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 327, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1732, - "FriendlyName": "Bandana (Dots, Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 328, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1733, - "FriendlyName": "Bandana (Dots, White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,6dd95046-acf8-42fe-ab78-80a334096a9d,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 329, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1734, - "FriendlyName": "Bandana (Flowers, Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,827a1538-51bb-4fef-99c1-7f1bebd9866c,27a5df72-4095-4837-bf24-cdd3d95a43e9,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 330, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1735, - "FriendlyName": "Bandana (Flowers, Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,27a5df72-4095-4837-bf24-cdd3d95a43e9,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 331, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1736, - "FriendlyName": "Bandana (Flowers, White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,6dd95046-acf8-42fe-ab78-80a334096a9d,27a5df72-4095-4837-bf24-cdd3d95a43e9,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 332, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1737, - "FriendlyName": "Bandana (Plaid, Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,827a1538-51bb-4fef-99c1-7f1bebd9866c,cf119781-5bd9-4b85-9a0b-12e82e988c23,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 333, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1738, - "FriendlyName": "Bandana (Plaid, Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,cf119781-5bd9-4b85-9a0b-12e82e988c23,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 334, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1739, - "FriendlyName": "Bandana (Plaid, White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,6dd95046-acf8-42fe-ab78-80a334096a9d,cf119781-5bd9-4b85-9a0b-12e82e988c23,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 335, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1740, - "FriendlyName": "Business Tie (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,dee70c38-7a99-4c2b-9181-665f1bf75aca,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 336, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1741, - "FriendlyName": "Business Tie (Grey)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,0ecb8a2a-cffc-47db-aeda-fb0684aef1e5,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 337, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1742, - "FriendlyName": "Business Tie (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,8377ab96-c908-457f-9fee-b784c9a759f3,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 338, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1743, - "FriendlyName": "Business Tie (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,724c79a3-822c-422f-9462-a5374ee0211c,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 339, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1744, - "FriendlyName": "Business Tie (Yellow)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,67bcca75-4ab1-4964-8688-9908c464d355,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 340, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1748, - "FriendlyName": "Tied Scarf (Plaid, Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,827a1538-51bb-4fef-99c1-7f1bebd9866c,cf119781-5bd9-4b85-9a0b-12e82e988c23,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 341, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1749, - "FriendlyName": "Tied Scarf (Plaid, Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,cf119781-5bd9-4b85-9a0b-12e82e988c23,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 342, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1750, - "FriendlyName": "Tied Scarf (Plaid, White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,6dd95046-acf8-42fe-ab78-80a334096a9d,cf119781-5bd9-4b85-9a0b-12e82e988c23,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 343, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1751, - "FriendlyName": "Tied Scarf (Dots, Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,827a1538-51bb-4fef-99c1-7f1bebd9866c,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 344, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1752, - "FriendlyName": "Tied Scarf (Dots, Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 345, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1753, - "FriendlyName": "Tied Scarf (Dots, White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,6dd95046-acf8-42fe-ab78-80a334096a9d,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 346, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1756, - "FriendlyName": "Fur Coat (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "77c37481-a185-47ff-af55-65f9fdfcf9e5,43501b0c-eaaa-4ab3-9d03-2ca61d2e8fc9,2c0d912d-c184-4eab-8ee4-73b90ba7b0a6,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 347, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1757, - "FriendlyName": "Fur Coat (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "77c37481-a185-47ff-af55-65f9fdfcf9e5,643b5f2d-0666-4869-b699-03742de34d16,2c0d912d-c184-4eab-8ee4-73b90ba7b0a6,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 348, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1758, - "FriendlyName": "Long Coat (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,b42d903b-b393-4f49-af5e-38d0fb6c42b0,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 349, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1759, - "FriendlyName": "Long Coat (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,8cab8cc6-9a2d-434c-8b72-e66edbdd223c,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 350, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1760, - "FriendlyName": "Long Coat (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,657f28d5-672a-4f27-86c6-3cb00f25bb84,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 351, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1761, - "FriendlyName": "Flowered Dress (Grey)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "515dfc36-7f7b-47bc-abee-380d68f41be6,1acb1f56-4509-449f-9c6a-065bdeaa9ee3,2d7361d2-31a2-404b-90da-10e89114e1f2,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 352, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1762, - "FriendlyName": "Flowered Dress (Yellow)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "515dfc36-7f7b-47bc-abee-380d68f41be6,e98c3f98-7844-4d6e-a21c-05027033c18c,2d7361d2-31a2-404b-90da-10e89114e1f2,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 353, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1767, - "FriendlyName": "Flower Headband (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "2b2eb9e5-d52e-4004-bdb2-0bcf6910992d,c5884778-a87f-4612-9717-86fbb65d440f,7d040391-03f7-4b3d-bcfd-a1278ff459c9,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 358, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1768, - "FriendlyName": "Flower Headband (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "2b2eb9e5-d52e-4004-bdb2-0bcf6910992d,827a1538-51bb-4fef-99c1-7f1bebd9866c,7d040391-03f7-4b3d-bcfd-a1278ff459c9,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 359, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1771, - "FriendlyName": "Bike Helmet (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,83522c12-9549-4d74-8c87-bae210bcd2bf,5fd9e83a-cfaf-4c98-bd31-91a7484c26dd,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 362, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1772, - "FriendlyName": "Bike Helmet (Orange)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,4398ce1a-e6ee-4da4-ad0d-7abfab41020c,5fd9e83a-cfaf-4c98-bd31-91a7484c26dd,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 363, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1773, - "FriendlyName": "Flower Hair Clip (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "a61e86cd-f7e7-4ac7-a6e8-df269bc5cb01,ce465d53-3807-423f-baa0-bdba2a75ceb3,65b89eae-347e-4eff-9ff3-7f25cace0125,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 364, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1774, - "FriendlyName": "Flower Hair Clip (Yellow)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "a61e86cd-f7e7-4ac7-a6e8-df269bc5cb01,596097a8-d545-4256-959d-1d3cd96fc64c,65b89eae-347e-4eff-9ff3-7f25cace0125,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 365, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1775, - "FriendlyName": "Luchador Mask (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,916384ca-e209-42a0-bd64-c64f5a40b56f,96b36c98-cba1-4337-91dd-c74c00316f97,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-05-23T21:00:00Z", - "SaleEndDate": "2021-05-24T21:00:00Z" - } - } - ], - "PurchasableItemId": 366, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1776, - "FriendlyName": "Luchador Mask (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,0217fd2e-ff9d-49f7-9bc8-8d0d6b8bf250,96b36c98-cba1-4337-91dd-c74c00316f97,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-05-23T21:00:00Z", - "SaleEndDate": "2021-05-24T21:00:00Z" - } - } - ], - "PurchasableItemId": 367, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1777, - "FriendlyName": "Small Brim Hat (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,67fc9269-8dd8-4d6f-b594-c77e716f2482,65ed43ff-dfc4-4cab-b0b9-77dc94165e24,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 368, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1778, - "FriendlyName": "Small Brim Hat (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,43501b0c-eaaa-4ab3-9d03-2ca61d2e8fc9,65ed43ff-dfc4-4cab-b0b9-77dc94165e24,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 369, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1779, - "FriendlyName": "Small Brim Hat (Maroon)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,d6823e01-69f0-4f85-b94a-74894356a2cf,65ed43ff-dfc4-4cab-b0b9-77dc94165e24,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 370, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1782, - "FriendlyName": "Bike Shirt (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,c5884778-a87f-4612-9717-86fbb65d440f,1695608b-e9cc-4a03-b56d-0f09d2804379,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 371, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1783, - "FriendlyName": "Bike Shirt (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,83522c12-9549-4d74-8c87-bae210bcd2bf,1695608b-e9cc-4a03-b56d-0f09d2804379,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 372, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1787, - "FriendlyName": "Luchador Singlet (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,916384ca-e209-42a0-bd64-c64f5a40b56f,7ef7d0cf-99f1-4872-9d3d-8230cc9fa368,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 373, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1788, - "FriendlyName": "Luchador Singlet (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,0217fd2e-ff9d-49f7-9bc8-8d0d6b8bf250,7ef7d0cf-99f1-4872-9d3d-8230cc9fa368,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 374, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1789, - "FriendlyName": "Tracksuit (Pink)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,026ca50e-3a81-43cf-87f5-950687b7bbdd,adae82eb-a4b9-4541-acf2-76cea839a593,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 375, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1790, - "FriendlyName": "Tracksuit (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,6584dada-499e-4d7c-958d-466955b20640,adae82eb-a4b9-4541-acf2-76cea839a593,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 376, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 1813, - "FriendlyName": "Babydoll Dress (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,c9589974-c261-485e-b571-cb2f34fb178f,cb9e9e05-c481-4397-86e7-c2111bc0e817,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Babydoll Dress (Green)", + "GiftDropId": 14, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 14", + "Unique": true }, "IsFeatured": false, - "NewUntil": null, "Prices": [ { "CurrencyType": 2, "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 398, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1864, - "FriendlyName": "Jersey (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,f8b0cfe8-e129-4578-8bb5-f60af5d38599,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 446, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1865, - "FriendlyName": "Jersey (Yellow)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,d2b40639-5d34-45b6-904e-6dd29030ff44,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 447, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1866, - "FriendlyName": "Jersey (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,724c79a3-822c-422f-9462-a5374ee0211c,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 448, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1867, - "FriendlyName": "Jersey (Purple)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,c72911d0-453f-4732-b1bd-dad520220a06,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 449, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1868, - "FriendlyName": "Jersey (Teal)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,90bc2d31-1715-4d1a-813a-7c57e66cb017,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 450, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1869, - "FriendlyName": "Jersey (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,1b1d08f2-12ca-43dd-a44f-ea2820b919b4,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 451, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1874, - "FriendlyName": "Captain Hat (Pink, Black, Pink)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,2738ab5f-8c94-46b3-bac6-4a8111c41c21,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 456, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1885, - "FriendlyName": "Romper (Pink)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "e042433a-40a2-4758-8074-3b9d407835ec,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 463, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1887, - "FriendlyName": "Mobster Hat (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 464, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1888, - "FriendlyName": "Mobster Suit (Pinstripe)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 465, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1889, - "FriendlyName": "Mobster Suit (Herringbone)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,531b4297-b38b-4362-9854-4f2139ea43be,33ee376a-586e-4aff-a7e4-4213445a3e92,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 466, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1890, - "FriendlyName": "Mobster Cuffs (Pinstripe)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "08d56627-4500-4724-8692-a23c96ddb3ec,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 467, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1927, - "FriendlyName": "Flapper Headband (Silver)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "18feb3c2-049f-4f91-9f4e-6b5fcb4ab70c,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 493, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1929, - "FriendlyName": "Flapper Dress (Silver)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5f600892-aa67-484a-afc7-14c219d89c52,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 494, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1930, - "FriendlyName": "Flapper Gloves (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "473c672d-2b79-48a2-a49d-fd68160c5bde,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 495, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1977, - "FriendlyName": "3-Star Unique Box", - "Tooltip": "A random 3-star item that you don't have.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": true, - "QueryRedirectContext": 0, - "QueryRedirectRarity": 20, - "Unique": true, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 44, - "ItemSetFriendlyName": "Star Boxes" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2201, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1978, - "FriendlyName": "4-Star Unique Box", - "Tooltip": "A random 4-star item that you don't have.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": true, - "QueryRedirectContext": 0, - "QueryRedirectRarity": 30, - "Unique": true, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 44, - "ItemSetFriendlyName": "Star Boxes" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2202, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1980, - "FriendlyName": "2-Star Unique Box", - "Tooltip": "A random 2-star item that you don't have.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": true, - "QueryRedirectContext": 0, - "QueryRedirectRarity": 10, - "Unique": true, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 44, - "ItemSetFriendlyName": "Star Boxes" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2203, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2007, - "FriendlyName": "Film (Black \u0026 White)", - "Tooltip": "Take some black and white photos.", - "ConsumableItemDesc": "frOMH6WxDEG1fBqC4_83vg", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 0, - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 20, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 568, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 18, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2008, - "FriendlyName": "Film (Dawn)", - "Tooltip": "Take some sun-soaked photos.", - "ConsumableItemDesc": "m0bVLwWGj0GuIBSb6wCk6Q", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 0, - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 20, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 569, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 18, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2009, - "FriendlyName": "Film (Sepia)", - "Tooltip": "Take some old-timey photos.", - "ConsumableItemDesc": "A5M-yf9tgUihq1uab3v58g", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 0, - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 20, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 570, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 18, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2010, - "FriendlyName": "Ego Potion", - "Tooltip": "Makes your head BIG for a time.", - "ConsumableItemDesc": "Tpxqe_lycUelySRHM8B0Vw", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 571, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2011, - "FriendlyName": "Root Beer", - "Tooltip": "A sixer of root beer to share with friends.", - "ConsumableItemDesc": "JfnVXFmilU6ysv-VbTAe3A", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 0, - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 50, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 572, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 45, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2013, - "FriendlyName": "High Five Potion (Golden)", - "Tooltip": "Give golden high fives for a time.", - "ConsumableItemDesc": "-hy0qD-iUk-v4NHxNzanmg", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 0, - "Context": 4004, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 30, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2204, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 27, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2014, - "FriendlyName": "Supreme Pizza", - "Tooltip": "A supreme pizza to share with friends.", - "ConsumableItemDesc": "wUCIKdJSvEmiQHYMyx4X4w", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 33, - "ItemSetFriendlyName": "Pizza Aplenty" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 95, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 574, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 85, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2015, - "FriendlyName": "High Five Potion (Magic)", - "Tooltip": "Give magical high fives for a time.", - "ConsumableItemDesc": "VQSgL2pTLkWx4B3kwYG7UA", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 0, - "Context": 4014, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 30, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2205, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 27, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2025, - "FriendlyName": "Cheese Pizza", - "Tooltip": "A cheese pizza to share with friends.", - "ConsumableItemDesc": "5hIAZ9wg5EyG1cILf4FS2A", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 0, - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 33, - "ItemSetFriendlyName": "Pizza Aplenty" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 85, - "StorefrontSaleData": { - "SalePercent": 30, - "SaleStartDate": "2021-09-05T07:00:00Z", - "SaleEndDate": "2021-09-06T07:00:00Z" - } - } - ], - "PurchasableItemId": 582, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 76, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2027, - "FriendlyName": "Pepperoni Pizza", - "Tooltip": "A pepperoni pizza to share with friends.", - "ConsumableItemDesc": "mq23W-RSP0G8iGNLdrcpUw", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 33, - "ItemSetFriendlyName": "Pizza Aplenty" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 584, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 81, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2039, - "FriendlyName": "Flapper Headband (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "18feb3c2-049f-4f91-9f4e-6b5fcb4ab70c,565c17e0-496d-45bd-a2c3-564e118c06cc,d9be3a98-9da9-419e-9dce-fe58a3ad9c4e,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 596, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2040, - "FriendlyName": "Flapper Headband (Gold)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "18feb3c2-049f-4f91-9f4e-6b5fcb4ab70c,b6c25a3b-125b-4aab-bed0-e6e5ced2c21c,d9be3a98-9da9-419e-9dce-fe58a3ad9c4e,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 597, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2041, - "FriendlyName": "Mobster Hat (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,40283127-2ffc-4989-82f6-29c3381bf9e2,d759c88d-a159-4c26-86dd-b054bb05b3ed,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 598, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2042, - "FriendlyName": "Mobster Hat (Brown)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,1421caa9-9a0d-42c2-b847-1500ba2e483a,d759c88d-a159-4c26-86dd-b054bb05b3ed,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 599, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2043, - "FriendlyName": "Mobster Hat (Grey)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,390a476a-5545-48eb-955c-1bf1a16012bf,d759c88d-a159-4c26-86dd-b054bb05b3ed,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 600, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2044, - "FriendlyName": "Bow (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "1e504fee-b593-4037-bd8f-b88025147991,c9589974-c261-485e-b571-cb2f34fb178f,e0186718-4a18-434b-b96e-0c9c912f0d1f,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 601, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2045, - "FriendlyName": "Bow (Pink)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "1e504fee-b593-4037-bd8f-b88025147991,6564acf1-4d70-4f92-92ac-08e2b76dbb6b,e0186718-4a18-434b-b96e-0c9c912f0d1f,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 602, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2047, - "FriendlyName": "Equestrian Helmet (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,55901f12-d5b5-4fa8-b4c8-e479689ee39d,be6b3fa1-3388-48ac-8957-d7b8c85ff968,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 604, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2048, - "FriendlyName": "Equestrian Helmet (Grey)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,4828b50c-95b6-466a-bb25-514891d78202,be6b3fa1-3388-48ac-8957-d7b8c85ff968,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 605, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2049, - "FriendlyName": "Equestrian Helmet (Maroon)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,d6823e01-69f0-4f85-b94a-74894356a2cf,be6b3fa1-3388-48ac-8957-d7b8c85ff968,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 606, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2050, - "FriendlyName": "Firefighter Helmet (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "bb54e0e9-5d90-41f3-94c0-8e82f1791af1,891d902e-3257-4a8c-9001-858046007997,c8ccb85e-52cd-4b3b-aadf-289819067125,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 607, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2051, - "FriendlyName": "Firefighter Helmet (Yellow)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "bb54e0e9-5d90-41f3-94c0-8e82f1791af1,4c26d1e7-2382-4478-b9c4-a068ed01a607,c8ccb85e-52cd-4b3b-aadf-289819067125,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 608, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2052, - "FriendlyName": "Flat Cap (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,9967ce54-c2b7-437a-946e-11f8ee6d6fdd,73fc2e2a-a036-410b-bafa-3a07658245b5,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 609, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2053, - "FriendlyName": "Flat Cap (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,0ba92db2-690a-44ce-92f4-130e9503b6c1,73fc2e2a-a036-410b-bafa-3a07658245b5,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 610, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2054, - "FriendlyName": "Hockey Helmet (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,d5efaf80-7f34-4c9a-bc3a-b80b1ac70ace,7c4d447c-6594-4bd8-9510-12ad683ab116,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 611, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2055, - "FriendlyName": "Hockey Helmet (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,0217fd2e-ff9d-49f7-9bc8-8d0d6b8bf250,7c4d447c-6594-4bd8-9510-12ad683ab116,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 612, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2056, - "FriendlyName": "Flapper Dress (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5f600892-aa67-484a-afc7-14c219d89c52,565c17e0-496d-45bd-a2c3-564e118c06cc,a240d44f-963d-4d35-b22f-980938c7788d,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 613, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2057, - "FriendlyName": "Flapper Dress (Gold)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5f600892-aa67-484a-afc7-14c219d89c52,b6c25a3b-125b-4aab-bed0-e6e5ced2c21c,a240d44f-963d-4d35-b22f-980938c7788d,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 614, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2058, - "FriendlyName": "Flapper Gloves (Silver)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "473c672d-2b79-48a2-a49d-fd68160c5bde,30c61e63-5e09-4a6f-8915-1e1fe4d55cf0,0e42108e-3b08-49b4-86c0-7984719e8380,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 615, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2059, - "FriendlyName": "Flapper Gloves (Gold)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "473c672d-2b79-48a2-a49d-fd68160c5bde,2cf2b644-3fa6-449c-9fe8-d0ab917f3106,0e42108e-3b08-49b4-86c0-7984719e8380,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 616, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2065, - "FriendlyName": "Basketball Jersey (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,59a62fa3-9e15-463e-9bd5-3aecdf604c1b,54a5c055-f757-4c00-a1e1-8b0b6552c608,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 622, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2066, - "FriendlyName": "Basketball Jersey (Purple)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,4effd67c-a52f-4b41-a5b0-04287f91a7bc,54a5c055-f757-4c00-a1e1-8b0b6552c608,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 623, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2067, - "FriendlyName": "Jazzercise Shirt (Pink)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5f492f8f-ab61-484a-9587-747132b54309,3b2cfc85-4e2a-4e0d-b738-c296ae8692f8,f6f26e2b-657b-454a-8663-55d6b9b6e50c,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 624, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2068, - "FriendlyName": "Jazzercise Shirt (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5f492f8f-ab61-484a-9587-747132b54309,78eb0969-f246-4cac-acd6-295df7c092e4,f6f26e2b-657b-454a-8663-55d6b9b6e50c,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 625, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2069, - "FriendlyName": "Paintball Vest (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "d8f408f0-78f5-4e8a-b42a-e7b09632d1fd,178c6beb-c737-434c-a53b-d14f438f6a98,0189ec4c-0389-4ebc-b9ba-32303a6341c2,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 626, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2070, - "FriendlyName": "Paintball Vest (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "d8f408f0-78f5-4e8a-b42a-e7b09632d1fd,2913bd93-bf35-4bdf-b83a-d40a10213adc,0189ec4c-0389-4ebc-b9ba-32303a6341c2,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 627, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2072, - "FriendlyName": "Conductor Hat (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "07205057-0804-41de-abe4-bd4027fee1df,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 628, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2073, - "FriendlyName": "Conductor Jacket (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "e60fccda-8711-463d-b8a3-7cd5e76903b2,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 629, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2074, - "FriendlyName": "Conductor Cuffs (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "8fc7aaef-adec-4534-8f91-445e4e7095d5,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 630, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2075, - "FriendlyName": "KO Icon - Winged Skull", - "Tooltip": "When you KO someone this will appear over their head.", - "ConsumableItemDesc": "U38Qe6rhEk6mFvArHfYjng", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 631, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2076, - "FriendlyName": "Deep Sea Diver Helmet (Triton)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "4fcb5b84-13a9-43e6-9680-72b17874ae53,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 9500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 632, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 8550, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2077, - "FriendlyName": "Babydoll Dress (Pink)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,da6d0ced-3d43-4878-a868-925f2ed6fd5b,cb9e9e05-c481-4397-86e7-c2111bc0e817,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 633, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2078, - "FriendlyName": "Deep Sea Diver Suit (Triton)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "c3745cee-d87e-4a23-b6e2-64ebf05c8b11,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 6500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2206, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 5850, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2079, - "FriendlyName": "Deep Sea Diver Gloves (Triton)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "b1c3ccc8-91d7-434e-b9cc-bd632fffc01b,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-10-03T21:00:00Z", - "SaleEndDate": "2021-10-04T21:00:00Z" - } - } - ], - "PurchasableItemId": 2207, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2080, - "FriendlyName": "KO Icon - Bear Claw", - "Tooltip": "When you KO someone this will appear over their head.", - "ConsumableItemDesc": "ZtZnYBpKkECJlhHmkj4MiA", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 636, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2081, - "FriendlyName": "KO Icon - Sword \u0026 Shield", - "Tooltip": "When you KO someone this will appear over their head.", - "ConsumableItemDesc": "5AJin8T2iEG7BzOPOgx2HA", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 637, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2102, - "FriendlyName": "Winner's Medal (Gold)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "bf13fa1c-f991-4aaa-9402-aac109be9562,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": true, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-07-25T21:00:00Z", - "SaleEndDate": "2021-07-26T21:00:00Z" - } - } - ], - "PurchasableItemId": 658, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1350, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2163, - "FriendlyName": "Baseball Jersey (White, Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,e5de2e45-207c-46af-9a5e-eb01a0c621fe,ca37823a-b8f3-4414-b38b-de0dc7fa4295,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": true, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 719, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2164, - "FriendlyName": "Baseball Jersey (White, Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,de0a5a3a-8aff-4799-8269-9efa3aeb383a,ca37823a-b8f3-4414-b38b-de0dc7fa4295,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": true, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 720, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2168, - "FriendlyName": "Jersey (Pink)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,cbe29e9f-f2ac-47fb-97e1-8bad16abb89d,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": true, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 724, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2194, - "FriendlyName": "Jersey (Orange)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,51ef8d39-2b94-4f9e-9620-07b6b0a913a5,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": true, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 750, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2242, - "FriendlyName": "Ranger Hat (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "f277af6a-0807-4716-8948-1bee236ffb74,d0bb468c-b78f-4e80-916d-65fec3ec0010,0272eb19-fc0e-4ad6-8db9-cc0cda2528b0,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 826, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2245, - "FriendlyName": "Ranger Uniform (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "fb907eb2-91c8-45ff-84a5-462bb86ea7de,b415fe60-3e9d-4f4d-a53a-ca15eac6af7d,d21e1b6f-9c9e-42b4-bad5-201ec43161e9,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 825, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2222, - "FriendlyName": "Deep Sea Diver Tank (Triton)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "8d97303c-5138-4da1-a74d-378da19d11cb,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2208, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2241, - "FriendlyName": "Beekeeper Veil (Gold)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "96bc2f9f-ce3a-4c4c-b92c-cfed4ed4594f,1919d319-6cce-4500-8766-15fed6a13fa8,e4b53a9a-ac95-49ae-bf68-615bb23fa075,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 822, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4050, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2244, - "FriendlyName": "Beekeeper Suit (Gold)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "1ebbfdfc-f72b-4d70-99d4-4d527f896aa7,1919d319-6cce-4500-8766-15fed6a13fa8,afd88a79-7f03-40f6-bcb4-c247dd86edc4,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 823, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2700, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2248, - "FriendlyName": "Beekeeper Gloves (Gold)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "4025e4c4-abaa-4729-a2a3-a7175313e5ed,1919d319-6cce-4500-8766-15fed6a13fa8,1f18670d-df52-4d2b-8009-a32cf7c67b40,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 824, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2032, - "FriendlyName": "Space Visor (Nova)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "b89be768-a169-4b24-8022-751e7b817865,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 9500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 589, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 8550, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2274, - "FriendlyName": "Detective Cap (Tan)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5bde836f-9343-4934-b01a-606f707020ef,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 829, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2275, - "FriendlyName": "Detective Coat (Tan)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "033e328f-d9d2-4e53-af20-44f18e3ea208,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 830, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2279, - "FriendlyName": "RecFly Vest (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 831, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2271, - "FriendlyName": "Royal Cape (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2209, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2289, - "FriendlyName": "Clubmaster Glasses", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "TcgHS_0aPkehrBg7ytMOMQ,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 851, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2290, - "FriendlyName": "Poindexter Shirt (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "pQqNvrhDJ0uuipKHA2qUOA,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 852, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2270, - "FriendlyName": "Royal Crown (Gold)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "40734c4d-e1fe-426c-8921-930f7463d8e8,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 9000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-04-04T21:00:00Z", - "SaleEndDate": "2021-04-07T21:00:00Z" - } - } - ], - "PurchasableItemId": 2210, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 8100, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2272, - "FriendlyName": "Royal Dress (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 50, - "ItemSetFriendlyName": "Royal Dresses" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2211, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2273, - "FriendlyName": "Royal Tabard (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 49, - "ItemSetFriendlyName": "Royal Tabards" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2212, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2263, - "FriendlyName": "Cat Ears (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,c1e430c5-fd8d-4032-9e3f-8d87cc8784da,1e3195ab-f7f6-41f4-a5ec-378d09ecdf69,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 9000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 854, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 8100, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2307, - "FriendlyName": "Biker Helmet", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "VQnoLstCyEGDPy1c38-GvA,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 865, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2310, - "FriendlyName": "Biker Goggles", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "_qXaNbm4yEeyalo372QbvA,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 872, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2312, - "FriendlyName": "Biker Jacket", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "n52um7A-b0utGxixd1ESvA,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 866, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2324, - "FriendlyName": "Glazed Donuts", - "Tooltip": "A dozen glazed donuts to share with friends.", - "ConsumableItemDesc": "7OZ5AE3uuUyqa0P-2W1ptg", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 0, - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 34, - "ItemSetFriendlyName": "Donuts by the Dozen" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 855, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 81, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2326, - "FriendlyName": "Assorted Donuts", - "Tooltip": "A dozen assorted donuts to share with friends.", - "ConsumableItemDesc": "ZuvkidodzkuOfGLDnTOFyg", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 34, - "ItemSetFriendlyName": "Donuts by the Dozen" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 857, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2327, - "FriendlyName": "Chocolate Donuts", - "Tooltip": "A dozen chocolate donuts to share with friends.", - "ConsumableItemDesc": "mMCGPgK3tki5S_15q2Z81A", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 34, - "ItemSetFriendlyName": "Donuts by the Dozen" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 95, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 856, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 85, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2233, - "FriendlyName": "KO Icon - Star Power", - "Tooltip": "When you KO someone this will appear over their head.", - "ConsumableItemDesc": "yvqSbK2czkS2sUCRdrGaEw", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 789, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2231, - "FriendlyName": "KO Icon - Grenade", - "Tooltip": "When you KO someone this will appear over their head.", - "ConsumableItemDesc": "EAhk3ZZdXEmH5wRAXXT24Q", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 787, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2321, - "FriendlyName": "Peacoat (Black)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 863, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2265, - "FriendlyName": "Mobster Cuffs (Herringbone)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "08d56627-4500-4724-8692-a23c96ddb3ec,531b4297-b38b-4362-9854-4f2139ea43be,c2a9c007-2748-4fa2-ab9b-0081eef792f1,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 878, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2319, - "FriendlyName": "Windbreaker (Teal)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 858, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2322, - "FriendlyName": "Windbreaker Cuffs (Teal)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 859, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2316, - "FriendlyName": "Shutter Shades (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 6000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-04-11T21:00:00Z", - "SaleEndDate": "2021-04-14T21:00:00Z" - } - } - ], - "PurchasableItemId": 869, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 5400, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2320, - "FriendlyName": "Letter Jacket (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 867, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2323, - "FriendlyName": "Letter Jacket Cuffs (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 879, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2318, - "FriendlyName": "Swing Dress (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 868, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2317, - "FriendlyName": "Plastic Sunglasses (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 871, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2409, - "FriendlyName": "Anime Tiara (Fuchsia)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 8500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 909, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 7650, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2412, - "FriendlyName": "Anime Bow (Fuchsia)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 898, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2418, - "FriendlyName": "Anime Skirt (Blue)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 6500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 908, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 5850, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2422, - "FriendlyName": "Anime Glove (Blue)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 886, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2311, - "FriendlyName": "Classic Glasses", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "kghEf_iMKUSxPO-h5iRhSQ,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 870, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2261, - "FriendlyName": "Cat Ears (Brown)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,713781e5-ce47-41c6-a24f-94d42a565e30,1e3195ab-f7f6-41f4-a5ec-378d09ecdf69,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 9000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 913, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 8100, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2470, - "FriendlyName": "Hawaiian Pizza", - "Tooltip": "A ham and pineapple pizza to share with friends.", - "ConsumableItemDesc": "_jnjYGBcyEWY5Ub4OezXcA", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 33, - "ItemSetFriendlyName": "Pizza Aplenty" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 95, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 922, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 85, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2471, - "FriendlyName": "Salted Pretzels", - "Tooltip": "A great snack to share with friends!", - "ConsumableItemDesc": "InQ25wQMGkG_bvuD5rf2Ag", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 0, - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 52, - "ItemSetFriendlyName": "Snickety Snacks" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 75, - "StorefrontSaleData": { - "SalePercent": 25, - "SaleStartDate": "2021-04-26T07:00:00Z", - "SaleEndDate": "2021-04-27T07:00:00Z" - } - } - ], - "PurchasableItemId": 921, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 67, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2445, - "FriendlyName": "Rec Room Hoodie (Blue)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,u_Gzj9Nro0WS48xKnH9few,oHKhT-GTx0iFWrrlz9s6Tw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 891, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2446, - "FriendlyName": "Rec Room Hoodie (Purple)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,mvMeyStxGUGlNLSYNeSubQ,oHKhT-GTx0iFWrrlz9s6Tw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 894, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2452, - "FriendlyName": "Rec Room Hoodie (Orange)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,rNhOQoP3XkOBHV28ze2NpA,oHKhT-GTx0iFWrrlz9s6Tw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 893, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2455, - "FriendlyName": "Rec Room Hoodie (Grey)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,JTgXKeT7w0K2Mw4Jk2HCqg,oHKhT-GTx0iFWrrlz9s6Tw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 892, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2308, - "FriendlyName": "Detective Cap (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5bde836f-9343-4934-b01a-606f707020ef,fEPwvuJCWkGBe4IekXpmLw,axPBGoqorEe77Oqqjfzb5w,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 880, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2314, - "FriendlyName": "Detective Coat (Black)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "033e328f-d9d2-4e53-af20-44f18e3ea208,Z1Ib9r_fkUqgoZk0uid_Xw,9ZP617DQk0mZ10J3d5q9oA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 861, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2450, - "FriendlyName": "Peacoat (Blue)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,fvoaMN4M10WS6jiA6XlOJQ,AZnPWCN41kmNwFwDqWGFWQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 888, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2451, - "FriendlyName": "Peacoat (Tan)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,PwsLxCnzOkSW-RGz3tNb1w,AZnPWCN41kmNwFwDqWGFWQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 890, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2453, - "FriendlyName": "Peacoat (Purple)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,uiBklotTUEqRI2F67vyJyA,AZnPWCN41kmNwFwDqWGFWQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 889, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2481, - "FriendlyName": "Peacoat (Red)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,jXBi28cRV0CEQgKIrpD0_A,AZnPWCN41kmNwFwDqWGFWQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 953, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2379, - "FriendlyName": "D4 Skin (Turquoise)", - "Tooltip": "Reskin your dice.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[Sandbox_D4]", - "EquipmentModificationGuid": "_2jxSTYSpEykZ_O91oDAzg", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": true, - "SubscribersOnly": false, - "Rarity": 20, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 957, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2383, - "FriendlyName": "D6 Skin (Turquoise)", - "Tooltip": "Reskin your dice.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[Sandbox_D6]", - "EquipmentModificationGuid": "HnVo08F-zk-YeikERFa1Yw", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": true, - "SubscribersOnly": false, - "Rarity": 20, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 958, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2387, - "FriendlyName": "D8 Skin (Turquoise)", - "Tooltip": "Reskin your dice.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[Sandbox_D8]", - "EquipmentModificationGuid": "f45tTZp4KUextmAsX8X9Hw", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": true, - "SubscribersOnly": false, - "Rarity": 20, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 959, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2391, - "FriendlyName": "D10 Skin (Turquoise)", - "Tooltip": "Reskin your dice.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[Sandbox_D10]", - "EquipmentModificationGuid": "SnSOf-GZ2kastpF5KWxT-Q", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": true, - "SubscribersOnly": false, - "Rarity": 20, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 954, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2395, - "FriendlyName": "D12 Skin (Turquoise)", - "Tooltip": "Reskin your dice.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[Sandbox_D12]", - "EquipmentModificationGuid": "ub6apg3zEUiCp3k81JjQGw", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": true, - "SubscribersOnly": false, - "Rarity": 20, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 955, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2399, - "FriendlyName": "D20 Skin (Turquoise)", - "Tooltip": "Reskin your dice.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[Sandbox_D20]", - "EquipmentModificationGuid": "DrG0ntsyPUSv8ra0m-Hhaw", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": true, - "SubscribersOnly": false, - "Rarity": 20, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 956, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2458, - "FriendlyName": "Bike Shirt (Navy)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,XNq4Cns4lEGydtktdsXlmQ,1695608b-e9cc-4a03-b56d-0f09d2804379,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 887, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2514, - "FriendlyName": "Bike Helmet (Navy)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,XNq4Cns4lEGydtktdsXlmQ,5fd9e83a-cfaf-4c98-bd31-91a7484c26dd,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 988, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2447, - "FriendlyName": "Swing Dress (Blue)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,QzjakcO8tUaPeiI5KBLKtg,Rk18_7icF0Srgh7M1_G-hA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 884, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2448, - "FriendlyName": "Swing Dress (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,Yr0mF1EWzEaIyRMOWFiY6w,Rk18_7icF0Srgh7M1_G-hA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 883, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2456, - "FriendlyName": "Swing Dress (Pink)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,eb3SmJTIh0628LrZUkI4KQ,Rk18_7icF0Srgh7M1_G-hA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 885, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2466, - "FriendlyName": "Swing Dress (White)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,BLgkgLeS-EyazgPQxGcavg,Rk18_7icF0Srgh7M1_G-hA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 882, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2473, - "FriendlyName": "Bowling Shirt (Hambone)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,-k9_-2onrEG407or8t1RFw,b-IM3eYMJUa40395O5XeLg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 942, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2474, - "FriendlyName": "Bowling Shirt (Turkey)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 943, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2475, - "FriendlyName": "Bowling Shirt (Flames, Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,8xjU4GQ4OkaqGyad-ypwtw,5RUG6i2Mx0-55IO-IlhUdQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 944, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2476, - "FriendlyName": "Bowling Shirt (Deadwood)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,ghM-uFq5-0Ci38AOHa9zZA,IWg9wuda4kaCilJk8JQpTQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 941, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2570, - "FriendlyName": "Cowboy Vest (Black, Silver)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,K5vPqD3BrEuODRDzFdC6Hw,98553538-cafd-4df9-8f37-bb0a4bb478a5,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 7500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 992, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 6750, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2589, - "FriendlyName": "Cowboy Hat (Black, Silver)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,K5vPqD3BrEuODRDzFdC6Hw,54778d93-2cff-48db-b25b-65c08b0e5be8,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 6500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 990, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 5850, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2606, - "FriendlyName": "Cowboy Gloves (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,wat8f6fs80KptZbW39e8tA,8eef8837-9141-4088-835a-b2f47f4126f8,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 994, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2607, - "FriendlyName": "Cowboy Gloves (Black, Silver)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,wkqKPZmnoU-8TXSWzi2-Ow,8eef8837-9141-4088-835a-b2f47f4126f8,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 993, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2571, - "FriendlyName": "Cowboy Vest (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,teVKVbVEsEyqOSuRdqHQzA,98553538-cafd-4df9-8f37-bb0a4bb478a5,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 7500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 991, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 6750, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2590, - "FriendlyName": "Cowboy Hat (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,teVKVbVEsEyqOSuRdqHQzA,54778d93-2cff-48db-b25b-65c08b0e5be8,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 6500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 989, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 5850, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2532, - "FriendlyName": "Windbreaker Cuffs (Orange)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,FvEjo9let0e_Sr-kWq5AvQ,MV1HW2x43kG4rrhyoC6mmw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1001, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2566, - "FriendlyName": "Windbreaker (Orange)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,JS7aa4QSUUOpUYPqRZEb5g,oSaMpc5rTE-U6yhjtPWQgg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 995, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2533, - "FriendlyName": "Windbreaker Cuffs (Yellow)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,VDo682NvSUa8xYn8zTX-AQ,MV1HW2x43kG4rrhyoC6mmw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1002, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2534, - "FriendlyName": "Windbreaker Cuffs (Blue)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,42ZNGHXMvU29yo9s9tVpOQ,MV1HW2x43kG4rrhyoC6mmw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 999, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2535, - "FriendlyName": "Windbreaker Cuffs (Red)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,HncURj5yi0ykk2cVyCZ4Sw,MV1HW2x43kG4rrhyoC6mmw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1000, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2567, - "FriendlyName": "Windbreaker (Yellow)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,C3ll7uPfUkeZ1QLX80_BpQ,oSaMpc5rTE-U6yhjtPWQgg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 996, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2568, - "FriendlyName": "Windbreaker (Blue)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,EbVDqEJQOk6j0UvX3t-8rQ,oSaMpc5rTE-U6yhjtPWQgg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 997, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2569, - "FriendlyName": "Windbreaker (Red)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,grutFwJD_0Cb3t6fddNg6w,oSaMpc5rTE-U6yhjtPWQgg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 998, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2629, - "FriendlyName": "Ski Buddy Jacket (Summit)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "6RhwWExXekaYpK0NGHSXGQ,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1156, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2630, - "FriendlyName": "Ski Buddy Goggles (Summit)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "5fwjFQoC_Uu9ChvF6uNGZw,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1155, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2588, - "FriendlyName": "Top Hat (White)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,DzgN67HoikexE2rTlZLdYQ,vm1ESK9ls0SaxSwHplNALQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 6500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1163, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 5850, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2544, - "FriendlyName": "Letter Jacket (Purple)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,iufpnteVCEiiZu_m-yPovQ,fz_0gZ6RXEC78NpYsx_eqA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1108, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2545, - "FriendlyName": "Letter Jacket (Black)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,Z1F9rjKqCE-Hd2-Ip5g3gA,fz_0gZ6RXEC78NpYsx_eqA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1106, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2546, - "FriendlyName": "Letter Jacket (Red)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,VpqHNpPiY0CfRJEjRRM-mw,fz_0gZ6RXEC78NpYsx_eqA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1109, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2547, - "FriendlyName": "Letter Jacket (Green)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,apSQiQ1eO0mEzRsbugeu9w,fz_0gZ6RXEC78NpYsx_eqA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1107, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2610, - "FriendlyName": "Letter Jacket Cuffs (Green)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,UUyjVU4mvECPhI9xTMYR1Q,4EHIyZkOOEqnM-PuD_a5xw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1111, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2611, - "FriendlyName": "Letter Jacket Cuffs (Red)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,HWc25-d8dUmNN2F3n8mV5A,4EHIyZkOOEqnM-PuD_a5xw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1113, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2612, - "FriendlyName": "Letter Jacket Cuffs (Black)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,Y0e7o0_BKUm7XJSLediN5w,4EHIyZkOOEqnM-PuD_a5xw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1110, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2613, - "FriendlyName": "Letter Jacket Cuffs (Purple)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,MS7EPNLJEEyMLC6_yHQYtA,4EHIyZkOOEqnM-PuD_a5xw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1112, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2313, - "FriendlyName": "Rec Room Hoodie (Black)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 864, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2579, - "FriendlyName": "Winner's Medal (Bronze)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "bf13fa1c-f991-4aaa-9402-aac109be9562,iaDL2im4lkCXUo0NWM-F3g,wzt-5C_LjEmIQWUVPcYWhA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-07-25T21:00:00Z", - "SaleEndDate": "2021-07-26T21:00:00Z" - } - } - ], - "PurchasableItemId": 1171, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2580, - "FriendlyName": "Winner's Medal (Silver)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "bf13fa1c-f991-4aaa-9402-aac109be9562,ERnUPsyT6kuEnIRZF8zPwg,wzt-5C_LjEmIQWUVPcYWhA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1250, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-07-25T21:00:00Z", - "SaleEndDate": "2021-07-26T21:00:00Z" - } - } - ], - "PurchasableItemId": 1172, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1125, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2667, - "FriendlyName": "Cheerful Ponytail", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "BJ2XrGvl40iIl28IbTfbKg,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1185, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2325, - "FriendlyName": "Treasure Hunter Hat (Brown)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "-SQLtL4rdEWTJdw2IroQCQ,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 907, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2414, - "FriendlyName": "Treasure Hunter Bandolier (Brown)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "t_66r_j5oUSh9awIPmdUKg,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 906, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2415, - "FriendlyName": "Treasure Hunter Belt (Brown)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ImwG0snB9ECc_gqRRBoz6A,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 895, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2420, - "FriendlyName": "Treasure Hunter Shirt (Tan)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "QK6lBlX_wUCiSbJ9RkIwdA,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 896, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2421, - "FriendlyName": "Treasure Hunter Tank Top (Tan)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 897, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2605, - "FriendlyName": "Boxing Glove (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "b904304b-cce0-466f-8569-c621eeadd4f7,rzUd1IMTKUmW0HeMPSIOBQ,f79f8a46-ef1d-4d8c-a4fc-383e3a9eb10b,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-05-30T21:00:00Z", - "SaleEndDate": "2021-05-31T21:00:00Z" - } - } - ], - "PurchasableItemId": 1054, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2549, - "FriendlyName": "Rec Room Hoodie (Red)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,yM5xRrd9OkmDGyQddwOP6g,oHKhT-GTx0iFWrrlz9s6Tw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1134, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2585, - "FriendlyName": "Shutter Shades (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,7B7vpnMTfkGLcMdHCZ_kWA,tqyzKPdDwkWq3jfZ8jZdaA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 6000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-04-11T21:00:00Z", - "SaleEndDate": "2021-04-14T21:00:00Z" - } - } - ], - "PurchasableItemId": 1152, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 5400, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2402, - "FriendlyName": "Steampunk Goggles", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "CdeM6RJmPUumXtdmdM3RXA,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 903, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2403, - "FriendlyName": "Steampunk Corset", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "LK8jt9zCuUGwLRccgOOvjA,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 8500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 917, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 7650, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2462, - "FriendlyName": "Steampunk Pauldron", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "sOREgAGs-06CeGGsG-WIkw,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 904, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2463, - "FriendlyName": "Steampunk Satchel", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "iBQ-v6xaqkipUlfzkSHEeQ,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 905, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2464, - "FriendlyName": "Steampunk Vest", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "E9VTiIVFPEa-OuQRto0e_Q,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 8500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 920, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 7650, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2465, - "FriendlyName": "Steampunk Cuff", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "qxovV6Vym0ufL2cTCyKjOQ,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 902, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2573, - "FriendlyName": "Anime Bow (Purple)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,_uh3kj6hKUyBKOSR3R8dog,M5z2wk-GDkOAjvZzqsfcNQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1014, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2540, - "FriendlyName": "Anime Skirt (Red)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,FE7_gQNBt0CXzMN6di5HWA,2UNd6eViFUO359xjSiuu2A,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 6500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1021, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 5850, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2592, - "FriendlyName": "Anime Tiara (Red)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,EDLxuGjEVEGdOPXDqyN-xA,mG60EPIQIkaJNgOkonVmZg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 8500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1026, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 7650, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2617, - "FriendlyName": "Anime Glove (Red)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,N9CBuYaMtUOrCks5UcOycg,ZtCqMnFTQUWv2h0MfZ4m6A,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1017, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2677, - "FriendlyName": "Baseball Helmet (Green)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "293e7ad3-01c9-43af-96e3-06c34145ff12,9967ce54-c2b7-437a-946e-11f8ee6d6fdd,FVdDQFOMQ06teQm2ANDPng,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1199, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2678, - "FriendlyName": "Baseball Helmet (Red)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "293e7ad3-01c9-43af-96e3-06c34145ff12,a1c51d1e-1d5f-4f8a-bc0f-6a20eddfe58a,FVdDQFOMQ06teQm2ANDPng,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1200, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2664, - "FriendlyName": "Traveler Hat", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1187, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2666, - "FriendlyName": "Traveler Shirt", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1189, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2668, - "FriendlyName": "Traveler Shades", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "cbN5e-t_jEKa4hzir5JAxQ,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1186, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2665, - "FriendlyName": "Fanny Pack", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "oYvOo47DJE-DEPlpn5xNUw,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1188, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2559, - "FriendlyName": "Bowling Shirt (Brooklyn)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,Gtq8yRlt1UeFW8U-sc7FiA,IWg9wuda4kaCilJk8JQpTQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1045, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2563, - "FriendlyName": "Bowling Shirt (Runway)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,GDvaUU10-EKh3pKUQ9tnag,b-IM3eYMJUa40395O5XeLg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1050, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2556, - "FriendlyName": "Bowling Shirt (Lily)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,yrQCLXiqRUSwnuQRYX2Rsw,VO_3cgqQqUOTz30TVUxrFA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1052, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2561, - "FriendlyName": "Bowling Shirt (Flames, Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,032pE8s9Ik-2CImFVDrSqg,5RUG6i2Mx0-55IO-IlhUdQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1047, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2672, - "FriendlyName": "Permanent Hair Dye (Cauldron Crimson)", - "Tooltip": "Permanently unlocks this hair color on your dorm room mirror.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "XCwNFMT1i0i9Q9gJYTLPUQ", - "AvatarItemType": 1, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 20, - "SaleStartDate": "2021-07-21T03:00:00Z", - "SaleEndDate": "2021-07-26T06:59:00Z" - } - } - ], - "PurchasableItemId": 1197, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2718, - "FriendlyName": "Permanent Hair Dye (Bucket Orange)", - "Tooltip": "Permanently unlocks this hair color on your dorm room mirror.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "1I8AD333gku-iOQlS6WWlw", - "AvatarItemType": 1, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 20, - "SaleStartDate": "2021-07-21T03:00:00Z", - "SaleEndDate": "2021-07-26T06:59:00Z" - } - } - ], - "PurchasableItemId": 1227, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2728, - "FriendlyName": "Permanent Hair Dye (Butterfly Blue)", - "Tooltip": "Permanently unlocks this hair color on your dorm room mirror.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "yTdx1nVVtECU8Vh7EC8dGA", - "AvatarItemType": 1, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 20, - "SaleStartDate": "2021-07-21T03:00:00Z", - "SaleEndDate": "2021-07-26T06:59:00Z" - } - } - ], - "PurchasableItemId": 1228, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2726, - "FriendlyName": "Permanent Hair Dye (Circuit Cerulean)", - "Tooltip": "Permanently unlocks this hair color on your dorm room mirror.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "W5E2gDCKY0SXaKytP89-OA", - "AvatarItemType": 1, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 20, - "SaleStartDate": "2021-07-21T03:00:00Z", - "SaleEndDate": "2021-07-26T06:59:00Z" - } - } - ], - "PurchasableItemId": 1229, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2723, - "FriendlyName": "Permanent Hair Dye (EDM Emerald)", - "Tooltip": "Permanently unlocks this hair color on your dorm room mirror.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "wXJZbYCkZE-NMbPVf2YuFA", - "AvatarItemType": 1, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 20, - "SaleStartDate": "2021-07-21T03:00:00Z", - "SaleEndDate": "2021-07-26T06:59:00Z" - } - } - ], - "PurchasableItemId": 1230, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2722, - "FriendlyName": "Permanent Hair Dye (Frontier Forest)", - "Tooltip": "Permanently unlocks this hair color on your dorm room mirror.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "LBz3a9520kiOOMMOwsTExg", - "AvatarItemType": 1, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 20, - "SaleStartDate": "2021-07-21T03:00:00Z", - "SaleEndDate": "2021-07-26T06:59:00Z" - } - } - ], - "PurchasableItemId": 1231, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2732, - "FriendlyName": "Permanent Hair Dye (Gizmo Grape)", - "Tooltip": "Permanently unlocks this hair color on your dorm room mirror.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "QmgjYhH_L0q58eF5SWeDhQ", - "AvatarItemType": 1, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 20, - "SaleStartDate": "2021-07-21T03:00:00Z", - "SaleEndDate": "2021-07-26T06:59:00Z" - } - } - ], - "PurchasableItemId": 1232, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2721, - "FriendlyName": "Permanent Hair Dye (Goblin Green)", - "Tooltip": "Permanently unlocks this hair color on your dorm room mirror.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "TylV8M6zjUaadhxHPWAS-w", - "AvatarItemType": 1, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 20, - "SaleStartDate": "2021-07-21T03:00:00Z", - "SaleEndDate": "2021-07-26T06:59:00Z" - } - } - ], - "PurchasableItemId": 1233, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2725, - "FriendlyName": "Permanent Hair Dye (H2Oasis Blue)", - "Tooltip": "Permanently unlocks this hair color on your dorm room mirror.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "Bjsgo9ddeUCk3zW1-DdJbw", - "AvatarItemType": 1, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 20, - "SaleStartDate": "2021-07-21T03:00:00Z", - "SaleEndDate": "2021-07-26T06:59:00Z" - } - } - ], - "PurchasableItemId": 1234, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2724, - "FriendlyName": "Permanent Hair Dye (Jungle Jade)", - "Tooltip": "Permanently unlocks this hair color on your dorm room mirror.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "Sc8S3QiTIUuXNJZD6geY1Q", - "AvatarItemType": 1, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 20, - "SaleStartDate": "2021-07-21T03:00:00Z", - "SaleEndDate": "2021-07-26T06:59:00Z" - } - } - ], - "PurchasableItemId": 1235, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2671, - "FriendlyName": "Permanent Hair Dye (KREQ Red)", - "Tooltip": "Permanently unlocks this hair color on your dorm room mirror.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "xyHGGFKNWEOTnXloDFahPQ", - "AvatarItemType": 1, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 20, - "SaleStartDate": "2021-07-21T03:00:00Z", - "SaleEndDate": "2021-07-26T06:59:00Z" - } - } - ], - "PurchasableItemId": 1196, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2733, - "FriendlyName": "Permanent Hair Dye (Maker Mauve)", - "Tooltip": "Permanently unlocks this hair color on your dorm room mirror.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "G129V_kVXkSLN2OG8EjSqQ", - "AvatarItemType": 1, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 20, - "SaleStartDate": "2021-07-21T03:00:00Z", - "SaleEndDate": "2021-07-26T06:59:00Z" - } - } - ], - "PurchasableItemId": 1237, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2734, - "FriendlyName": "Permanent Hair Dye (Mousebot Magenta)", - "Tooltip": "Permanently unlocks this hair color on your dorm room mirror.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "8k_gZA_lrEyJxI19GrcAZg", - "AvatarItemType": 1, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 20, - "SaleStartDate": "2021-07-21T03:00:00Z", - "SaleEndDate": "2021-07-26T06:59:00Z" - } - } - ], - "PurchasableItemId": 1238, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2727, - "FriendlyName": "Permanent Hair Dye (Paula's Periwinkle)", - "Tooltip": "Permanently unlocks this hair color on your dorm room mirror.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "_2QGtfHzuUSq0eyI84rImw", - "AvatarItemType": 1, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 20, - "SaleStartDate": "2021-07-21T03:00:00Z", - "SaleEndDate": "2021-07-26T06:59:00Z" - } - } - ], - "PurchasableItemId": 1239, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2720, - "FriendlyName": "Permanent Hair Dye (Pirate Gold)", - "Tooltip": "Permanently unlocks this hair color on your dorm room mirror.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "pQNfh-3DsEGWfiIls6Qf6g", - "AvatarItemType": 1, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 20, - "SaleStartDate": "2021-07-21T03:00:00Z", - "SaleEndDate": "2021-07-26T06:59:00Z" - } - } - ], - "PurchasableItemId": 1240, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2731, - "FriendlyName": "Permanent Hair Dye (Propulsion Purple)", - "Tooltip": "Permanently unlocks this hair color on your dorm room mirror.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "53y1prYATU2drZDS-jpaqg", - "AvatarItemType": 1, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 20, - "SaleStartDate": "2021-07-21T03:00:00Z", - "SaleEndDate": "2021-07-26T06:59:00Z" - } - } - ], - "PurchasableItemId": 1241, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2673, - "FriendlyName": "Permanent Hair Dye (PVPeach)", - "Tooltip": "Permanently unlocks this hair color on your dorm room mirror.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "0RUmjv2bL0ydbKU61dlqlg", - "AvatarItemType": 1, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 20, - "SaleStartDate": "2021-07-21T03:00:00Z", - "SaleEndDate": "2021-07-26T06:59:00Z" - } - } - ], - "PurchasableItemId": 1198, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2729, - "FriendlyName": "Permanent Hair Dye (Ranger Roy-Al Blue)", - "Tooltip": "Permanently unlocks this hair color on your dorm room mirror.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "3ksu_FLaukeJ-YE90jb4Ow", - "AvatarItemType": 1, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 20, - "SaleStartDate": "2021-07-21T03:00:00Z", - "SaleEndDate": "2021-07-26T06:59:00Z" - } - } - ], - "PurchasableItemId": 1242, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2670, - "FriendlyName": "Permanent Hair Dye (Rebel Rose)", - "Tooltip": "Permanently unlocks this hair color on your dorm room mirror.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "aziIarpSREmcT6vihduPwA", - "AvatarItemType": 1, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 20, - "SaleStartDate": "2021-07-21T03:00:00Z", - "SaleEndDate": "2021-07-26T06:59:00Z" - } - } - ], - "PurchasableItemId": 1195, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2674, - "FriendlyName": "Permanent Hair Dye (Recreational Raspberry)", - "Tooltip": "Permanently unlocks this hair color on your dorm room mirror.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "yejur5BbR0mevbH-rzgXYA", - "AvatarItemType": 1, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 20, - "SaleStartDate": "2021-07-21T03:00:00Z", - "SaleEndDate": "2021-07-26T06:59:00Z" - } - } - ], - "PurchasableItemId": 1257, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2719, - "FriendlyName": "Permanent Hair Dye (Standee Sandy)", - "Tooltip": "Permanently unlocks this hair color on your dorm room mirror.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "H65ddsxAY0m2sccMrF48Aw", - "AvatarItemType": 1, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 20, - "SaleStartDate": "2021-07-21T03:00:00Z", - "SaleEndDate": "2021-07-26T06:59:00Z" - } - } - ], - "PurchasableItemId": 1243, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2730, - "FriendlyName": "Permanent Hair Dye (Witch Attack Lilac)", - "Tooltip": "Permanently unlocks this hair color on your dorm room mirror.", - "ConsumableItemDesc": "", - "AvatarItemDesc": "qp_vRXZQPU2rlx_IU1Vr8Q", - "AvatarItemType": 1, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 20, - "SaleStartDate": "2021-07-21T03:00:00Z", - "SaleEndDate": "2021-07-26T06:59:00Z" - } - } - ], - "PurchasableItemId": 1236, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2602, - "FriendlyName": "Bike Gloves (Yellow)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,4398ce1a-e6ee-4da4-ad0d-7abfab41020c,0XPd5RzNJEepHztqwAznHQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1044, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2603, - "FriendlyName": "Bike Gloves (Navy)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,XNq4Cns4lEGydtktdsXlmQ,0XPd5RzNJEepHztqwAznHQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1043, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2604, - "FriendlyName": "Bike Gloves (Black)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,83522c12-9549-4d74-8c87-bae210bcd2bf,0XPd5RzNJEepHztqwAznHQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1042, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2552, - "FriendlyName": "Deep Sea Diver Suit (Leviathan)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "c3745cee-d87e-4a23-b6e2-64ebf05c8b11,CahBzgN3D0y46AQsvGC14A,EiIow5mS80qpoS10r1ZdvQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 6500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1081, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 5850, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2577, - "FriendlyName": "Deep Sea Diver Tank (Leviathan)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "8d97303c-5138-4da1-a74d-378da19d11cb,CahBzgN3D0y46AQsvGC14A,ZpyoWbO6GkGglXlMuYUARw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1087, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2596, - "FriendlyName": "Deep Sea Diver Helmet (Leviathan)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "4fcb5b84-13a9-43e6-9680-72b17874ae53,CahBzgN3D0y46AQsvGC14A,a3Er_BCApUiPtBaGkSH9LA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 9500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1084, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 8550, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2609, - "FriendlyName": "Deep Sea Diver Gloves (Leviathan)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "b1c3ccc8-91d7-434e-b9cc-bd632fffc01b,CahBzgN3D0y46AQsvGC14A,0p5N9U5qokKdQhW07yYLGQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1082, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2581, - "FriendlyName": "Space Visor (Nebula)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "b89be768-a169-4b24-8022-751e7b817865,FFIpxInE-EKbk2GY-pIkyg,uB4gFxfrh0W5OtkmZdFN1Q,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 9500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1162, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 8550, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2551, - "FriendlyName": "Rec Room Hoodie (Pink)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,TEgugZRs80iJbhL87RdYwg,oHKhT-GTx0iFWrrlz9s6Tw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1132, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2586, - "FriendlyName": "Shutter Shades (Pink)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,ZpcM5H2Q1UCt0hh82nSu9w,tqyzKPdDwkWq3jfZ8jZdaA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 6000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-04-11T21:00:00Z", - "SaleEndDate": "2021-04-14T21:00:00Z" - } - } - ], - "PurchasableItemId": 1151, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 5400, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2572, - "FriendlyName": "Royal Cape (Purple)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,mqdncbYcuUSGFvFqEU0z4A,HTU3Wp_ri0GNYGFSezFHSg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2213, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2536, - "FriendlyName": "Royal Tabard (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,rCeRk8Pdl0W5M47JAQPhpw,50NUFrDxbUKmXbyAHBenvQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 49, - "ItemSetFriendlyName": "Royal Tabards" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2214, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2538, - "FriendlyName": "Royal Dress (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,t1MeoroFOUioYmPfT9mCeA,PoMG28QAskagun1LSd4C_A,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 50, - "ItemSetFriendlyName": "Royal Dresses" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2215, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2378, - "FriendlyName": "D4 Skin (Bone)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[Sandbox_D4]", - "EquipmentModificationGuid": "x3Cv42hIkkaNIy7fHZiWYg", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1072, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2382, - "FriendlyName": "D6 Skin (Bone)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[Sandbox_D6]", - "EquipmentModificationGuid": "Fn0gcj17c06tA9s98CKwAg", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1075, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2386, - "FriendlyName": "D8 Skin (Bone)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[Sandbox_D8]", - "EquipmentModificationGuid": "d_CbCG3DmUCtWGWYHioghg", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1078, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2390, - "FriendlyName": "D10 Skin (Bone)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[Sandbox_D10]", - "EquipmentModificationGuid": "GjQwBmNnK0ukv0hEEHK8tw", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1063, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2394, - "FriendlyName": "D12 Skin (Bone)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[Sandbox_D12]", - "EquipmentModificationGuid": "heFLfpPNd0-nhLOFpUCnpA", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1066, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2398, - "FriendlyName": "D20 Skin (Bone)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[Sandbox_D20]", - "EquipmentModificationGuid": "gXOOKrQEYE-FmS3uXWj1hA", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1069, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2760, - "FriendlyName": "Grillmaster Apron (Tan)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1278, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2771, - "FriendlyName": "Grillmaster Mitt (Red)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "q7pSsRMNHkqEJmYHuhhG6g,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1284, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2739, - "FriendlyName": "Notes Headphones (Black)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1296, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2250, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2748, - "FriendlyName": "Notes Headphones (Techno)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,ns5tIRishUOp-nYqLedcwA,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1300, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2753, - "FriendlyName": "Notes Headphones (Neon Void)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,Uz2hrptCa0erjqyPoiZxew,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 10000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1304, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 9000, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2543, - "FriendlyName": "Anime Skirt (Teal)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,VQjkyb5aoEKHKo_eZsq9ug,2UNd6eViFUO359xjSiuu2A,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 6500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1022, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 5850, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2595, - "FriendlyName": "Anime Tiara (Teal)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,lhfOKGDAgEKWucerCmH7Fg,mG60EPIQIkaJNgOkonVmZg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 8500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1023, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 7650, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2614, - "FriendlyName": "Anime Glove (Teal)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,zaSTWOUy_k6cnoVVYzypWg,ZtCqMnFTQUWv2h0MfZ4m6A,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1018, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2576, - "FriendlyName": "Anime Bow (Teal)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,Ot9EG-FfKEauT0u6pSZuWg,M5z2wk-GDkOAjvZzqsfcNQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1012, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2560, - "FriendlyName": "Bowling Shirt (Flames, Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,M4765UHzsUeNTwH-Pcxp1g,5RUG6i2Mx0-55IO-IlhUdQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-05-09T21:00:00Z", - "SaleEndDate": "2021-05-10T21:00:00Z" - } - } - ], - "PurchasableItemId": 1048, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2555, - "FriendlyName": "Bowling Shirt (Split)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,yZR5aX3gQ0WpRUT6cfK1cA,VO_3cgqQqUOTz30TVUxrFA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1053, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2562, - "FriendlyName": "Bowling Shirt (Spared)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,kLyM-6otSUy2ql5SEmnF9Q,b-IM3eYMJUa40395O5XeLg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1049, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2558, - "FriendlyName": "Bowling Shirt (Sleeper)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,XrSL-v2MbkK0md-FMOweOA,IWg9wuda4kaCilJk8JQpTQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1046, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2763, - "FriendlyName": "Lifeguard Uniform", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "rJ9zPPGdlk2i24sxLfkqng,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1279, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2758, - "FriendlyName": "Snorkel", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "22pyI3Kz-UullhcebC6DLQ,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-07-11T21:00:00Z", - "SaleEndDate": "2021-07-12T21:00:00Z" - } - } - ], - "PurchasableItemId": 1280, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1350, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2565, - "FriendlyName": "Beekeeper Suit (Purple)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "1ebbfdfc-f72b-4d70-99d4-4d527f896aa7,lBe3yxuE40eBmTrnEHBqQQ,afd88a79-7f03-40f6-bcb4-c247dd86edc4,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1034, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2700, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2599, - "FriendlyName": "Beekeeper Veil (Purple)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "96bc2f9f-ce3a-4c4c-b92c-cfed4ed4594f,lBe3yxuE40eBmTrnEHBqQQ,e4b53a9a-ac95-49ae-bf68-615bb23fa075,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1039, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4050, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2600, - "FriendlyName": "Beekeeper Gloves (Purple)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "4025e4c4-abaa-4729-a2a3-a7175313e5ed,lBe3yxuE40eBmTrnEHBqQQ,1f18670d-df52-4d2b-8009-a32cf7c67b40,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1035, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2756, - "FriendlyName": "Unicorn Horn (Harmony)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "2caHvVQ1vECrPv-YcdxdyA,FNe9LkWJMUeC3frYJMyEaQ,nW_fBsuZA0OfIjTMXm6ZCA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 9500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1311, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 8550, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2754, - "FriendlyName": "Soda Clerk Hat (Red)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1285, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2759, - "FriendlyName": "Soda Clerk Bow Tie (Red)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,e4IDo-fuH0C9YByzcX5k-A,qCIoeLQw-Uq-SKIetIgIpA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1286, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2764, - "FriendlyName": "Soda Clerk Uniform (Red)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1277, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2550, - "FriendlyName": "Rec Room Hoodie (Green)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,ytmSzjhCr0Sm58MSNbwJUA,oHKhT-GTx0iFWrrlz9s6Tw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1133, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2584, - "FriendlyName": "Shutter Shades (Yellow)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,nO-YacKU1kmLjTFAAqNeYQ,tqyzKPdDwkWq3jfZ8jZdaA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 6000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-04-11T21:00:00Z", - "SaleEndDate": "2021-04-14T21:00:00Z" - } - } - ], - "PurchasableItemId": 1153, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 5400, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1766, - "FriendlyName": "Baseball Jersey (Green)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,9967ce54-c2b7-437a-946e-11f8ee6d6fdd,ca37823a-b8f3-4414-b38b-de0dc7fa4295,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 357, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2842, - "FriendlyName": "Stunt Shades (Pink)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "d57cf97e-b5d2-4e47-8231-a226a161f6e3,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-08-15T21:00:00Z", - "SaleEndDate": "2021-08-16T21:00:00Z" - } - } - ], - "PurchasableItemId": 1379, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1800, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2846, - "FriendlyName": "Stunt Shades (Yellow)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "f684d86f-4a75-4a9a-bc0a-cf58f36c91c5,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-08-15T21:00:00Z", - "SaleEndDate": "2021-08-16T21:00:00Z" - } - } - ], - "PurchasableItemId": 1378, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1800, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2876, - "FriendlyName": "Runner Wrist Guard (Green)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,sX0ZZDcCUkyFSJISfvq0vg,rgzG7sfrlkqd9EO13LNmpQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1385, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2849, - "FriendlyName": "Runner Harness (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,RfZNDPUok0WyQEa3Ko08ow,ovy_3j_qwE-7mmks1Z47ig,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1381, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2852, - "FriendlyName": "Runner Harness (Orange)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,sX0ZZDcCUkyFSJISfvq0vg,ovy_3j_qwE-7mmks1Z47ig,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1380, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2858, - "FriendlyName": "Runner Helmet (Orange)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,Euf1h1qsZ02evDsyoHYbPQ,PZHohDVX0U2frX13N4KYDQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1376, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2855, - "FriendlyName": "Runner Helmet (Pink)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,zlqLrGEa8E2WW9ey_szREA,PZHohDVX0U2frX13N4KYDQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1377, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2879, - "FriendlyName": "Runner Wrist Guard (Pink)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,RfZNDPUok0WyQEa3Ko08ow,rgzG7sfrlkqd9EO13LNmpQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1384, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2786, - "FriendlyName": "RecFly Vest (Black)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,kkvNbVRjcEKtChpy3W1bqQ,nbhzQy_Hdkeohh4S1IezwA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1316, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2675, - "FriendlyName": "Trucker Hat (Pickup)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "ReqOfohe6UamzaiHG1x3Ow,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1264, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2743, - "FriendlyName": "Notes Headphones (Orange)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,JWBK5v78Y0uRVEXlD-Qk6Q,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-08-01T21:00:00Z", - "SaleEndDate": "2021-08-02T21:00:00Z" - } - } - ], - "PurchasableItemId": 1298, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2250, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2747, - "FriendlyName": "Notes Headphones (Lounge)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,nX7krD8e2km_ZlOLWcoxdQ,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-08-01T21:00:00Z", - "SaleEndDate": "2021-08-02T21:00:00Z" - } - } - ], - "PurchasableItemId": 1302, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2752, - "FriendlyName": "Notes Headphones (Neon Dawn)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,d9mwowRelE2lDKEA0UQMZQ,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 10000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-08-01T21:00:00Z", - "SaleEndDate": "2021-08-02T21:00:00Z" - } - } - ], - "PurchasableItemId": 1306, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 9000, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2790, - "FriendlyName": "Big Head Bow (Orange)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1320, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2791, - "FriendlyName": "Big Head Bow (Purple)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,8iZO162KNUiMC8l_z3OC_A,3DdSzSqV1UG5AtPr8ro3Kg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1321, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2792, - "FriendlyName": "Big Head Bow (Black)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,f_c50saStkaGJuhLjJ9lfA,3DdSzSqV1UG5AtPr8ro3Kg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1322, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2793, - "FriendlyName": "Big Head Bow (Pink)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,FUP4iRnoc0ikNmjrFD06lg,3DdSzSqV1UG5AtPr8ro3Kg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1323, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2537, - "FriendlyName": "Royal Tabard (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,5TJPDmvEBEOkP82ZWLFqtg,50NUFrDxbUKmXbyAHBenvQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 49, - "ItemSetFriendlyName": "Royal Tabards" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2216, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2539, - "FriendlyName": "Royal Dress (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,0ps19D7b_U2iejdKQFORyA,PoMG28QAskagun1LSd4C_A,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 50, - "ItemSetFriendlyName": "Royal Dresses" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2217, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2957, - "FriendlyName": "Graphic Cap (Goblins)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,pqLkLbri9Eu48eryQIFGMg,_yznwUwL80ejrS3vki0IKg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2218, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2958, - "FriendlyName": "Graphic Cap (High Fashion)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "474db08a-d4dc-4625-9f5a-1a6ae0b70827,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1432, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1350, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2960, - "FriendlyName": "Graphic Cap (Hyper Ramen)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "474db08a-d4dc-4625-9f5a-1a6ae0b70827,cpTKHXjj0kulivZCKVQqiA,Mrf17aidXEeCF-fFURUUcQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-06-20T21:00:00Z", - "SaleEndDate": "2021-06-21T21:00:00Z" - } - } - ], - "PurchasableItemId": 1434, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3150, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2956, - "FriendlyName": "Baseball Cap (White, Red, Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,nZor-clxlkm8EO9Gco0Otg,r_GLekt6mkWxXw8zPPR8Mg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1436, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2962, - "FriendlyName": "Round Glasses", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "bc7299ac-be2b-404f-b8e6-402e2c0660f0,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1431, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2932, - "FriendlyName": "Bowler Hat", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "bfd9c70b-9ad8-4f47-a840-c03231f9ad41,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1437, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2946, - "FriendlyName": "Trucker Jacket (Blue)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1443, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2950, - "FriendlyName": "Trucker Jacket (Green)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,bgRKH1wfqkWVHcuSnFYnlQ,sxWOOK1RwUOp5YqZ7a36xg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1446, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2949, - "FriendlyName": "Trucker Jacket (Tan)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,o2WfRyjJy0CKoUg8YIxNjQ,sxWOOK1RwUOp5YqZ7a36xg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1447, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2947, - "FriendlyName": "Trucker Jacket (White)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,yA0KhVg19kWqG1UkyxQogQ,PMGQ8fLc2UuJXMy42Ati-w,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1445, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2843, - "FriendlyName": "Chef Hat (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "af33bdb1-b7fa-4fe6-b37a-b1fe6a420879,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1460, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1350, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2847, - "FriendlyName": "Chef Coat (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ff5c62b3-4f41-4acd-bfd8-8db00de4f36c,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1459, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2933, - "FriendlyName": "Turtleneck (Black)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1448, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2934, - "FriendlyName": "Turtleneck (Orange)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,9b9t8_aKH0-gQXMhZycaOA,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1450, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2936, - "FriendlyName": "Turtleneck (Green)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,Jt0QqNrAp0qzUR_RQoivVg,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1449, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2937, - "FriendlyName": "Turtleneck (Red)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,lBePHNL9LkyaAjEFyFE8Sw,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1451, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2938, - "FriendlyName": "Turtleneck (Yellow)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,G4HIPUjekUigiU0-Kr9mdA,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1453, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2951, - "FriendlyName": "Trucker Cuff (Blue)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1454, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2952, - "FriendlyName": "Trucker Cuff (White)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,yA0KhVg19kWqG1UkyxQogQ,yBNsYcZXzEiuR0u3tWnnWQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1456, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2954, - "FriendlyName": "Trucker Cuff (Tan)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,o2WfRyjJy0CKoUg8YIxNjQ,sHyNs-dpc0-_Ah-HJVczcw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1458, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2955, - "FriendlyName": "Trucker Cuff (Green)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,bgRKH1wfqkWVHcuSnFYnlQ,sHyNs-dpc0-_Ah-HJVczcw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1457, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3025, - "FriendlyName": "Fancy Bubbly", - "Tooltip": null, - "ConsumableItemDesc": "iiGTvhOCHkOTNJhb16Zbyw", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1554, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3014, - "FriendlyName": "Formal Necklace (Gold)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5e9bbda6-d681-42b1-9cc4-5758acf34bc0,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-06-13T21:00:00Z", - "SaleEndDate": "2021-06-16T21:00:00Z" - } - } - ], - "PurchasableItemId": 1518, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3013, - "FriendlyName": "Formal Necklace (Silver)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "b95678aa-351a-4929-8a0e-0274a183eb18,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-06-13T21:00:00Z", - "SaleEndDate": "2021-06-16T21:00:00Z" - } - } - ], - "PurchasableItemId": 1519, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3018, - "FriendlyName": "Party Hat (Shindig)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "8df990d9-141a-4757-b4f2-138d5e68ab74,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1520, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3006, - "FriendlyName": "Formal Dress (Gold Sequins)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "9a366f8b-ea5b-49ae-a98c-f6b282e9bf14,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-05-16T21:00:00Z", - "SaleEndDate": "2021-05-17T21:00:00Z" - } - } - ], - "PurchasableItemId": 1511, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2700, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3007, - "FriendlyName": "Formal Dress (Silver Sequins)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "73c0e2ba-cba1-482a-89d5-1508997aceeb,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1513, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2700, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3011, - "FriendlyName": "Business Tie (Gold Sequins)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "05ec4e87-088f-4281-a118-2e63c2585200,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1516, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3009, - "FriendlyName": "Business Tie (Silver Sequins)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "0d4e7ebe-efd9-4e68-9900-5645916e7596,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-09-12T21:00:00Z", - "SaleEndDate": "2021-09-13T21:00:00Z" - } - } - ], - "PurchasableItemId": 1517, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3012, - "FriendlyName": "Bow Tie (Gold Sequins)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "6dd261d8-9806-4dac-81c4-a58f6d6a7f9a,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-05-16T21:00:00Z", - "SaleEndDate": "2021-05-17T21:00:00Z" - } - } - ], - "PurchasableItemId": 1514, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3010, - "FriendlyName": "Bow Tie (Silver Sequins)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "988e4069-4341-428b-bbf5-023309891385,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-05-16T21:00:00Z", - "SaleEndDate": "2021-05-17T21:00:00Z" - } - } - ], - "PurchasableItemId": 1515, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3020, - "FriendlyName": "Ski Buddy Goggles (Chill)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "5fwjFQoC_Uu9ChvF6uNGZw,fXNkMWFMV0aXalK_y_8SHw,SSY8ZYMgaE2Bl4oFmMjKQA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1529, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3022, - "FriendlyName": "Ski Buddy Jacket (Chill)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "6RhwWExXekaYpK0NGHSXGQ,fXNkMWFMV0aXalK_y_8SHw,HQQWccdyakaEmntPhvC6CQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1530, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2593, - "FriendlyName": "Anime Tiara (Orange)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,f0pjsV0XMUWoE_z2kqOlSA,mG60EPIQIkaJNgOkonVmZg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 8500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1025, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 7650, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2541, - "FriendlyName": "Anime Skirt (Orange)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,hYu9itGe1Ee5Neanhj9VtQ,2UNd6eViFUO359xjSiuu2A,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 6500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1020, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 5850, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2574, - "FriendlyName": "Anime Bow (Dark Blue)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,S9uymuvraUCOM8gmB7bnEA,M5z2wk-GDkOAjvZzqsfcNQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1011, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2616, - "FriendlyName": "Anime Glove (Orange)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,xpkEQ6yjhU-WfFPSjvPdHg,ZtCqMnFTQUWv2h0MfZ4m6A,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1016, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2835, - "FriendlyName": "Mobster Hat (Purple)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,PZx7Iae0pkiDaxT9t3-vgg,d759c88d-a159-4c26-86dd-b054bb05b3ed,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1365, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2837, - "FriendlyName": "Mobster Suit (Purple)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,newGzX_zA0eGUX3Iayq5Ag,6Jv4AJGBYUGP_n4sDcz2Kw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1367, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2838, - "FriendlyName": "Mobster Cuffs (Purple)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "08d56627-4500-4724-8692-a23c96ddb3ec,newGzX_zA0eGUX3Iayq5Ag,QBzMp7MdAUOLIofvddui1A,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1368, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3028, - "FriendlyName": "Bear Hug Hat (White)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "ef7771eb-c5f3-44fd-8c27-f581b035ef10,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1556, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3052, - "FriendlyName": "Knight Helmet (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,PMa9370LPEig_7pKwCceEQ,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 45, - "ItemSetFriendlyName": "Knight (Green)" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2219, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1350, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3068, - "FriendlyName": "Knight Gauntlet (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,PMa9370LPEig_7pKwCceEQ,fd67ec40-f898-4df6-b846-8bf350f362b8,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 45, - "ItemSetFriendlyName": "Knight (Green)" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2220, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3058, - "FriendlyName": "Knight Cape (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,PMa9370LPEig_7pKwCceEQ,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 45, - "ItemSetFriendlyName": "Knight (Green)" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2221, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3150, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3051, - "FriendlyName": "Archer Hat (Grey)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,61VZkFjB402brzWm4UsftA,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 46, - "ItemSetFriendlyName": "Archer (Grey)" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2222, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1350, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3067, - "FriendlyName": "Archer Gloves (Grey)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,8hUBfmq28EixYjv92Xcrgg,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 46, - "ItemSetFriendlyName": "Archer (Grey)" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2223, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3053, - "FriendlyName": "Royal Crown (White)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "40734c4d-e1fe-426c-8921-930f7463d8e8,wCe2yC2U1kyYvPd8Z1rX2w,hCeaYHy1TE2s6rTPxAQP9A,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 9000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2224, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 8100, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3072, - "FriendlyName": "Regal Crown (White)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,Zljmtj5WqUaRvB3XQTgJXg,XFuSiGupZ02Fut1Dxum_Iw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 9000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2225, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 8100, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3062, - "FriendlyName": "Knight Armor (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,PMa9370LPEig_7pKwCceEQ,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 45, - "ItemSetFriendlyName": "Knight (Green)" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2226, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1800, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3061, - "FriendlyName": "Archer Tunic (Grey)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,61VZkFjB402brzWm4UsftA,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 46, - "ItemSetFriendlyName": "Archer (Grey)" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2227, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1800, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3057, - "FriendlyName": "Archer Quiver (Grey)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,imDGL6dhrka-KliYlfpdgw,6094370d-5e28-473a-b422-f3f1c75d5db8,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 46, - "ItemSetFriendlyName": "Archer (Grey)" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2228, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3150, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3060, - "FriendlyName": "Royal Cape (Green)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,_9QlnTPXuEO5OQ3H0CwFkA,HTU3Wp_ri0GNYGFSezFHSg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2229, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3059, - "FriendlyName": "Royal Cape (Blue)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,MbusQ9bte0i9zirlxtNkSQ,HTU3Wp_ri0GNYGFSezFHSg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2230, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3055, - "FriendlyName": "Witch Hunter Hat (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,aBQ3R9boek-mYeSYSNvDbQ,32d91d32-b102-4093-927a-6dc3ac2e9e86,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 47, - "ItemSetFriendlyName": "Witch Hunter (Blue)" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2231, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1350, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3056, - "FriendlyName": "Wizard Hat (Purple)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,d3KmqVuMQkCYK6sVTMOTOA,abdf525b-b871-41be-a1c8-810f49740ad4,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 48, - "ItemSetFriendlyName": "Wizard (Purple)" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2232, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1350, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3070, - "FriendlyName": "Wizard Bracers (Purple)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,d3KmqVuMQkCYK6sVTMOTOA,47514b9b-0d17-4727-97ed-dab67e7fe031,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 48, - "ItemSetFriendlyName": "Wizard (Purple)" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2233, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3073, - "FriendlyName": "Regal Crown (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,rmq1AOQvtUGOHvbPUximwg,XFuSiGupZ02Fut1Dxum_Iw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 9000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2234, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 8100, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3054, - "FriendlyName": "Royal Crown (Black)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "40734c4d-e1fe-426c-8921-930f7463d8e8,QkfA71-1z0qOiZAVrbzhtA,hCeaYHy1TE2s6rTPxAQP9A,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 9000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2235, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 8100, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3071, - "FriendlyName": "Regal Crown (Gold)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 9000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2236, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 8100, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3065, - "FriendlyName": "Witch Hunter Torso (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,aBQ3R9boek-mYeSYSNvDbQ,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 47, - "ItemSetFriendlyName": "Witch Hunter (Blue)" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2237, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2250, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3066, - "FriendlyName": "Wizard Robes (Purple)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,d3KmqVuMQkCYK6sVTMOTOA,8768aa33-b014-4062-b323-b146dd7d78d2,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 48, - "ItemSetFriendlyName": "Wizard (Purple)" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2238, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2250, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3069, - "FriendlyName": "Witch Hunter Gloves (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,aBQ3R9boek-mYeSYSNvDbQ,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 47, - "ItemSetFriendlyName": "Witch Hunter (Blue)" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2239, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3063, - "FriendlyName": "Royal Dress (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,pjkTGVHkIE-BzCVi1KAesQ,PoMG28QAskagun1LSd4C_A,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 50, - "ItemSetFriendlyName": "Royal Dresses" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2240, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3064, - "FriendlyName": "Royal Tabard (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,s2kCppLsN0uY7Hy6qjQc-g,50NUFrDxbUKmXbyAHBenvQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 49, - "ItemSetFriendlyName": "Royal Tabards" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2241, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2380, - "FriendlyName": "D4 Skin (Pewter)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[Sandbox_D4]", - "EquipmentModificationGuid": "WxWaXY61mUuNe_f6SgECnA", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1073, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2384, - "FriendlyName": "D6 Skin (Pewter)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[Sandbox_D6]", - "EquipmentModificationGuid": "5U_KiCi_90-eWucQ68VdZQ", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1076, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2388, - "FriendlyName": "D8 Skin (Pewter)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[Sandbox_D8]", - "EquipmentModificationGuid": "77cRA0O4GUqd6nr9QLefQA", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1079, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2396, - "FriendlyName": "D12 Skin (Pewter)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[Sandbox_D12]", - "EquipmentModificationGuid": "2gYYjbVGqkiOefY2xjOxiQ", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1067, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2400, - "FriendlyName": "D20 Skin (Pewter)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[Sandbox_D20]", - "EquipmentModificationGuid": "H3vrSi45AU6lshChLnr19Q", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1070, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3050, - "FriendlyName": "Winter Cloak (Nightwatch)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "b9d08f9a-b23d-4d7e-978b-a0cd8adbfe9c,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2242, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4050, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3090, - "FriendlyName": "Server Apron (Red)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1612, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3091, - "FriendlyName": "Server Apron (Blue)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,HdwZhjrqxE6wuf68MnDhDw,f5z_jhdcqEGjo-1WUmldaw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1613, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3094, - "FriendlyName": "Server Dress (Blue)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1616, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3095, - "FriendlyName": "Server Dress (Red)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,GQSpXmD0B02_gwzpq6StFA,ORmS9HkfoUeFuO4RhqcW7g,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1617, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3026, - "FriendlyName": "Popcorn", - "Tooltip": "", - "ConsumableItemDesc": "QRx0aSTT9keMFdAJMQHdTg", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 52, - "ItemSetFriendlyName": "Snickety Snacks" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1594, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3102, - "FriendlyName": "Paintball Belt", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "eda29bce-5a07-4439-a2a7-cafa11e2ed62,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1599, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3033, - "FriendlyName": "Froggy Headband", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "cec9cfac-a45b-4edb-b26d-7453cc2bfaf2,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": true, - "Rarity": 50, - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1585, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1350, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3109, - "FriendlyName": "Top Hat (Green)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "d3b8bd7b-ca9a-4f5d-b115-3659dc294a03,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 6500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1622, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 5850, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3107, - "FriendlyName": "Bow Tie (Green Sequins)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "86af3a97-18d8-4dda-a2f2-cfd3b4224254,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1620, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3108, - "FriendlyName": "Big Head Bow (Green Sequins)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "66f8f55d-cad4-4afb-93e8-b6bdf04b37b3,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1621, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2557, - "FriendlyName": "Bowling Shirt (Striker)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,KqjQ1xRpokGLKp9GVN1EFA,VO_3cgqQqUOTz30TVUxrFA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1051, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2935, - "FriendlyName": "Turtleneck (White)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,Zz4XatKfUEapReRAQHxKKA,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1452, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2703, - "FriendlyName": "Collared Shirt (Plaid)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,ojvIFCTpJkeegestF065wA,10fYSIBytk-yUjveDa407w,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1218, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2948, - "FriendlyName": "Trucker Jacket (Black)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,P9bBSL0YLEyjN8PxMfgbKQ,PMGQ8fLc2UuJXMy42Ati-w,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1444, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3115, - "FriendlyName": "Butterfly Wings (Cool Mint)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "fc96ea5d-b49b-479b-a963-92f1eab44b2c,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-08-29T21:00:00Z", - "SaleEndDate": "2021-09-01T21:00:00Z" - } - } - ], - "PurchasableItemId": 1631, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3116, - "FriendlyName": "Butterfly Wings (The Blue One)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "27c2eb7f-9fac-4c42-90c7-44e7a33d5303,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": true, - "Rarity": 50, - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1630, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3117, - "FriendlyName": "Butterfly Wings (Monarch)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "c506feae-be73-437b-b18a-1152bb9906e9,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1629, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3110, - "FriendlyName": "Raincoat (Yellow)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1627, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3111, - "FriendlyName": "Raincoat (Blue)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,GH9q8_0O9EqjGdz7lGWD2g,T7zwcIIc8Ee3ud8a2JCuwQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1628, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3112, - "FriendlyName": "Rain Hat (Yellow)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "2bd53190-46f8-4956-9388-87c5a04efc4f,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1625, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3113, - "FriendlyName": "Rain Hat (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "2bd53190-46f8-4956-9388-87c5a04efc4f,v3af60p1Q02NpdCqIRO9lw,1hVOI7IuY0mKvtr2PZXLww,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1626, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2750, - "FriendlyName": "Notes Headphones (Neon Sky)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,2sf-FU4WckGBDWUkVz4z1g,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 10000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-05-02T21:00:00Z", - "SaleEndDate": "2021-05-03T21:00:00Z" - } - } - ], - "PurchasableItemId": 1305, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 9000, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2745, - "FriendlyName": "Notes Headphones (Chillout)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,4scG_UBlzE-5DWRhSrtm6g,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-05-02T21:00:00Z", - "SaleEndDate": "2021-05-03T21:00:00Z" - } - } - ], - "PurchasableItemId": 1301, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2741, - "FriendlyName": "Notes Headphones (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,8ANbOhNnO0yLQOCIBsDwfg,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-05-02T21:00:00Z", - "SaleEndDate": "2021-05-03T21:00:00Z" - } - } - ], - "PurchasableItemId": 1297, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2250, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3046, - "FriendlyName": "Quilted Vest (Black)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1588, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3047, - "FriendlyName": "Quilted Vest (Green)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,QBglgj80zkuvUkk55Y5Feg,ACrBLiAIgEur9V6l_B0CvA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1589, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3048, - "FriendlyName": "Quilted Vest (Orange)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,-HYrY2A5Tk2UWMi4_hmYbg,ACrBLiAIgEur9V6l_B0CvA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1590, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3049, - "FriendlyName": "Quilted Vest (Purple)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,IjRMopsYlUqSE6327I9TIQ,ACrBLiAIgEur9V6l_B0CvA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1591, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2972, - "FriendlyName": "Formal Vest (Black)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1537, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2973, - "FriendlyName": "Formal Vest (Red)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,ffHKr5EcIU24PbAtWSnalw,bVrkIyADCUiGNYWdmP_HPw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1538, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3004, - "FriendlyName": "Formal Dress (Red)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "30380607-8b54-4b63-81d3-cb3f08e452c1,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1525, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3005, - "FriendlyName": "Formal Dress (Black)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "30380607-8b54-4b63-81d3-cb3f08e452c1,rcdwgNvO30Cvx2ycE1GfHw,JmFzNL5v_0q1p0bgoOlBpQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1526, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2953, - "FriendlyName": "Trucker Cuff (Black)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,P9bBSL0YLEyjN8PxMfgbKQ,yBNsYcZXzEiuR0u3tWnnWQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1455, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3131, - "FriendlyName": "Rec Room Hoodie (Galaxy)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5362d685-fc55-4b43-85a5-cc3d6cad3f69,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": true, - "Rarity": 50, - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1649, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2250, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3170, - "FriendlyName": "Nightcap (Zonked)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1724, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1350, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3171, - "FriendlyName": "Nightcap (Zzz)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,2vawoQvJPUegnClmr2RNAQ,RR69IGV4j0Sd2xtmyN5wFg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-04-25T21:00:00Z", - "SaleEndDate": "2021-04-26T21:00:00Z" - } - } - ], - "PurchasableItemId": 1726, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1350, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3172, - "FriendlyName": "Nightcap (Dozy)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,kIcd-yEnsEqxoeogquvmRw,RR69IGV4j0Sd2xtmyN5wFg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1725, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1350, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3173, - "FriendlyName": "Nightcap (Sandman)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,qHyKfCsrbUqSWomjLXf7Hw,RR69IGV4j0Sd2xtmyN5wFg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1727, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1350, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3166, - "FriendlyName": "Night Coat (Zzz)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-04-25T21:00:00Z", - "SaleEndDate": "2021-04-26T21:00:00Z" - } - } - ], - "PurchasableItemId": 1728, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3167, - "FriendlyName": "Night Coat (Dozy)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,uDJ5ZqU1f0CiOAH8WY22Yw,KOCzRE4a6EKb3_NVOI_lcg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1730, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3169, - "FriendlyName": "Night Coat (Zonked)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,_jkPDSXFUkSU_yOfutQ7BA,KOCzRE4a6EKb3_NVOI_lcg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1731, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3168, - "FriendlyName": "Night Coat (Sandman)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,j66We9SYr0SNQ2ufZqIqhA,KOCzRE4a6EKb3_NVOI_lcg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1729, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2582, - "FriendlyName": "Space Visor (Quasar)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "b89be768-a169-4b24-8022-751e7b817865,SXG9rdEkxkOR31Nk0aTOww,uB4gFxfrh0W5OtkmZdFN1Q,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 9500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1159, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 8550, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3133, - "FriendlyName": "International Thief Coat (Mastermind)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1650, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3134, - "FriendlyName": "International Thief Coat (Spy)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,YB7kXMyLJ0mF_5WidhmH8A,SeA8s77hr0K6DRZyVlRTCg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1651, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3135, - "FriendlyName": "International Thief Coat (Rogue)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,bQyNgFWAe0SPttPri6hxyg,SeA8s77hr0K6DRZyVlRTCg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1652, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3136, - "FriendlyName": "International Thief Coat (Outlaw)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,wRPoHTsXFESK5pjkxVMqGA,SeA8s77hr0K6DRZyVlRTCg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1653, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3137, - "FriendlyName": "International Thief Hat (Mastermind)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1640, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3138, - "FriendlyName": "International Thief Hat (Spy)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,RBRFHN8_rkuImbyDAfcHWw,BOB_mAXdA0u2khOH5qjqXQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1641, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3139, - "FriendlyName": "International Thief Hat (Rogue)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,QJSPgq2KXEOWNynY8uqQvA,BOB_mAXdA0u2khOH5qjqXQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1642, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3140, - "FriendlyName": "International Thief Hat (Outlaw)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,4RH8_Z1mqU-JIVvx31wOsA,BOB_mAXdA0u2khOH5qjqXQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1643, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3141, - "FriendlyName": "International Thief Gloves (Mastermind)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1654, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3142, - "FriendlyName": "International Thief Gloves (Spy)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,DtFYrQwaCky5C1ZycqZbiQ,egpzBs77Q0CpDndZHqXOog,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1655, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3143, - "FriendlyName": "International Thief Gloves (Rogue)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,9SAPupKy_EO6YeG0SMkI5A,egpzBs77Q0CpDndZHqXOog,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1656, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3144, - "FriendlyName": "International Thief Gloves (Outlaw)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,hiMYlmk5sEqh-sElOY3A9g,egpzBs77Q0CpDndZHqXOog,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1657, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3149, - "FriendlyName": "Beanie (Gray)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,SeVmHtrMS0y7gKCYkHcrOA,uWXtz0WaO0qJ1W4TfWnLqg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1717, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3150, - "FriendlyName": "Beanie (Blue)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,uDcJZClcFkiNdkEEh9IIyA,uWXtz0WaO0qJ1W4TfWnLqg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1715, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3153, - "FriendlyName": "Beanie (Pink)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,F5vJzMfNB0Ob6Abjadho7Q,uWXtz0WaO0qJ1W4TfWnLqg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1720, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3154, - "FriendlyName": "Beanie (White)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,vbOUaJsGHEaSfQCivNcMWg,uWXtz0WaO0qJ1W4TfWnLqg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1723, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3163, - "FriendlyName": "Brimmed Beanie (Gray)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,t2bByt5oUEG90PMMePCP6A,7nBHNMZhAE-t9rLCYO_STA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1706, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3158, - "FriendlyName": "Brimmed Beanie (Blue)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,-XSM6ZcSjE-vrWL7jyF4fQ,7nBHNMZhAE-t9rLCYO_STA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1705, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3164, - "FriendlyName": "Brimmed Beanie (Pink)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,m7KXVnULz0iHvKfCFzFoyw,7nBHNMZhAE-t9rLCYO_STA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1709, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3160, - "FriendlyName": "Brimmed Beanie (White)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,9tTuREkoQkW0ycqOjWXsiA,7nBHNMZhAE-t9rLCYO_STA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1712, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3217, - "FriendlyName": "Folded Bandana (Red) ", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "49800740-33d6-4280-aefb-3497597c6366,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1735, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3214, - "FriendlyName": "Gathered Shirt (White)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "cf1a6f8f-1649-423b-b513-b8d40d242b1f,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1736, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3180, - "FriendlyName": "Fanny Pack (Cosmic)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "4ee2133d-c419-4fbc-9117-746d756a250d,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": true, - "Rarity": 50, - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1668, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3092, - "FriendlyName": "Server Apron (Yellow)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,b7oobDcDtE-69fhM-5g5AQ,f5z_jhdcqEGjo-1WUmldaw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1614, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3096, - "FriendlyName": "Server Dress (Yellow)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,YvPeCbQS2UOcLjPfoIML_g,ORmS9HkfoUeFuO4RhqcW7g,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1618, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3093, - "FriendlyName": "Server Apron (Green)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,Blev_VFjRUysY_nymGWAVg,f5z_jhdcqEGjo-1WUmldaw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1615, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3097, - "FriendlyName": "Server Dress (Green)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,zGOD45zNAk2i6P_zPsNPfg,ORmS9HkfoUeFuO4RhqcW7g,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1619, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3078, - "FriendlyName": "Soda Clerk Hat (Yellow)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,MxnAq_XOw0uTzQ8IIxqb_Q,sV_ByCug30G1Gw-77KUe1Q,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1609, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3081, - "FriendlyName": "Soda Clerk Uniform (Yellow)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,MxnAq_XOw0uTzQ8IIxqb_Q,MBuxBAIkpkWI26d-arAKQg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1611, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3077, - "FriendlyName": "Soda Clerk Hat (Green)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,oKxmH-1s2EyIDkZoOQSQQw,sV_ByCug30G1Gw-77KUe1Q,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1608, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3203, - "FriendlyName": "Flowing Hair", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5d13a7a2-8213-40e6-90a6-efdd76a3fdcb,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1676, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3118, - "FriendlyName": "Trucker Hat (Flatbed)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "ReqOfohe6UamzaiHG1x3Ow,lDXambcP60CeY2C8qeGDFw,uiAwVt3HK0mRVtWp9B-gTg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1648, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2941, - "FriendlyName": "Trucker Jacket (Sleeveless, Blue)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1438, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2942, - "FriendlyName": "Trucker Jacket (Sleeveless, White)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,yA0KhVg19kWqG1UkyxQogQ,PMGQ8fLc2UuJXMy42Ati-w,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1440, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2944, - "FriendlyName": "Trucker Jacket (Sleeveless, Green)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,bgRKH1wfqkWVHcuSnFYnlQ,sxWOOK1RwUOp5YqZ7a36xg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1442, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2943, - "FriendlyName": "Trucker Jacket (Sleeveless, Black)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,P9bBSL0YLEyjN8PxMfgbKQ,PMGQ8fLc2UuJXMy42Ati-w,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1439, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2772, - "FriendlyName": "Grillmaster Mitt (Blue)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "q7pSsRMNHkqEJmYHuhhG6g,90qQe0AR3kOou0MsuoTmPA,ojCeJ1VwtUelyVqFnUwK5A,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1288, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2773, - "FriendlyName": "Grillmaster Mitt (Black)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "q7pSsRMNHkqEJmYHuhhG6g,hZKPr4sg10SRj9DLuEgOrw,ojCeJ1VwtUelyVqFnUwK5A,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1287, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2761, - "FriendlyName": "Grillmaster Apron (Denim)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,eV3Nv6SWS0yl3f-fgjPb-w,t-ZEWJCgFEyGP2PjNblQMA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1294, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2762, - "FriendlyName": "Grillmaster Apron (White)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,Lxx3q6JRnUW_cPG_kGG4ag,t-ZEWJCgFEyGP2PjNblQMA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1295, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3132, - "FriendlyName": "Dino Hat", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "4abc2ac4-e60c-49b1-9ac8-4d4751ed78ae,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": true, - "Rarity": 50, - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1639, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2977, - "FriendlyName": "Scuba Wetsuit (Orange)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "57552652-d902-43b7-a68e-5c7da87582bc,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1535, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2978, - "FriendlyName": "Scuba Wetsuit (Blue)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "57552652-d902-43b7-a68e-5c7da87582bc,VqtOYBiKRkaSW4xAlBxQgg,xTqtLPQVyEKjAQZYl6HGow,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1536, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2980, - "FriendlyName": "Scuba Tank (Orange)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "5b3dc472-773e-4714-a9d0-7e7bbf6bc695,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1533, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1350, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2981, - "FriendlyName": "Scuba Tank (Blue)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "5b3dc472-773e-4714-a9d0-7e7bbf6bc695,V_duN2oWaUmmao1xHhzCJA,Uvarm_CwTUWWQYZvzI8OaQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1534, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1350, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2983, - "FriendlyName": "Scuba Goggles (Orange)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "9c28e450-8e12-455c-a4c8-c0a2160d4190,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1531, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2984, - "FriendlyName": "Scuba Goggles (Blue)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "9c28e450-8e12-455c-a4c8-c0a2160d4190,DRS8xu3AqUOy2L0RKF3f7g,A7Y52vGIN0ijEKsWR_GQLg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1532, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3015, - "FriendlyName": "Pearl Necklace (Freshwater)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "7be2eafc-21ea-4266-ae64-8888c06798d6,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1523, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1350, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3016, - "FriendlyName": "Pearl Necklace (Saltwater)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "7be2eafc-21ea-4266-ae64-8888c06798d6,sqPMH0LhLkeG-4XkxpU-sw,URWHffwjGUKgXeV01upePA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1524, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1350, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3252, - "FriendlyName": "Mermaid Dress", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "fd7774bb-b29c-40b5-84b1-5c2bbe574255,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 8000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-08-22T21:00:00Z", - "SaleEndDate": "2021-08-23T21:00:00Z" - } - } - ], - "PurchasableItemId": 1746, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 7200, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3254, - "FriendlyName": "Mermaid Crown", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "16359b51-96c4-4be0-b598-319c7549e18a,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 6000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-08-22T21:00:00Z", - "SaleEndDate": "2021-08-23T21:00:00Z" - } - } - ], - "PurchasableItemId": 1744, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 5400, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3260, - "FriendlyName": "Crab Hat", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "3ae0eb82-13ce-43a2-bbc2-99a1cdbec63f,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-08-08T21:00:00Z", - "SaleEndDate": "2021-08-09T21:00:00Z" - } - } - ], - "PurchasableItemId": 1745, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3253, - "FriendlyName": "Shell Necklace", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "c8c00394-4cd9-4bad-9774-a825ded78f80,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-08-22T21:00:00Z", - "SaleEndDate": "2021-08-23T21:00:00Z" - } - } - ], - "PurchasableItemId": 1747, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2794, - "FriendlyName": "Big Head Bow (Teal, Polka Dot)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,GmS0wKwzVEqdf3NoTMHG5A,3DdSzSqV1UG5AtPr8ro3Kg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-07-18T21:00:00Z", - "SaleEndDate": "2021-07-19T21:00:00Z" - } - } - ], - "PurchasableItemId": 1324, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2795, - "FriendlyName": "Big Head Bow (Red, Polka Dot)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,ZNKGkou_gU-1cxBFy7pDKw,3DdSzSqV1UG5AtPr8ro3Kg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-07-18T21:00:00Z", - "SaleEndDate": "2021-07-19T21:00:00Z" - } - } - ], - "PurchasableItemId": 1325, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2796, - "FriendlyName": "Big Head Bow (White, Polka Dot)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,-Iqmonry4EKoqAULCKzRPA,3DdSzSqV1UG5AtPr8ro3Kg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-07-18T21:00:00Z", - "SaleEndDate": "2021-07-19T21:00:00Z" - } - } - ], - "PurchasableItemId": 1326, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3276, - "FriendlyName": "Sundress (Seafoam)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,wxvSDMommkenIl5hTY2fdQ,thwvF0DFRk-mV99ruqYFoQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1748, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3277, - "FriendlyName": "Sundress (Sunrise)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,-sqfCQpzpUyjEShEXH9JYQ,thwvF0DFRk-mV99ruqYFoQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1749, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3278, - "FriendlyName": "Sundress (Sunset)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,as9fjqDWiUi1w7yYavKZXA,thwvF0DFRk-mV99ruqYFoQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1750, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2583, - "FriendlyName": "Shutter Shades (Orange)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,76CA_KCr806y1FA35m-YTg,tqyzKPdDwkWq3jfZ8jZdaA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 6000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-04-11T21:00:00Z", - "SaleEndDate": "2021-04-14T21:00:00Z" - } - } - ], - "PurchasableItemId": 1150, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 5400, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3177, - "FriendlyName": "Luau Dress (Primrose)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1680, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3189, - "FriendlyName": "Luau Shirt (Primrose)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,RZFWcTzxPkOfUuTIQ1mzkg,ytfIq0TiYU6EUdd0ruaGAQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1702, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3195, - "FriendlyName": "Luau Hat (Primrose)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,SqHAYcqBXU2PtF2urWGruQ,sIP83lqv3kG31TH5Rw4gqg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1696, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3206, - "FriendlyName": "Luau Headband (Primrose)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1686, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3182, - "FriendlyName": "Luau Dress (Begonia)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,wyKAZSZwT0u9cuSaQ_-IHg,vUgpsaXrO0ak7huhkHqlUA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1685, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3187, - "FriendlyName": "Luau Shirt (Begonia)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,4ijeE3LqUUuSplKrMto6Kg,ytfIq0TiYU6EUdd0ruaGAQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1703, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3210, - "FriendlyName": "Luau Headband (Begonia)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,J5VsmblfWU2MeUjNo0fz1Q,5ekjxLQZwUm7-iXJ0bYSiQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1691, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3156, - "FriendlyName": "Beanie (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,_fBrHCkTKUe82QgxCyI-Kw,uWXtz0WaO0qJ1W4TfWnLqg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": true, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1714, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3148, - "FriendlyName": "Beanie (Brown)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,c24f1DNZjEmqkt-FibKUjQ,uWXtz0WaO0qJ1W4TfWnLqg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1716, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3146, - "FriendlyName": "Beanie (Tan)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1713, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3193, - "FriendlyName": "Luau Hat (Begonia)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,B6qNcZQ770eJel13RskuIg,sIP83lqv3kG31TH5Rw4gqg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1697, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2945, - "FriendlyName": "Trucker Jacket (Sleeveless, Grey)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,4Eck_dNL1UKlIZWsA1YppQ,WeyKw_WS70Cx3NZdOaxGeA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1441, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3248, - "FriendlyName": "Retro Sunglasses", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "767684e7-0eec-4f6e-ad58-3d5ae715206e,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-03-21T21:00:00Z", - "SaleEndDate": "2021-03-22T21:00:00Z" - } - } - ], - "PurchasableItemId": 1760, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1800, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2740, - "FriendlyName": "Notes Headphones (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,viL4CPch2ECwG-RNaWcyZw,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1270, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2250, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2744, - "FriendlyName": "Notes Headphones (Psy)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,hf0gkFVS8ESvceRsC3LAXQ,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1271, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2749, - "FriendlyName": "Notes Headphones (Neon Heat)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,I1J-xY4YNU2dB_od4P_7Dg,_Yq00H-NWUyQNvGxRunHbg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 10000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1272, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 9000, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3294, - "FriendlyName": "Silly Shorts (Pink Flamingo)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,9P8ARRUYdk6hCoGMKhix4w,o__JORNtYEiJEyyoBIimPA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1761, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3296, - "FriendlyName": "Silly Shorts (Sour Popsicle)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,56qchovVVEaVwL9S52kneA,BAjMoTHbD0mSCjoG9jmzjA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1764, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3297, - "FriendlyName": "Silly Shorts (Pina Colada)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,sJioq5ARDUyMHFji_6OxFw,bjXO36Nu6EWD2dU1UC4Uwg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1762, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3298, - "FriendlyName": "Silly Shorts (Watermelon Rain)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,nu_UGtkJOUK-5MWaW83MUg,pgBFpOtl00K2zsTJcfrefQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1763, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2377, - "FriendlyName": "D4 Skin (Pink)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[Sandbox_D4]", - "EquipmentModificationGuid": "KiVWBp5_J0qCLuizAJGcAg", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1074, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2381, - "FriendlyName": "D6 Skin (Pink)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[Sandbox_D6]", - "EquipmentModificationGuid": "TxIu8CUjykGDMr5RIJcNVQ", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1077, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2385, - "FriendlyName": "D8 Skin (Pink)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[Sandbox_D8]", - "EquipmentModificationGuid": "AQXXckjNZ0uzPMTcP1C3Kg", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1080, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2389, - "FriendlyName": "D10 Skin (Pink)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[Sandbox_D10]", - "EquipmentModificationGuid": "ZM543HEyl0G6n7P5rDMEWw", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1065, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2393, - "FriendlyName": "D12 Skin (Pink)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[Sandbox_D12]", - "EquipmentModificationGuid": "EoV2ZoLR2UWY898p8j7qGQ", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1068, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2397, - "FriendlyName": "D20 Skin (Pink)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[Sandbox_D20]", - "EquipmentModificationGuid": "Des7txtX0EO-7NiooR0-ow", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1071, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3268, - "FriendlyName": "Pegasus Wings", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "4c673a35-c10f-4a8c-b8e0-96a50fe5b97f,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": true, - "Rarity": 50, - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": true, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1768, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4950, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2757, - "FriendlyName": "Unicorn Horn (Joy)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "2caHvVQ1vECrPv-YcdxdyA,mudt-Z5-5USdnIq-xaDgOw,nW_fBsuZA0OfIjTMXm6ZCA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 12000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1310, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 10800, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3312, - "FriendlyName": "Chocolate Cake", - "Tooltip": "Eight slices of tasty cake to share with friends.", - "ConsumableItemDesc": "BbJb1_0g4EGJP_CeNrjpew", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 32, - "ItemSetFriendlyName": "Coach's Cakes" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1765, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3313, - "FriendlyName": "Red Velvet Cake", - "Tooltip": "Eight slices of tasty cake to share with friends.", - "ConsumableItemDesc": "LwaotjVEBUir0-w8126n_g", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 32, - "ItemSetFriendlyName": "Coach's Cakes" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1766, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2755, - "FriendlyName": "Unicorn Horn (Spirit)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "2caHvVQ1vECrPv-YcdxdyA,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 9500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1273, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 8550, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3307, - "FriendlyName": "Tiny Crown", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "00f0b914-aa22-4d14-9af1-996e1af61f4d,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5500, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-09-05T21:00:00Z", - "SaleEndDate": "2021-09-06T21:00:00Z" - } - } - ], - "PurchasableItemId": 2243, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4950, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3306, - "FriendlyName": "Royal Cape (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,cKLBS6pbf0SFuavWyeZ7GA,HTU3Wp_ri0GNYGFSezFHSg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2244, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3308, - "FriendlyName": "I Heart Rec Room Shirt (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1771, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3161, - "FriendlyName": "Brimmed Beanie (Orange)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,MVkY4sU5BkGC4QhweRiyIA,7nBHNMZhAE-t9rLCYO_STA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1708, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3162, - "FriendlyName": "Brimmed Beanie (Purple)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,ux9DQVSRyU-_5GA-t197OA,7nBHNMZhAE-t9rLCYO_STA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1710, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3159, - "FriendlyName": "Brimmed Beanie (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,RL6HkufaJ0yubTpCGVI9eQ,7nBHNMZhAE-t9rLCYO_STA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1707, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3262, - "FriendlyName": "Flannel (Orange)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,sscD2O3LEUOAKkqjGpGe8g,uZjxYOMa10GzJ9wQkRge2w,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1773, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3263, - "FriendlyName": "Flannel (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,hRxyLsKfsESFAsXAyZQjoA,uZjxYOMa10GzJ9wQkRge2w,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1774, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3264, - "FriendlyName": "Flannel (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,kgCKjtSjFEmFq9ez2llxKQ,uZjxYOMa10GzJ9wQkRge2w,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1775, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3265, - "FriendlyName": "Flannel (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,KaZqNx5VKkarRrOJcTuD9A,uZjxYOMa10GzJ9wQkRge2w,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1776, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3317, - "FriendlyName": "Moons \u0026 Stars Dress ", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "936d7126-a3b7-48a2-bceb-6cad9221b267,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1778, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3273, - "FriendlyName": "Sundress (Lodge)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,OJYpuFw810Sg4bTw0XQf-g,NqU5Mw75BE6kPaD8t11Qow,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1780, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3274, - "FriendlyName": "Sundress (Yacht)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,t4gMAKp4L0WBaTGf_rtqFw,NqU5Mw75BE6kPaD8t11Qow,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1779, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3275, - "FriendlyName": "Sundress (Veranda)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,rGMFdPKmK02_OvIIFYlAxA,NqU5Mw75BE6kPaD8t11Qow,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1781, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3318, - "FriendlyName": "Starship Helm", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "380a5e35-b4d0-4119-9721-8ce4c0840fbd,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": true, - "Rarity": 50, - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": true, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1785, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2700, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3319, - "FriendlyName": "Luchador Mask (Green Lightning)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,5_UnQ7vZ9E2T-EhJ7M-mQw,jL-LAsd03EeN1J-Zp8opew,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1782, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1350, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3320, - "FriendlyName": "Luchador Cape (Green Lightning)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,Dtis2HpVzkelZb6M9mW5TQ,iqGv6iRJ-UGbofv8-aHKVA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1783, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3321, - "FriendlyName": "Luchador Singlet (Green Lightning)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,7Jx8mrxoi0aQtZEb03CdRA,-IgxYllxkEyr7V1gosWXUA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1784, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3328, - "FriendlyName": "87 Flavor Cake", - "Tooltip": "Eight slices of tasty cake to share with friends.", - "ConsumableItemDesc": "xwQWBB_fekmTqRc2LB92cg", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 32, - "ItemSetFriendlyName": "Coach's Cakes" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-06-01T21:00:00Z", - "SaleEndDate": "2021-06-07T21:00:00Z" - } - } - ], - "PurchasableItemId": 1772, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3314, - "FriendlyName": "Celebration Cake", - "Tooltip": "Eight slices of tasty cake to share with friends.", - "ConsumableItemDesc": "Sk_1sm88ZU2zpWn01Lv7hw", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 32, - "ItemSetFriendlyName": "Coach's Cakes" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1767, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2554, - "FriendlyName": "Boxing Shirt (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ff15e25d-d467-47a8-9ecc-e415d5acb90c,rzUd1IMTKUmW0HeMPSIOBQ,0ec6628c-a106-4452-af82-105a3e3a9f2e,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1056, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1800, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2591, - "FriendlyName": "Boxing Helmet (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "b99a89c7-38c5-4196-9862-4e1bf9cb0ce1,rzUd1IMTKUmW0HeMPSIOBQ,92714eac-cc07-4f74-a6f5-cfbbadd07e06,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 4000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1055, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3600, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3357, - "FriendlyName": "Winged Hat (Kingfisher)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,tXhgU1o_wkaNQ-7P3KXidQ,njEWOjNEQEWCEqmytodpow,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1805, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3372, - "FriendlyName": "Winged Hat (Raven)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,6547pqf6vUm2L89AG6D91A,njEWOjNEQEWCEqmytodpow,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1806, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3373, - "FriendlyName": "Winged Hat (Grackle)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,oxi26T5a4U6L73pF-Pgrhg,njEWOjNEQEWCEqmytodpow,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1807, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3360, - "FriendlyName": "Winged Helm", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "16707919-756d-45ae-95fc-cfb6715b8ae6,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": true, - "Rarity": 50, - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1808, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2250, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2309, - "FriendlyName": "Detective Cap (Grey)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "5bde836f-9343-4934-b01a-606f707020ef,MQOxmUk-mUG-Ee9m9nX31Q,axPBGoqorEe77Oqqjfzb5w,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 860, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2315, - "FriendlyName": "Detective Coat (Grey)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "033e328f-d9d2-4e53-af20-44f18e3ea208,msOFHoFN9UORkeXXtdqBsw,9ZP617DQk0mZ10J3d5q9oA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 862, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3354, - "FriendlyName": "Turtleneck (Teal)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,R0UCacpdhUS906Xf7l142A,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1811, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3355, - "FriendlyName": "Turtleneck (Grey)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,G-VKgepBkkeATcwCaS6Rwg,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1810, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3356, - "FriendlyName": "Turtleneck (Navy)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,1LonkCbt4kykeAScYKpwyg,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1809, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1709, - "FriendlyName": "Drum Major Shirt (Orange)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,82de1ca3-67d6-454d-84fb-0eeece71fcbc,b0298c45-0dd1-453e-bad4-41e4656bb38e,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 7500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 305, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 6750, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1705, - "FriendlyName": "Drum Major Hat (Orange)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,b444ed0a-eab5-4bd6-af34-d080de74a149,a8a91216-0fcc-461e-a682-95ee82509cce,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 8000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 301, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 7200, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1712, - "FriendlyName": "Drum Major Gloves (Orange)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,b444ed0a-eab5-4bd6-af34-d080de74a149,6b38ab79-142b-446e-978c-ad829ade8823,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2245, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3362, - "FriendlyName": "Bounty Hunter Helmet", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "2fadddc1-babd-4cb3-8f5a-0e7c889c3785,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1812, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4050, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3363, - "FriendlyName": "Bounty Hunter Belt", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "f2c1c5e3-b201-4d34-9ce6-3082ff7e5d42,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1816, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3364, - "FriendlyName": "Bounty Hunter Cape", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "e773fddc-ad9f-408c-82c5-2637f75b3214,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1813, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3150, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3365, - "FriendlyName": "Bounty Hunter Armor ", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "9ffa6e06-5200-4e53-ac13-f8491aecc864,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1815, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1800, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3366, - "FriendlyName": "Bounty Hunter Glove", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "2ddd2c2b-596c-4022-a488-655b0db1c265,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1814, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3374, - "FriendlyName": "Conductor Cuffs (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "8fc7aaef-adec-4534-8f91-445e4e7095d5,HBt3ToOkUUereoPKwyvzuw,awWjleyNP0akWNYJoehCLA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1818, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3375, - "FriendlyName": "Conductor Jacket (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "e60fccda-8711-463d-b8a3-7cd5e76903b2,2axtF2iOGkez1kfRRGUbYw,cQUquXMk5EGt0VUCuPKBgg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1819, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3376, - "FriendlyName": "Conductor Hat (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "07205057-0804-41de-abe4-bd4027fee1df,LdKaVAveokmp3qRwVBxnFA,YJGsYfwkik2lp7qWqXyXTw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1817, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2645, - "FriendlyName": "Figure Skater Shirt", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "9o0gWLJjREG552gxRreT8A,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1096, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2250, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2646, - "FriendlyName": "Figure Skater Skirt", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5PUja-WX00Sme9yBwvDq-g,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1097, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2250, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3383, - "FriendlyName": "Nineties Outfit (Da Bomb)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ca218759-7eed-440e-b5dc-dba15f81e598,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1820, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3474, - "FriendlyName": "Sus(picious) Goblin Shirt", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,4oywwjb3-kifr-um9x87Pw,11ZEZTFhy0ONpoXb3kiewQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2246, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3181, - "FriendlyName": "Luau Dress (Dahlia)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,_OM7UNZENEejgO5h7H1ztg,vUgpsaXrO0ak7huhkHqlUA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1684, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3188, - "FriendlyName": "Luau Shirt (Dahlia)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,d27e5m1BLUWI42Pxnj6F4A,ytfIq0TiYU6EUdd0ruaGAQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1701, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3194, - "FriendlyName": "Luau Hat (Dahlia)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,p3g8YAOhTUKAiE-Wh-X-aA,sIP83lqv3kG31TH5Rw4gqg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1695, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3211, - "FriendlyName": "Luau Headband (Dahlia)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,Asfe0ZRi50eryD5wlJzgzA,5ekjxLQZwUm7-iXJ0bYSiQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1689, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1602, - "FriendlyName": "Fighter Pilot Helmet (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,8c74ee27-3d56-401b-8a8c-7868a80770e8,9d6ac0b7-bbef-40bc-9173-effe65d7c0ff,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 215, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1605, - "FriendlyName": "Fighter Pilot Uniform (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,8c74ee27-3d56-401b-8a8c-7868a80770e8,435eba0d-d8f9-43cc-91aa-2959d63c6fa7,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 218, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1608, - "FriendlyName": "Fighter Pilot Gloves (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,8c74ee27-3d56-401b-8a8c-7868a80770e8,7869b2a5-cd89-4033-b9f7-4f1451ecb47b,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 221, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2553, - "FriendlyName": "Deep Sea Diver Suit (Kraken)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "c3745cee-d87e-4a23-b6e2-64ebf05c8b11,Su7kiW24d0KapNns96JoFQ,EiIow5mS80qpoS10r1ZdvQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 6500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1086, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 5850, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2578, - "FriendlyName": "Deep Sea Diver Tank (Kraken)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "8d97303c-5138-4da1-a74d-378da19d11cb,Su7kiW24d0KapNns96JoFQ,ZpyoWbO6GkGglXlMuYUARw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1088, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2597, - "FriendlyName": "Deep Sea Diver Helmet (Kraken)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "4fcb5b84-13a9-43e6-9680-72b17874ae53,Su7kiW24d0KapNns96JoFQ,a3Er_BCApUiPtBaGkSH9LA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 9500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1085, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 8550, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2608, - "FriendlyName": "Deep Sea Diver Gloves (Kraken)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "b1c3ccc8-91d7-434e-b9cc-bd632fffc01b,Su7kiW24d0KapNns96JoFQ,0p5N9U5qokKdQhW07yYLGQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1083, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3472, - "FriendlyName": "Fancy Cape (Grey)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "46cde502-86d6-4061-a80c-67458ffd4d60,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1825, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1350, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3473, - "FriendlyName": "Fancy Cape (Gilded)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "46cde502-86d6-4061-a80c-67458ffd4d60,crl8VlZ59kGxG01noGEWmA,EckOEU0mJkGIVDvYoKBN9g,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1826, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2250, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3388, - "FriendlyName": "Chef Hat (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "af33bdb1-b7fa-4fe6-b37a-b1fe6a420879,PR5dh2jf2kqGLO0lXgA69A,-lYK7LhYyEy6wqL1tIE9cg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1823, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1350, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3389, - "FriendlyName": "Chef Coat (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ff5c62b3-4f41-4acd-bfd8-8db00de4f36c,PR5dh2jf2kqGLO0lXgA69A,VDn1hO6ahky0GDJt5dRmyg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1824, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2974, - "FriendlyName": "Formal Vest (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,m4W5D0Oa9kaWa-8I96YYzA,WF_fg80f30qvHit0vGBwCA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1539, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3008, - "FriendlyName": "Formal Dress (Red Sequins)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "73a119ab-d2c8-4da9-98b2-29edbb38e2c2,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1512, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2700, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2262, - "FriendlyName": "Cat Ears (Grey)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,96e42c7a-2881-4299-a2fe-80c0d4d5ca26,1e3195ab-f7f6-41f4-a5ec-378d09ecdf69,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 9000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 914, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 8100, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3080, - "FriendlyName": "Soda Clerk Uniform (Green)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,oKxmH-1s2EyIDkZoOQSQQw,MBuxBAIkpkWI26d-arAKQg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1610, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3076, - "FriendlyName": "Soda Clerk Hat (Blue)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,XFCpIdeDXUqeYCIgh4fGtg,sV_ByCug30G1Gw-77KUe1Q,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1600, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3079, - "FriendlyName": "Soda Clerk Uniform (Blue)", - "Tooltip": null, - "ConsumableItemDesc": "", - "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,XFCpIdeDXUqeYCIgh4fGtg,MBuxBAIkpkWI26d-arAKQg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1602, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3152, - "FriendlyName": "Beanie (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,fLWfBSEO6U6aHrDm3nKFEQ,uWXtz0WaO0qJ1W4TfWnLqg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1718, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3155, - "FriendlyName": "Beanie (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,wbFPXIg5gUK3QK6YycZexg,uWXtz0WaO0qJ1W4TfWnLqg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1722, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2542, - "FriendlyName": "Anime Skirt (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,kTP3xKhzBkuQF3SqvmYFKA,2UNd6eViFUO359xjSiuu2A,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 6500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1019, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 5850, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2575, - "FriendlyName": "Anime Bow (Pink)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,i3rD_hnQG0a-5f6Ve4AfWg,M5z2wk-GDkOAjvZzqsfcNQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1013, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2594, - "FriendlyName": "Anime Tiara (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,kLv_wsbbGUmlfIUO1QLYLw,mG60EPIQIkaJNgOkonVmZg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 8500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1024, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 7650, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2615, - "FriendlyName": "Anime Glove (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,1FcyrVGyGEC9dmOq_51nFQ,ZtCqMnFTQUWv2h0MfZ4m6A,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1015, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3476, - "FriendlyName": "Jacket Dress (Red) ", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "6fccd476-c621-4f3f-b2e3-45c95be912b5,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1854, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3477, - "FriendlyName": "Jacket Dress (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "6fccd476-c621-4f3f-b2e3-45c95be912b5,v_5qFi-vAUSDd1fLNL7pvA,X0_GvGrZGkSP9Ub81CHgqQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1855, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3478, - "FriendlyName": "Jacket Dress (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "6fccd476-c621-4f3f-b2e3-45c95be912b5,y5O8zRJy4kuhnXzATSWKew,X0_GvGrZGkSP9Ub81CHgqQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1856, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 338, - "FriendlyName": "Cowboy Hat (Brown)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 6000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 22, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 5400, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 363, - "FriendlyName": "Viking Helmet", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "c87239ca-a255-4b13-bbc5-1b38236fb4cc,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 8500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 47, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 7650, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 432, - "FriendlyName": "Cowboy Vest (Brown)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 7000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 89, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 6300, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 522, - "FriendlyName": "Cowboy Gloves (Brown)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 154, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2840, - "FriendlyName": "Squid Hat", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "899f1d17-eee1-4b7d-a112-fbbba597e738,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1370, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3379, - "FriendlyName": "Party Hat (Celebration)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "8df990d9-141a-4757-b4f2-138d5e68ab74,RROvzwtshUGyRudVIBn8bw,MrrsmY0J0EKduH-f5wUj6g,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1863, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3625, - "FriendlyName": "Business Tie (Red Sequins)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "05ec4e87-088f-4281-a118-2e63c2585200,Wm30oV5BtEuFQZFk3dPK_w,tfiSfpRez0y_R4QjAhO0bQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1861, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3626, - "FriendlyName": "Bow Tie (Red Sequins)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "6dd261d8-9806-4dac-81c4-a58f6d6a7f9a,Wm30oV5BtEuFQZFk3dPK_w,0R3Mh96tS0631EZYs03dmw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1862, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3255, - "FriendlyName": "Hero Guy Armor", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ffad1160-8383-4b4a-a5b9-223476b49b92,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 7500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1758, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 6750, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3256, - "FriendlyName": "Hero Gal Armor", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "1988692c-aae3-450b-acd6-e9015b831f5c,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 7500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1757, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 6750, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3257, - "FriendlyName": "Hero Bracer ", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "fa0e701c-5e80-46f4-8817-6e2dbf904734,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1756, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3258, - "FriendlyName": "Hero Crown", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "b4e48239-a3b0-49ed-b78a-86f4e3aaca1e,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1755, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2250, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3386, - "FriendlyName": "Martial Arts Gi (Strength) ", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "25769d1f-4ecb-4d92-b692-322b38c013b5,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1871, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3387, - "FriendlyName": "Martial Arts Gi (Speed)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "e29d044e-79fb-4280-bca9-aa1e1257e968,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1872, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3636, - "FriendlyName": "Martial Arts Gi (Cunning) ", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "6423f23e-dde3-4428-96f5-6091027c92cb,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1873, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3216, - "FriendlyName": "Fox Ears", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "31bb82db-cd30-4988-a8bf-3ce55a12a4c9,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": true, - "Rarity": 50, - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1874, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2250, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3623, - "FriendlyName": "Rec Room Hoodie (Yellow)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,LuYelZY8NkqmOp1pnxPXBg,oHKhT-GTx0iFWrrlz9s6Tw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1875, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3003, - "FriendlyName": "Disco Ball Hat", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "a5b747b8-c1a5-4bce-999f-e13dbe77bde6,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 9000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1527, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 8100, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3669, - "FriendlyName": "Star Captain Hat ", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "34f45c5b-fea7-40b4-add7-bc7a37000ab5,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1876, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1350, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3465, - "FriendlyName": "Bandana (Dots, Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,40ldoL7MAUKnb5JA68CMBA,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1878, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3468, - "FriendlyName": "Bandana (Flowers, Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,40ldoL7MAUKnb5JA68CMBA,27a5df72-4095-4837-bf24-cdd3d95a43e9,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1877, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3471, - "FriendlyName": "Bandana (Plaid, Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,40ldoL7MAUKnb5JA68CMBA,cf119781-5bd9-4b85-9a0b-12e82e988c23,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 100, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1879, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 90, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2862, - "FriendlyName": "Stunt Singlet (Pink)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "17236d76-e3b6-42f6-9179-6fcf0479436f,i1XbjBqTu0CILIuJClWimA,B-sIpWNOfEigMeQF-WVR1g,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1383, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1350, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2865, - "FriendlyName": "Stunt Singlet (Yellow)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "17236d76-e3b6-42f6-9179-6fcf0479436f,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1382, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1350, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3674, - "FriendlyName": "Snowy Owl Cape", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 7500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1881, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 6750, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3675, - "FriendlyName": "Snowy Owl Mask", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "771863b6-70d1-4f48-9c64-c621ce0fea46,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1880, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4050, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3640, - "FriendlyName": "Cheerleader Skirt (Victory)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "657efe89-620a-46a2-8b58-cafd855c7cd5,eWf2c62cqEOkRukLzhl_wQ,KFq8d1VsO0KDqBWUj4qRFg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1882, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3659, - "FriendlyName": "Cheerleader Sweater (Victory)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "9073d6a0-3bc1-4c82-aeb3-d4ee195538b4,6secgNPvmUyFnI3NC5dIYw,5V_1JEDrRUa1UPKhtrSB2w,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1883, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 375, - "FriendlyName": "Square Glasses (Purple)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "f527ffaf-da03-4519-82ed-46a9cb981dc3,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 54, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4950, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2061, - "FriendlyName": "Square Glasses (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "f527ffaf-da03-4519-82ed-46a9cb981dc3,a1c51d1e-1d5f-4f8a-bc0f-6a20eddfe58a,e0186718-4a18-434b-b96e-0c9c912f0d1f,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 618, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4950, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2062, - "FriendlyName": "Square Glasses (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "f527ffaf-da03-4519-82ed-46a9cb981dc3,c5884778-a87f-4612-9717-86fbb65d440f,e0186718-4a18-434b-b96e-0c9c912f0d1f,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 619, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4950, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3670, - "FriendlyName": "Hoodie Jacket", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "85e03c16-4288-45f4-a579-c911437d27d4,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1884, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 330, - "FriendlyName": "Astronaut Helmet (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "f218e2de-46fd-45b9-9e0e-670b6bb905e7,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 10000, - "StorefrontSaleData": null + "StorefrontSaleData": null, + "Type": 0 } ], "PurchasableItemId": 14, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 9000, - "StorefrontSaleData": null + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 3087, - "FriendlyName": "Bog Monster Suit", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "dedd2e98-2721-4de6-92f2-9d399f34e8fe,,,", + "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,da6d0ced-3d43-4878-a868-925f2ed6fd5b,cb9e9e05-c481-4397-86e7-c2111bc0e817,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": 51, - "ItemSetFriendlyName": "Bog Monster" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2247, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2700, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3088, - "FriendlyName": "Bog Monster Wrist", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "4e42e02e-33fd-4ff9-b74e-9bde26253c35,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 51, - "ItemSetFriendlyName": "Bog Monster" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2248, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3089, - "FriendlyName": "Bog Monster Hood", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "20b424a9-861a-4d39-a583-22d7b7348c14,,,", - "AvatarItemType": 0, "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", + "FriendlyName": "Babydoll Dress (Pink)", + "GiftDropId": 15, "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 51, - "ItemSetFriendlyName": "Bog Monster" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 9000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2249, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 8100, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3671, - "FriendlyName": "Championship Wrestling Belt", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "9231a9c6-7638-4fe9-bd2f-eac6c943009b,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": true, - "Rarity": 50, - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1892, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2250, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3295, - "FriendlyName": "Silly Shorts (Lonely Island)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,zJMD-_HR80WCAUqYGe7_NA,rAzhaLh1nEWMd9v1D-HWcQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1890, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3299, - "FriendlyName": "Silly Shorts (Donut Dreams)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-07-04T21:00:00Z", - "SaleEndDate": "2021-07-05T21:00:00Z" - } - } - ], - "PurchasableItemId": 1891, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3620, - "FriendlyName": "Luchador Cape (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,xNjX_6-aREm0cYZObVLiAg,OE-PtL0-0kWcJPwn1wvuVg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1893, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4050, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3621, - "FriendlyName": "Luchador Cape (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,Kcyp8sv0202Puym1Wf86xg,OE-PtL0-0kWcJPwn1wvuVg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1894, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4050, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2444, - "FriendlyName": "Astronaut Helmet (Orange)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "f218e2de-46fd-45b9-9e0e-670b6bb905e7,JFalLDUvm0aMm3wh1UVfVg,iQjkS1xYP0S63ltvKpkz5g,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 10000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 911, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 9000, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2457, - "FriendlyName": "Astronaut Suit (Orange)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ec5255d5-edaf-4888-9fe1-e89ac0e0d300,9GhnX4Pj4E-wxbPlD8GB-g,YSrGwXybGEqaqHNCS64qOA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 8500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 912, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 7650, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2460, - "FriendlyName": "Astronaut Gloves (Orange)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "88739d79-aeb9-471a-b25b-776f46bba9f6,y_gTbnuYS0GKJmnCs2retw,hjk9OO8CW0KNGR7A6_p84A,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 910, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3678, - "FriendlyName": "Assorted Chocolates", - "Tooltip": "Assorted chocolates to share with friends!", - "ConsumableItemDesc": "K9RbXo-4U0q6NbGu8VL1Sw", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 52, - "ItemSetFriendlyName": "Snickety Snacks" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1896, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3672, - "FriendlyName": "Animal Sweater (Ferret) ", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1899, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2564, - "FriendlyName": "Beekeeper Suit (Teal)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "1ebbfdfc-f72b-4d70-99d4-4d527f896aa7,oZ8k0Qv3SkG-DkY0_dP7UA,afd88a79-7f03-40f6-bcb4-c247dd86edc4,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1036, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2700, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2598, - "FriendlyName": "Beekeeper Veil (Teal)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "96bc2f9f-ce3a-4c4c-b92c-cfed4ed4594f,oZ8k0Qv3SkG-DkY0_dP7UA,e4b53a9a-ac95-49ae-bf68-615bb23fa075,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1040, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4050, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2601, - "FriendlyName": "Beekeeper Gloves (Teal)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "4025e4c4-abaa-4729-a2a3-a7175313e5ed,oZ8k0Qv3SkG-DkY0_dP7UA,1f18670d-df52-4d2b-8009-a32cf7c67b40,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1037, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3695, - "FriendlyName": "Barbarian Tunic", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "e48955ae-50e0-4f55-93a1-611150142331,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-09-19T21:00:00Z", - "SaleEndDate": "2021-09-20T21:00:00Z" - } - } - ], - "PurchasableItemId": 1906, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2250, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3696, - "FriendlyName": "Barbarian Helm ", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "07023692-97e1-4a65-a881-64ca6b4ae08e,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1905, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3150, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3627, - "FriendlyName": "Winter Cloak (Hearthstone)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "b9d08f9a-b23d-4d7e-978b-a0cd8adbfe9c,pXrZhtzjV02_qvIQoWEFWA,Hj8WnsdidE6rJeNyOmWUfg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1907, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4050, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 1674, - "FriendlyName": "Mirrored Glasses (Silver)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7db6b49f-3e2a-4da8-bdfa-e9ad9ebc5ba6,f841cdfa-45ba-4f09-a117-503eef34cb4b,9c55b609-b7dc-4070-a3ad-6351a0054a06,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 274, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3150, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2155, - "FriendlyName": "Mirrored Glasses (Gold)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7db6b49f-3e2a-4da8-bdfa-e9ad9ebc5ba6,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 711, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3150, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3694, - "FriendlyName": "Puffer Vest ", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "be75b46c-ce22-4758-8810-c409c5aa1c50,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1908, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3697, - "FriendlyName": "Dragon Wings ", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "84efabec-fe50-4c92-845f-b99b1d84ca82,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": true, - "Rarity": 50, - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-04-01T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 5500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1909, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4950, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3617, - "FriendlyName": "Aviator Hat (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,FjnZ-D1hcESLOWL4Ukv7kw,ff5ae41e-e446-4a96-8c11-49d85556fa81,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1911, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3622, - "FriendlyName": "Aviator Coat (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,2APfqVnnQUaDYKi-fQg8jg,9009bcdf-b6f7-4dae-b2ec-895511d118ff,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1913, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3624, - "FriendlyName": "Aviator Gloves (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,7nRz9Jmnn066_PzngkhfFA,5659ce2c-9cb0-49da-8c39-4b7df0f8deec,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "SubscribersOnly": false, + "Tooltip": " Debug: 15", + "Unique": true }, "IsFeatured": false, - "NewUntil": null, "Prices": [ { "CurrencyType": 2, "Price": 200, - "StorefrontSaleData": null + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 1912, + "PurchasableItemId": 15, "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3643, - "FriendlyName": "Aviator Goggles (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,qJGX62O_HUiZWN61NAc1Lg,556f876a-70da-4104-b792-fca8ad67be0c,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1910, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3082, - "FriendlyName": "KO Icon - Tire Track", - "Tooltip": "When you KO someone this will appear over their head.", - "ConsumableItemDesc": "J1WqFNUWo0OBi4LGKPDHWw", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ { "CurrencyType": 2, "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1601, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 2443, - "FriendlyName": "Steampunk Topper", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "gwLiwmqBIk6glFxvaTzxeA,,,", + "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,,,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 8000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 919, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 7200, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2401, - "FriendlyName": "Steampunk Hat", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "JWanxvOHyESg9F_HlmTOfA,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 8000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 918, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 7200, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3644, - "FriendlyName": "Graphic Cap (Buckaneer)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,5iCrYb8MBkqN6IBEe3IipQ,SroEVC6vBkG42ILwCtKB9w,", - "AvatarItemType": 0, "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", + "FriendlyName": "Baseball Jersey (White, Blue)", + "GiftDropId": 16, "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-05-01T20:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1914, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3353, - "FriendlyName": "Turtleneck (Purple)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,5mcp7-2ZEE6n3-zN3_CoWw,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-05-01T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1916, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3664, - "FriendlyName": "Turtleneck (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,IXWd396grEOWHt32L7fCpQ,rzoH8P44a0esN-HnYd3aQg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-05-01T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1917, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2631, - "FriendlyName": "Ski Buddy Ear Muffs (Summit)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "6QT99hx6DE6t9cKAs61i3w,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1154, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3021, - "FriendlyName": "Ski Buddy Ear Muffs (Chill)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "6QT99hx6DE6t9cKAs61i3w,KwCEye0nsESFs-yj4h9sjQ,c_t9XDbn-Eqml1O-wC5zJQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1528, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3642, - "FriendlyName": "Long Coat (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,w_aK2K9bHEeU6oSQ7BK0qg,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-05-01T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-03-19T21:00:00Z", - "SaleEndDate": "2021-03-22T21:00:00Z" - } - } - ], - "PurchasableItemId": 1920, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3613, - "FriendlyName": "Beret (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,TKbjEeTWfUyA1u4laoULMg,FWL8ZeMe9EerdB0_Fya3AA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-05-01T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-03-19T21:00:00Z", - "SaleEndDate": "2021-03-22T21:00:00Z" - } - } - ], - "PurchasableItemId": 1919, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3714, - "FriendlyName": "Birthstone Earrings (January Garnet)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,FgLAEMh1e0GyHO8J8_xj5Q,iM-04HpG6k2N8n-P3XS22w,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "SubscribersOnly": false, + "Tooltip": " Debug: 16", + "Unique": true }, "IsFeatured": false, - "NewUntil": "2021-05-01T21:00:00Z", "Prices": [ { "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 1921, + "PurchasableItemId": 16, "SubscriberPrices": [ { "CurrencyType": 2, "Price": 450, - "StorefrontSaleData": null + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 3715, - "FriendlyName": "Birthstone Earrings (February Amethyst)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,C9CZUwEZeUiuOue4CK4luA,gUxl7WNXlUqFYHZ9eGq1cg,", + "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,e5de2e45-207c-46af-9a5e-eb01a0c621fe,ca37823a-b8f3-4414-b38b-de0dc7fa4295,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Jersey (White, Green)", + "GiftDropId": 17, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 17", + "Unique": true }, "IsFeatured": false, - "NewUntil": "2021-05-01T21:00:00Z", "Prices": [ { "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 1922, + "PurchasableItemId": 17, "SubscriberPrices": [ { "CurrencyType": 2, "Price": 450, - "StorefrontSaleData": null + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 3705, - "FriendlyName": "Birthstone Earrings (March Aquamarine)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,mM7I9kDTx0ut243UkWKXvw,YKaJjmMHo02FWwem8nw1yw,", + "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,de0a5a3a-8aff-4799-8269-9efa3aeb383a,ca37823a-b8f3-4414-b38b-de0dc7fa4295,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Jersey (White, Red)", + "GiftDropId": 18, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 18", + "Unique": true }, "IsFeatured": false, - "NewUntil": "2021-05-01T21:00:00Z", "Prices": [ { "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": null + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 1925, + "PurchasableItemId": 18, "SubscriberPrices": [ { "CurrencyType": 2, "Price": 450, - "StorefrontSaleData": null + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 3706, - "FriendlyName": "Birthstone Earrings (April Diamond)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,46f7Ewe99E6tF2qFaMtQ0g,8IK1U23XlUOV-2ibVznkDQ,", + "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,9967ce54-c2b7-437a-946e-11f8ee6d6fdd,ca37823a-b8f3-4414-b38b-de0dc7fa4295,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Jersey (Green)", + "GiftDropId": 19, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 19", + "Unique": true }, "IsFeatured": false, - "NewUntil": "2021-05-01T21:00:00Z", "Prices": [ { "CurrencyType": 2, "Price": 500, - "StorefrontSaleData": null + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 1924, + "PurchasableItemId": 19, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 3661, - "FriendlyName": "Poindexter Shirt (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "pQqNvrhDJ0uuipKHA2qUOA,lq59KZwElEStrviDEQLLcA,olyS074RHU-ojE0GzBBYJw,", + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,,,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-05-01T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-03-26T21:00:00Z", - "SaleEndDate": "2021-03-29T21:00:00Z" - } - } - ], - "PurchasableItemId": 1926, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3738, - "FriendlyName": "Cat Hat (Calico)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-05-01T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2053, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3750, - "FriendlyName": "Basketball Jersey (Yellow)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,RU-B71GUF0WPduoSOI1XMg,54a5c055-f757-4c00-a1e1-8b0b6552c608,", - "AvatarItemType": 0, "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", + "FriendlyName": "Basketball Jersey (Blue)", + "GiftDropId": 21, "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "SubscribersOnly": false, + "Tooltip": " Debug: 21", + "Unique": true }, "IsFeatured": false, - "NewUntil": "2021-04-04T21:00:00Z", "Prices": [ { "CurrencyType": 2, "Price": 550, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-04-02T21:00:00Z", - "SaleEndDate": "2021-04-05T21:00:00Z" - } + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 2054, + "PurchasableItemId": 21, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 3751, - "FriendlyName": "Basketball Jersey (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,se0-2ylLD0u6sqCVPkeP6A,54a5c055-f757-4c00-a1e1-8b0b6552c608,", + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,59a62fa3-9e15-463e-9bd5-3aecdf604c1b,54a5c055-f757-4c00-a1e1-8b0b6552c608,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basketball Jersey (Black)", + "GiftDropId": 22, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 22", + "Unique": true }, "IsFeatured": false, - "NewUntil": "2021-04-04T21:00:00Z", "Prices": [ { "CurrencyType": 2, "Price": 550, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-04-02T21:00:00Z", - "SaleEndDate": "2021-04-05T21:00:00Z" - } + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 2055, + "PurchasableItemId": 22, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 3752, - "FriendlyName": "Basketball Jersey (Green)", - "Tooltip": "", + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,4effd67c-a52f-4b41-a5b0-04287f91a7bc,54a5c055-f757-4c00-a1e1-8b0b6552c608,", + "AvatarItemType": 0, "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basketball Jersey (Purple)", + "GiftDropId": 23, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 23", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 23, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,ojTIShRZHEOV1qQRfhwvTA,54a5c055-f757-4c00-a1e1-8b0b6552c608,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basketball Jersey (Green)", + "GiftDropId": 24, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 24", + "Unique": true }, "IsFeatured": false, - "NewUntil": "2021-04-04T21:00:00Z", "Prices": [ { "CurrencyType": 2, "Price": 550, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-04-02T21:00:00Z", - "SaleEndDate": "2021-04-05T21:00:00Z" - } + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 2056, + "PurchasableItemId": 24, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 3743, - "FriendlyName": "Robot Gauntlets", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "d33c2f3a-6831-4deb-82b2-062d1c4224e4,,,", + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,se0-2ylLD0u6sqCVPkeP6A,54a5c055-f757-4c00-a1e1-8b0b6552c608,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": true, - "Rarity": 50, - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-05-05T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2059, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2250, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3673, - "FriendlyName": "Animal Sweater (Axolotl)", - "Tooltip": "", "ConsumableItemDesc": "", - "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,azbt5pgvrUS4LQwhndFeJg,cHZ4lDnSoUypIXCiRRowzg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-05-05T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2058, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3382, - "FriendlyName": "Nineties Outfit (Aiight)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ca218759-7eed-440e-b5dc-dba15f81e598,ulOBBvFEJ0ioFA1qmL390A,u9yHtj_tfkuowGp0h_YpFg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basketball Jersey (Red)", + "GiftDropId": 25, "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "SubscribersOnly": false, + "Tooltip": " Debug: 25", + "Unique": true }, "IsFeatured": false, - "NewUntil": "2021-05-05T21:00:00Z", "Prices": [ { "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-04-09T21:00:00Z", - "SaleEndDate": "2021-04-12T21:00:00Z" - } + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 2061, + "PurchasableItemId": 25, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 3381, - "FriendlyName": "Nineties Outfit (Booyah)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ca218759-7eed-440e-b5dc-dba15f81e598,V4CVhCB8eU-nrfYgticVOA,u9yHtj_tfkuowGp0h_YpFg,", + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,RU-B71GUF0WPduoSOI1XMg,54a5c055-f757-4c00-a1e1-8b0b6552c608,", "AvatarItemType": 0, - "EquipmentPrefabName": "", + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basketball Jersey (Yellow)", + "GiftDropId": 26, "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "SubscribersOnly": false, + "Tooltip": " Debug: 26", + "Unique": true }, "IsFeatured": false, - "NewUntil": "2021-05-05T21:00:00Z", "Prices": [ { "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-04-09T21:00:00Z", - "SaleEndDate": "2021-04-12T21:00:00Z" - } + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 2060, + "PurchasableItemId": 26, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 3757, - "FriendlyName": "Maker Pen Skin (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[MakerPen]", - "EquipmentModificationGuid": "VYF9NGZBgU6TOo9ayjgBEQ", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-05-14T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2062, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3759, - "FriendlyName": "Maker Pen Skin (Purple)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[MakerPen]", - "EquipmentModificationGuid": "iRtlLKI-X0S9oYUWLenAKQ", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-05-14T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2063, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3760, - "FriendlyName": "Maker Pen Skin (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[MakerPen]", - "EquipmentModificationGuid": "tvjYGeRdwEqnr9mf84WgcQ", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": true, - "NewUntil": "2021-05-14T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2064, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3761, - "FriendlyName": "Maker Pen Skin (Yellow)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[MakerPen]", - "EquipmentModificationGuid": "Q7Tr_0DXAkOdr61UXiocow", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-05-14T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2065, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3720, - "FriendlyName": "Treasure Hunter Shirt (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "QK6lBlX_wUCiSbJ9RkIwdA,H0sqS2_VPEieVrHSyMNo7g,9HVoTIf90Ea8_czICVg9AA,", + "AvatarItemDesc": "eda29bce-5a07-4439-a2a7-cafa11e2ed62,,,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-05-14T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-04-16T21:00:00Z", - "SaleEndDate": "2021-04-19T21:00:00Z" - } - } - ], - "PurchasableItemId": 2068, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3726, - "FriendlyName": "Treasure Hunter Hat (Black)", - "Tooltip": "", "ConsumableItemDesc": "", - "AvatarItemDesc": "-SQLtL4rdEWTJdw2IroQCQ,CoSVCyrI-0qg-EkqB2R0hg,JO9lJOQSREWbPyDBZH_cyg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-05-14T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-04-16T21:00:00Z", - "SaleEndDate": "2021-04-19T21:00:00Z" - } - } - ], - "PurchasableItemId": 2066, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3727, - "FriendlyName": "Treasure Hunter Bandolier (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "t_66r_j5oUSh9awIPmdUKg,YTlnBuEjhUG1hSfAs8qwuw,IcR9Z_MxKkS9uh4uFYuFzQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Belt", + "GiftDropId": 30, "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "SubscribersOnly": false, + "Tooltip": " Debug: 30", + "Unique": true }, "IsFeatured": false, - "NewUntil": "2021-05-14T21:00:00Z", "Prices": [ { "CurrencyType": 2, "Price": 800, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-04-16T21:00:00Z", - "SaleEndDate": "2021-04-19T21:00:00Z" - } + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 2067, + "PurchasableItemId": 30, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 3728, - "FriendlyName": "Treasure Hunter Belt (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ImwG0snB9ECc_gqRRBoz6A,lAjUeUtTLU2-3bG2OXBukg,LFB_YqTym0-tQmUIj-YcYA,", + "AvatarItemDesc": "4ee2133d-c419-4fbc-9117-746d756a250d,,,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, + "ConsumableItemDesc": "", + "Context": 21, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-05-14T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-04-16T21:00:00Z", - "SaleEndDate": "2021-04-19T21:00:00Z" - } - } - ], - "PurchasableItemId": 2069, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3784, - "FriendlyName": "Chicken Hat", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "fc6a560a-5ff1-46f6-a593-320c50ee397e,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fanny Pack (Cosmic)", + "GiftDropId": 42, "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "SubscribersOnly": true, + "Tooltip": " Debug: 42", + "Unique": true }, "IsFeatured": false, - "NewUntil": "2021-05-21T21:00:00Z", "Prices": [ { "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": null + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 2073, + "PurchasableItemId": 42, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 3729, - "FriendlyName": "Graphic Cap (Minitron)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,Vk1n941ZgkKrhrL9mh18oA,lxmw7EbzsUuoy0roRy5McQ,", + "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,,,", "AvatarItemType": 0, - "EquipmentPrefabName": "", + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Apron (Red)", + "GiftDropId": 43, "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "SubscribersOnly": false, + "Tooltip": " Debug: 43", + "Unique": true }, "IsFeatured": false, - "NewUntil": "2021-05-21T20:00:00Z", "Prices": [ { "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 1915, + "PurchasableItemId": 43, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 3702, - "FriendlyName": "Resistance Trench Coat", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "c4622dca-80dc-423b-ae22-2065174e817b,,,", + "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,HdwZhjrqxE6wuf68MnDhDw,f5z_jhdcqEGjo-1WUmldaw,", "AvatarItemType": 0, - "EquipmentPrefabName": "", + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Apron (Blue)", + "GiftDropId": 44, "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "SubscribersOnly": false, + "Tooltip": " Debug: 44", + "Unique": true }, "IsFeatured": false, - "NewUntil": "2021-05-28T21:00:00Z", "Prices": [ { "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 2075, + "PurchasableItemId": 44, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 3703, - "FriendlyName": "Resistance Shades", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "d4f86b2b-0fa3-4264-9eac-cf15b62463bd,,,", + "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,b7oobDcDtE-69fhM-5g5AQ,f5z_jhdcqEGjo-1WUmldaw,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Apron (Yellow)", + "GiftDropId": 45, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 45", + "Unique": true }, "IsFeatured": false, - "NewUntil": null, "Prices": [ { "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": { - "SalePercent": 50, - "SaleStartDate": "2021-09-26T21:00:00Z", - "SaleEndDate": "2021-09-27T21:00:00Z" - } + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 2074, + "PurchasableItemId": 45, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 1350, - "StorefrontSaleData": null + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 3746, - "FriendlyName": "Flannel (Black)\t", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,eOJkmpSL4EypK-AQz7j8gQ,uZjxYOMa10GzJ9wQkRge2w,", + "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,Blev_VFjRUysY_nymGWAVg,f5z_jhdcqEGjo-1WUmldaw,", "AvatarItemType": 0, - "EquipmentPrefabName": "", + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Apron (Green)", + "GiftDropId": 46, "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, "SubscribersOnly": false, + "Tooltip": " Debug: 46", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 46, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Shirt (Orange)", + "GiftDropId": 47, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "SubscribersOnly": false, + "Tooltip": " Debug: 47", + "Unique": true }, "IsFeatured": false, - "NewUntil": "2021-05-30T21:00:00Z", "Prices": [ { "CurrencyType": 2, "Price": 400, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-04-30T21:00:00Z", - "SaleEndDate": "2021-05-03T21:00:00Z" - } + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 2076, + "PurchasableItemId": 47, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 3780, - "FriendlyName": "Overcoat (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "35d67043-ca27-4b8a-a893-2d42674e6e68,,,", + "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,c5884778-a87f-4612-9717-86fbb65d440f,1695608b-e9cc-4a03-b56d-0f09d2804379,", "AvatarItemType": 0, - "EquipmentPrefabName": "", + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Shirt (Blue)", + "GiftDropId": 48, "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 48", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 48, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,83522c12-9549-4d74-8c87-bae210bcd2bf,1695608b-e9cc-4a03-b56d-0f09d2804379,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-06-05T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2081, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3676, - "FriendlyName": "Shield Skin (Electric Bloom)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[QuestShield]", - "EquipmentModificationGuid": "L9usPszLFkiA6xs32es2Lw", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": true, - "Rarity": 50, - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": true, - "NewUntil": "2021-06-02T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2082, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1800, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3648, - "FriendlyName": "Cloche (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,w9I-I0GWRE-3RgOUMMlHjg,WWmx0nBo3k2nXUPPRJVJLQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-05-12T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-05-07T21:00:00Z", - "SaleEndDate": "2021-05-10T21:00:00Z" - } - } - ], - "PurchasableItemId": 2077, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3649, - "FriendlyName": "Cloche (Tan)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,bmi_S166JEGWhf_7woVL0A,WWmx0nBo3k2nXUPPRJVJLQ,", - "AvatarItemType": 0, "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", + "FriendlyName": "Bike Shirt (Black)", + "GiftDropId": 49, "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-05-12T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-05-07T21:00:00Z", - "SaleEndDate": "2021-05-10T21:00:00Z" - } - } - ], - "PurchasableItemId": 2080, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3650, - "FriendlyName": "Cloche (Teal)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,dSEiNUAZnUmErO5Vfv51zg,WWmx0nBo3k2nXUPPRJVJLQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-05-12T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-05-07T21:00:00Z", - "SaleEndDate": "2021-05-10T21:00:00Z" - } - } - ], - "PurchasableItemId": 2078, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3651, - "FriendlyName": "Cloche (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,jTG-jnKn0k-Etg_-4Gb9gw,WWmx0nBo3k2nXUPPRJVJLQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-05-12T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-05-07T21:00:00Z", - "SaleEndDate": "2021-05-10T21:00:00Z" - } - } - ], - "PurchasableItemId": 2079, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3794, - "FriendlyName": "Gunslinger Poncho", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "62a28dea-adcc-40b3-9045-917ae4f38c63,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-06-12T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 8000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2085, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 7200, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3795, - "FriendlyName": "Gunslinger Hat", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "a471995f-1fe7-4b77-a05f-8eea4e0970ab,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-06-12T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 6500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2084, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 5850, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3796, - "FriendlyName": "Gunslinger Vest", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "b0c8d3fe-d3de-4883-b63f-8cc8890537cb,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-06-12T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 7500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2086, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 6750, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2392, - "FriendlyName": "D10 Skin (Pewter)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "[Sandbox_D10]", - "EquipmentModificationGuid": "I161QAym2kqPi5wXIHCt8A", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": -1, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2020-02-12T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1064, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3716, - "FriendlyName": "I Heart Rec Room Shirt (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,HQOKcDCvVUCItkAKo2ygGg,RmjxL1O9bEGOuYxY9kzHEA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-06-12T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-05-14T21:00:00Z", - "SaleEndDate": "2021-05-17T21:00:00Z" - } - } - ], - "PurchasableItemId": 2087, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3798, - "FriendlyName": "Tray of Lattes", - "Tooltip": "Four hot lattes to share with friends.", - "ConsumableItemDesc": "P15H1ONBhk-5DYYjid1ttg", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, "SubscribersOnly": false, - "Rarity": 10, - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "Tooltip": " Debug: 49", + "Unique": true }, "IsFeatured": false, - "NewUntil": "2021-06-19T21:00:00Z", "Prices": [ { "CurrencyType": 2, - "Price": 95, - "StorefrontSaleData": null + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 2089, + "PurchasableItemId": 49, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 85, - "StorefrontSaleData": null + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 3756, - "FriendlyName": "Top Hat (Patchwork)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,xeK_acj2hE-sYGhsMRwjhw,HwhHShudGkGjXagJxCN2uA,", + "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,XNq4Cns4lEGydtktdsXlmQ,1695608b-e9cc-4a03-b56d-0f09d2804379,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Shirt (Navy)", + "GiftDropId": 50, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 50", + "Unique": true }, "IsFeatured": false, - "NewUntil": "2021-06-19T21:00:00Z", "Prices": [ { "CurrencyType": 2, - "Price": 6500, - "StorefrontSaleData": null + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 2088, + "PurchasableItemId": 50, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 5850, - "StorefrontSaleData": null + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 3609, - "FriendlyName": "Cheerful Dress (Green)", - "Tooltip": "", + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,,,", + "AvatarItemType": 0, "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Dress (Navy)", + "GiftDropId": 51, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 51", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 51, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,6e0f3af8-297f-4ea7-8f9e-4a1bc57d3e35,93987d32-7a6e-45df-af56-76f912969ce7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Dress (Purple)", + "GiftDropId": 52, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 52", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 52, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,faedf215-289b-40f7-90cc-f5b98517d133,93987d32-7a6e-45df-af56-76f912969ce7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Dress (Blue)", + "GiftDropId": 53, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 53", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 53, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,1773d5d8-4714-4721-b30c-97e25d6f2a5a,93987d32-7a6e-45df-af56-76f912969ce7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Dress (Red)", + "GiftDropId": 54, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 54", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 54, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,05K7dmjigkCByO2ufw9jtw,93987d32-7a6e-45df-af56-76f912969ce7,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Dress (Green)", + "GiftDropId": 55, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 55", + "Unique": true }, "IsFeatured": false, - "NewUntil": "2021-05-26T21:00:00Z", "Prices": [ { "CurrencyType": 2, "Price": 300, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-05-21T21:00:00Z", - "SaleEndDate": "2021-05-22T21:00:00Z" - } + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 2090, + "PurchasableItemId": 55, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 3610, - "FriendlyName": "Cheerful Dress (White)", - "Tooltip": "", - "ConsumableItemDesc": "", "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,yOw1WqEN0EWqR9t53EsQpw,93987d32-7a6e-45df-af56-76f912969ce7,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Dress (White)", + "GiftDropId": 56, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 56", + "Unique": true }, "IsFeatured": false, - "NewUntil": "2021-05-26T21:00:00Z", "Prices": [ { "CurrencyType": 2, "Price": 300, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-05-21T21:00:00Z", - "SaleEndDate": "2021-05-22T21:00:00Z" - } + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 2091, + "PurchasableItemId": 56, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 3611, - "FriendlyName": "Cheerful Dress (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,qoVZuGa5NkOmyfikHjDhXw,93987d32-7a6e-45df-af56-76f912969ce7,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Dress (Black)", + "GiftDropId": 57, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 57", + "Unique": true }, "IsFeatured": false, - "NewUntil": "2021-05-26T21:00:00Z", "Prices": [ { "CurrencyType": 2, "Price": 300, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-05-21T21:00:00Z", - "SaleEndDate": "2021-05-22T21:00:00Z" - } + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 2092, + "PurchasableItemId": 57, "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3828, - "FriendlyName": "Red Panda Hat", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "f61eb9cc-c0d3-4b45-a7b7-b6c69e5e6db4,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2093, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3662, - "FriendlyName": "Tracksuit (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,uUOO-k5KS0mU7B5BLaOpnA,adae82eb-a4b9-4541-acf2-76cea839a593,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-05-28T21:00:00Z", - "SaleEndDate": "2021-05-29T21:00:00Z" - } - } - ], - "PurchasableItemId": 2094, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3663, - "FriendlyName": "Tracksuit (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,Ijf-j7EgEkGYOKo9SQNLRw,adae82eb-a4b9-4541-acf2-76cea839a593,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-05-28T21:00:00Z", - "SaleEndDate": "2021-05-29T21:00:00Z" - } - } - ], - "PurchasableItemId": 2095, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3803, - "FriendlyName": "Winged Headphones", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "cbf478e1-a9d7-4b3f-9f52-c59271a924f6,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": true, - "Rarity": 50, - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-07-07T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2099, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3718, - "FriendlyName": "Raincoat (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,q_HcScqHgEG-x70g1wtfLA,T7zwcIIc8Ee3ud8a2JCuwQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-06-09T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-06-04T21:00:00Z", - "SaleEndDate": "2021-06-05T21:00:00Z" - } - } - ], - "PurchasableItemId": 2098, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3719, - "FriendlyName": "Raincoat (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,M-N9vQt0CEefqgmeLp3l4g,T7zwcIIc8Ee3ud8a2JCuwQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-06-09T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-06-04T21:00:00Z", - "SaleEndDate": "2021-06-05T21:00:00Z" - } - } - ], - "PurchasableItemId": 2097, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3833, - "FriendlyName": "Wedding Dress", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "74aae830-a46e-4ea7-83dd-1fc7c3a50b1f,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-07-09T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2103, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1350, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3368, - "FriendlyName": "Conductor Jacket (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "e60fccda-8711-463d-b8a3-7cd5e76903b2,Chiz8maLoEGDpZOJZEtdQg,cQUquXMk5EGt0VUCuPKBgg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-06-16T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-06-11T21:00:00Z", - "SaleEndDate": "2021-06-12T21:00:00Z" - } - } - ], - "PurchasableItemId": 2104, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3367, - "FriendlyName": "Conductor Hat (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "07205057-0804-41de-abe4-bd4027fee1df,jwXdjDbEmkOFyKZHT_RYOw,YJGsYfwkik2lp7qWqXyXTw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-06-16T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 500, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-06-11T21:00:00Z", - "SaleEndDate": "2021-06-12T21:00:00Z" - } - } - ], - "PurchasableItemId": 2101, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3369, - "FriendlyName": "Conductor Cuffs (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "8fc7aaef-adec-4534-8f91-445e4e7095d5,5Dbc8qCaY0OXEuwykM4naA,awWjleyNP0akWNYJoehCLA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-06-16T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-06-11T21:00:00Z", - "SaleEndDate": "2021-06-12T21:00:00Z" - } - } - ], - "PurchasableItemId": 2102, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3835, - "FriendlyName": "Animal Sweater (Toucan)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,yXVeN9SzQUKE_6u_2KPzgw,sWgRczvpUU6ZHeoMrMD_yw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-07-16T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2108, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3652, - "FriendlyName": "Flat Cap (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,9aYT6E9sd0OSavlmkhtkGw,73fc2e2a-a036-410b-bafa-3a07658245b5,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-06-25T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-06-18T21:00:00Z", - "SaleEndDate": "2021-06-19T21:00:00Z" - } - } - ], - "PurchasableItemId": 2105, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3653, - "FriendlyName": "Flat Cap (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,H-ypJNyVSka9as7rDFRZ_A,73fc2e2a-a036-410b-bafa-3a07658245b5,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-06-25T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-06-18T21:00:00Z", - "SaleEndDate": "2021-06-19T21:00:00Z" - } - } - ], - "PurchasableItemId": 2106, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3654, - "FriendlyName": "Flat Cap (Tan)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,-7uPJmO-wUu3cUhqo0caPg,73fc2e2a-a036-410b-bafa-3a07658245b5,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-06-25T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 150, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-06-18T21:00:00Z", - "SaleEndDate": "2021-06-19T21:00:00Z" - } - } - ], - "PurchasableItemId": 2107, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 135, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3842, - "FriendlyName": "Apocalypse Helmet", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "17f275d7-c5b1-4a0c-857f-8fb7a5d7c57a,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-07-23T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 2000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2112, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1800, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3844, - "FriendlyName": "Apocalypse Scarf", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "3e307eca-0850-4d85-8cc1-f5c176bfa7e9,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-07-23T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2113, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3847, - "FriendlyName": "Apocalypse Gloves", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "1fed823a-22bb-4225-bdc4-491da6eba875,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-07-23T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2114, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3848, - "FriendlyName": "Apocalypse Jacket", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "23944856-b567-4075-815f-261cb4655cff,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-07-23T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2115, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2700, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3279, - "FriendlyName": "Sundress (Meadow)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,sz-J7RjesE-ke3bKwumzZQ,mkNzDvyGfEijbdzAxKYrPQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-06-30T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-06-25T21:00:00Z", - "SaleEndDate": "2021-06-26T21:00:00Z" - } - } - ], - "PurchasableItemId": 2109, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3280, - "FriendlyName": "Sundress (Estate)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,6PyJEQxyd0K9TPRnvt_86Q,mkNzDvyGfEijbdzAxKYrPQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-06-30T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-06-25T21:00:00Z", - "SaleEndDate": "2021-06-26T21:00:00Z" - } - } - ], - "PurchasableItemId": 2110, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3300, - "FriendlyName": "Sundress (Vineyard)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,QlZt51mdn0WuiqKoJaIRyA,mkNzDvyGfEijbdzAxKYrPQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-06-30T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-06-25T21:00:00Z", - "SaleEndDate": "2021-06-26T21:00:00Z" - } - } - ], - "PurchasableItemId": 2111, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3797, - "FriendlyName": "Backsword (Leathered Iron)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "23b97189-b49f-477b-8a22-0903b3d236f4,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2116, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4050, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3804, - "FriendlyName": "Grillmaster Apron (Charcoal)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,vek37vRROUKnSJKVP0CH6w,t-ZEWJCgFEyGP2PjNblQMA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-07-09T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-07-02T21:00:00Z", - "SaleEndDate": "2021-07-03T21:00:00Z" - } - } - ], - "PurchasableItemId": 2117, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3818, - "FriendlyName": "Grillmaster Mitt (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "q7pSsRMNHkqEJmYHuhhG6g,x3Q0vVeG_E6juqGM1o0SOQ,ojCeJ1VwtUelyVqFnUwK5A,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-07-09T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-07-02T21:00:00Z", - "SaleEndDate": "2021-07-03T21:00:00Z" - } - } - ], - "PurchasableItemId": 2118, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3764, - "FriendlyName": "Luchador Singlet (Pouncing Tiger)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,TLrw3oncCE2MeuVifXSWTg,-_ViYCHHRUip7oN_AnH0Og,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-07-14T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2121, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3765, - "FriendlyName": "Luchador Cape (Pouncing Tiger)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,_VfdBTi7PU276qzsYKayow,qSsEcadcm0-twR1TvVcgYQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-07-14T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2122, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3766, - "FriendlyName": "Luchador Mask (Pouncing Tiger)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,RA7cizxxYE6J8yV_0XwPxA,VSLcLM0TJU2kJU5gS4KZGw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-07-14T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2123, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1350, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3846, - "FriendlyName": "Monkey Backpack", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5f6a7dee-0b44-4138-b3a7-a079dbc63e83,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": true, - "Rarity": 50, - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": true, - "NewUntil": "2021-08-07T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2124, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4050, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3723, - "FriendlyName": "Treasure Hunter Tank Top (Black)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,3qu7mxSNpkKRrYMhsWHVGg,K5NXVecrqk6Nb6SkBu08ww,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-07-14T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-07-09T21:00:00Z", - "SaleEndDate": "2021-07-10T21:00:00Z" - } - } - ], - "PurchasableItemId": 2070, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3724, - "FriendlyName": "Treasure Hunter Tank Top (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,Ij8MXrl1Okip4M7y-gF23Q,K5NXVecrqk6Nb6SkBu08ww,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-07-14T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-07-09T21:00:00Z", - "SaleEndDate": "2021-07-10T21:00:00Z" - } - } - ], - "PurchasableItemId": 2119, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3725, - "FriendlyName": "Treasure Hunter Tank Top (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,qEojxjSXm06CX52hRDJAew,K5NXVecrqk6Nb6SkBu08ww,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-07-14T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-07-09T21:00:00Z", - "SaleEndDate": "2021-07-10T21:00:00Z" - } - } - ], - "PurchasableItemId": 2120, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3837, - "FriendlyName": "Towel Cape", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "281937b2-f994-45e9-a6d3-03d097247ce6,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-07-21T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2125, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1350, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3861, - "FriendlyName": "Sarong Swimsuit", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "6ada01c9-3a82-4e21-be3f-70d6eeb24a8d,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-07-28T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 800, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2128, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 720, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3874, - "FriendlyName": "Lifeguard Whistle", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "affdc9ad-8312-4421-8f56-e35dfdaeb63a,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-07-28T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2129, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3179, - "FriendlyName": "Luau Dress (Poppy)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,IzdUC8x0F02i3BhPfEUOYw,CAqT_iLfQ0qQ-GbIdAsZow,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-07-16T21:00:00Z", - "SaleEndDate": "2021-07-17T21:00:00Z" - } - } - ], - "PurchasableItemId": 1681, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3186, - "FriendlyName": "Luau Shirt (Poppy)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,adJVA26PyUSVvmZgxkCAmQ,0WOBGm34H0ySBC10VToa9g,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-07-16T21:00:00Z", - "SaleEndDate": "2021-07-17T21:00:00Z" - } - } - ], - "PurchasableItemId": 1698, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3192, - "FriendlyName": "Luau Hat (Poppy)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,cSFt9MWLj06CDzIzATqrTg,znNiHfNdTE-szOIAnIWFQg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-07-16T21:00:00Z", - "SaleEndDate": "2021-07-17T21:00:00Z" - } - } - ], - "PurchasableItemId": 1692, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3208, - "FriendlyName": "Luau Headband (Poppy)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,B9DJPqTeYUuPnPHRbKzEJA,5ekjxLQZwUm7-iXJ0bYSiQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-07-16T21:00:00Z", - "SaleEndDate": "2021-07-17T21:00:00Z" - } - } - ], - "PurchasableItemId": 1687, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3747, - "FriendlyName": "Traveler Shirt (Yellow)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,gwdtq3NiEEmMKYtn1VPoiw,M-mi8QUHwEeIewXE8uAlrQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-07-28T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 400, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-07-23T21:00:00Z", - "SaleEndDate": "2021-07-24T21:00:00Z" - } - } - ], - "PurchasableItemId": 2126, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 360, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3753, - "FriendlyName": "Traveler Hat (Yellow)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,aiBfwCNwpUyJ0rYKCMa7qw,Cjy-bE0PikWLCRrL4U2NGQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-07-28T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-07-23T21:00:00Z", - "SaleEndDate": "2021-07-24T21:00:00Z" - } - } - ], - "PurchasableItemId": 2127, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3679, - "FriendlyName": "Football Helmet (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,X24EvVokeUqyDNdqevV2EA,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-01-29T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1886, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3680, - "FriendlyName": "Football Helmet (Gray)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,UfhOpLemQ0ypYh7CIC3W1Q,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-01-29T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 550, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1885, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 495, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3681, - "FriendlyName": "Football Shoulder Pads (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,vMqhT19x302aYEo6E9HhOA,e17481fc-b2b6-47a5-91e5-7205f45a3247,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-01-29T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1888, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3682, - "FriendlyName": "Football Shoulder Pads (Gray)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,kCqthBeVvUKZA9b76kxuVQ,e17481fc-b2b6-47a5-91e5-7205f45a3247,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-01-29T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1889, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3885, - "FriendlyName": "Prankster Jacket", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5b3cae00-88bd-4179-b75a-9444c5a52fa5,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-08-08T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2131, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4050, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3886, - "FriendlyName": "Prankster Hair ", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "76a73866-5b60-424d-b751-a105e030f46e,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-08-08T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2132, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3791, - "FriendlyName": "Royal Cape (Pink)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,DZyW-gOG9U-QLGOMFBhOoA,HTU3Wp_ri0GNYGFSezFHSg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-08-08T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2130, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3655, - "FriendlyName": "Plastic Sunglasses (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,z-yaXP9ImkysLOGuCQiblw,S21TW8NwMEWLV9zqHxWfFw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-08-15T21:00:00Z", - "Prices": [ { "CurrencyType": 2, "Price": 300, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-08-06T21:00:00Z", - "SaleEndDate": "2021-08-07T21:00:00Z" - } - } - ], - "PurchasableItemId": 2133, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 3656, - "FriendlyName": "Plastic Sunglasses (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,SmRcrycMZ0qYNsHuQQOORA,S21TW8NwMEWLV9zqHxWfFw,", + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,,,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-08-15T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-08-06T21:00:00Z", - "SaleEndDate": "2021-08-07T21:00:00Z" - } - } - ], - "PurchasableItemId": 2134, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3657, - "FriendlyName": "Plastic Sunglasses (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,0svDrGn2NkmhUjC1VJUgRg,S21TW8NwMEWLV9zqHxWfFw,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-08-15T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-08-06T21:00:00Z", - "SaleEndDate": "2021-08-07T21:00:00Z" - } - } - ], - "PurchasableItemId": 2135, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3658, - "FriendlyName": "Plastic Sunglasses (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,Aq4fjEW5gEyzetXMoG2tdQ,S21TW8NwMEWLV9zqHxWfFw,", - "AvatarItemType": 0, "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", + "FriendlyName": "Bowtie (Blue)", + "GiftDropId": 72, "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-08-15T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 300, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-08-06T21:00:00Z", - "SaleEndDate": "2021-08-07T21:00:00Z" - } - } - ], - "PurchasableItemId": 2136, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 270, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2839, - "FriendlyName": "Shark Hat", - "Tooltip": "Doo doo doo doo doo doo", - "ConsumableItemDesc": "", - "AvatarItemDesc": "13e70c80-69a4-4ad5-90e5-4dd5e03da677,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 1369, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3466, - "FriendlyName": "Bandana (Flowers, Purple)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,Z9H3wUn3_kS6pPehL74aHg,27a5df72-4095-4837-bf24-cdd3d95a43e9,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-08-22T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-08-13T21:00:00Z", - "SaleEndDate": "2021-08-14T21:00:00Z" - } - } - ], - "PurchasableItemId": 2141, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3467, - "FriendlyName": "Bandana (Flowers, Black)\t", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,J1bmomo_3Ume0KR2Yh46Uw,27a5df72-4095-4837-bf24-cdd3d95a43e9,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-08-22T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-08-13T21:00:00Z", - "SaleEndDate": "2021-08-14T21:00:00Z" - } - } - ], - "PurchasableItemId": 2142, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3734, - "FriendlyName": "Robo Logo Cap (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ee9a7c8a-7383-4a09-b44c-474b66f9008a,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-08-22T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2143, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3735, - "FriendlyName": "Robo Logo Cap (Pink)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ee9a7c8a-7383-4a09-b44c-474b66f9008a,W-xMu8n2CUuHSXfHvEL4yw,-apO3Y7om0GKhC4V_hVYdQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-08-22T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2144, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3880, - "FriendlyName": "Sushi", - "Tooltip": "15 piece premium sushi set to share with friends", - "ConsumableItemDesc": "4My42w1D1Uu3-98pXB-x_Q", - "AvatarItemDesc": "", - "AvatarItemType": null, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 110000, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": true, - "NewUntil": "2021-08-25T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2145, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3910, - "FriendlyName": "Wristbands (Plaid)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,j367nSYyg06rOMZ1GmfmFA,FS7kgc4DpkKuar24J9dW8g,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-08-25T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-08-20T21:00:00Z", - "SaleEndDate": "2021-08-21T21:00:00Z" - } - } - ], - "PurchasableItemId": 2146, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3911, - "FriendlyName": "Wristbands (Moons \u0026 Stars)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,2qYs9IkE90eppx1DggNlsA,6Y43EyTpiEejGp0ODWTSjA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-08-25T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-08-20T21:00:00Z", - "SaleEndDate": "2021-08-21T21:00:00Z" - } - } - ], - "PurchasableItemId": 2147, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3912, - "FriendlyName": "Wristbands (Polka Dot)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,JV60jZGerUWuzQ2rRnwquQ,gSb8iLTEZ0mi3g5-jZXifQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-08-25T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-08-20T21:00:00Z", - "SaleEndDate": "2021-08-21T21:00:00Z" - } - } - ], - "PurchasableItemId": 2148, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3891, - "FriendlyName": "Poodle Skirt", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "08046fdc-aafc-4b22-9917-3e7a9a7ffcd3,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-08-27T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2149, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3859, - "FriendlyName": "Graphic Cap (Holographic)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,mdSSJyipq0KvjDNQ2NyUaw,LQheTa-EvUaAonSyoWNmXg,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": true, - "NewUntil": "2021-08-27T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 8000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2150, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 7200, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3920, - "FriendlyName": "Sunglasses (Orange)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "6427bd57-fcb2-420f-8b3e-d1da43470b84,0Ytm7G4_lkmZWPA_YfaIeQ,KfM7veOVlE-dNZmsbDNZBA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "SubscribersOnly": false, + "Tooltip": " Debug: 72", + "Unique": true }, "IsFeatured": false, - "NewUntil": "2021-09-01T21:00:00Z", "Prices": [ { "CurrencyType": 2, "Price": 450, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-08-27T21:00:00Z", - "SaleEndDate": "2021-08-29T21:00:00Z" - } + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 2151, + "PurchasableItemId": 72, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 3921, - "FriendlyName": "Sunglasses (White)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "6427bd57-fcb2-420f-8b3e-d1da43470b84,dZM1bs6_MU2F6Vz1mH0QKg,KfM7veOVlE-dNZmsbDNZBA,", + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,724c79a3-822c-422f-9462-a5374ee0211c,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowtie (White)", + "GiftDropId": 73, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 73", + "Unique": true }, "IsFeatured": false, - "NewUntil": "2021-09-01T21:00:00Z", "Prices": [ { "CurrencyType": 2, "Price": 450, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-08-27T21:00:00Z", - "SaleEndDate": "2021-08-29T21:00:00Z" - } - } - ], - "PurchasableItemId": 2152, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3831, - "FriendlyName": "Elven Crown", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "8ff44820-2c4a-4a0b-b409-5b46b6c9e21c,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": true, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2154, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2700, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3832, - "FriendlyName": "Elven Cape", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "a37c3161-1476-44b0-a9d1-d6eb854db2d9,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": true, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2155, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3150, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3836, - "FriendlyName": "Elven Armor", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "485bbda2-37e8-45a7-90db-7c35518dcdd0,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": true, - "Rarity": 50, - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": true, - "NewUntil": "2021-09-03T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 2500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2156, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2250, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3838, - "FriendlyName": "Elven Bracer", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "74042b5f-f29e-4e72-b3b1-04e6abaed4a4,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 750, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2157, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 675, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3774, - "FriendlyName": "Leather Necklace (Red)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,SDbpnjVYmEGQneK5fhZ0Cw,FwjsTo0nb0uNU6l8XvllNA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-09-03T21:00:00Z", - "SaleEndDate": "2021-09-04T21:00:00Z" - } - } - ], - "PurchasableItemId": 2158, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3777, - "FriendlyName": "Leather Necklace (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,uwoWPY4YjEmZSQcNCrx1Gg,FwjsTo0nb0uNU6l8XvllNA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-09-03T21:00:00Z", - "SaleEndDate": "2021-09-04T21:00:00Z" - } - } - ], - "PurchasableItemId": 2159, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3778, - "FriendlyName": "Leather Necklace (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,COZbkLDc20mdUlWSkqMX-w,FwjsTo0nb0uNU6l8XvllNA,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 250, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-09-03T21:00:00Z", - "SaleEndDate": "2021-09-04T21:00:00Z" - } - } - ], - "PurchasableItemId": 2160, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 225, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3914, - "FriendlyName": "Rogue Gloves", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "4b72736e-6fca-4961-98f2-1d4e199eb1e0,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-09-15T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2161, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3916, - "FriendlyName": "Rogue Shirt", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "155c13b9-3c72-4314-85ac-6fbac19cdc76,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-09-15T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 900, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2162, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 810, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3918, - "FriendlyName": "Rogue Cape", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "63b5196e-881a-4b96-82c8-9df54de4a506,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": true, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 4000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2163, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3600, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3618, - "FriendlyName": "Belted Dress (Light Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,oJFfs62tR0WVRry2Smt8yA,3d971439-41d1-43a2-8434-704f9ec8d906,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-09-10T21:00:00Z", - "SaleEndDate": "2021-09-11T21:00:00Z" - } - } - ], - "PurchasableItemId": 2164, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3619, - "FriendlyName": "Belted Dress (Purple)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,MIfCkcrFOEasJqfDmxThdw,3d971439-41d1-43a2-8434-704f9ec8d906,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 10, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-09-15T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 200, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-09-10T21:00:00Z", - "SaleEndDate": "2021-09-11T21:00:00Z" - } - } - ], - "PurchasableItemId": 2165, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 180, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3930, - "FriendlyName": "Bard's Hat", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "b17591ba-3c2d-4309-ab01-b6743424e07e,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": true, - "NewUntil": "2021-09-22T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 450, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2175, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 405, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3932, - "FriendlyName": "Bard's Vest", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "f23e86eb-8b59-4b32-a72a-5d382568e399,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": true, - "NewUntil": "2021-09-22T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 1250, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2176, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1125, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3917, - "FriendlyName": "Wolf Amulet", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "fb2a0e86-3363-4579-9f18-f41138dc85ba,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": true, - "Rarity": 50, - "Context": 21, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": true, - "NewUntil": "2021-10-06T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 1500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2250, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 1350, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3933, - "FriendlyName": "Bard's Cuffs", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "4b4d239a-ddf3-4f8c-a58a-b8f4c031ae26,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-09-22T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 700, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2177, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 630, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3931, - "FriendlyName": "Backsword (Wolf Steel)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "23b97189-b49f-477b-8a22-0903b3d236f4,GfC01_o8QkGTbnGNjv_DSw,7mLb5jMJMUug7Nzwxv6D4A,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-09-17T21:00:00Z", - "SaleEndDate": "2021-09-18T21:00:00Z" - } - } - ], - "PurchasableItemId": 2179, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4050, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3939, - "FriendlyName": "Cleric Gloves", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "b1ca1dc4-6867-48b6-a332-4efff06a5db1,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2181, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3940, - "FriendlyName": "Cleric Headpiece", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "b73ae23b-c911-4b09-a803-40999bdef6b8,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": true, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 2400, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2182, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 2160, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3941, - "FriendlyName": "Cleric Armor", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "1bd891b1-6ec0-4227-9ed8-73c59af4f819,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": true, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 5500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2183, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4950, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3690, - "FriendlyName": "RecFly Vest (Blue)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,GVoh3mdWf0WNA9lfqL1GEw,w9qG5gHlAUqh8f9ZgnezsQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-09-29T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-09-24T21:00:00Z", - "SaleEndDate": "2021-09-25T21:00:00Z" - } - } - ], - "PurchasableItemId": 2184, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3691, - "FriendlyName": "RecFly Vest (Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,x4PPvuhg6USE6GSFgZZnCg,w9qG5gHlAUqh8f9ZgnezsQ,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 20, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": "2021-09-29T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 600, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-09-24T21:00:00Z", - "SaleEndDate": "2021-09-25T21:00:00Z" - } - } - ], - "PurchasableItemId": 2185, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 540, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3888, - "FriendlyName": "Gladiator Armor", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "52268f02-b8ba-4a8e-ab3a-7d5928f637a6,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 923, - "ItemSetFriendlyName": "Gladiator Set" - }, - "IsFeatured": true, - "NewUntil": "2021-10-06T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 3500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2251, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3150, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3889, - "FriendlyName": "Gladiator Cape", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "1633766e-fa77-48f3-8c6c-a233e56bf320,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 923, - "ItemSetFriendlyName": "Gladiator Set" - }, - "IsFeatured": true, - "NewUntil": "2021-10-06T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 4000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2252, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 3600, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3890, - "FriendlyName": "Gladiator Helmet", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "594a69fb-9f76-4f83-b2aa-94f0e72e996c,,,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": 923, - "ItemSetFriendlyName": "Gladiator Set" - }, - "IsFeatured": true, - "NewUntil": "2021-10-06T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2253, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4050, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 3358, - "FriendlyName": "Winged Hat (Vintage)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,nn86ATWxekWdIGlPePPgGQ,njEWOjNEQEWCEqmytodpow,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 30, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": true, - "NewUntil": "2021-10-08T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 850, - "StorefrontSaleData": { - "SalePercent": 10, - "SaleStartDate": "2021-10-01T21:00:00Z", - "SaleEndDate": "2021-10-02T21:00:00Z" - } - } - ], - "PurchasableItemId": 2198, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 765, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 69, - "FriendlyName": "Class of 2016", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,5864d23d-1a86-40a6-a52c-46ee670e4508,2ee3944d-e9fb-4959-973e-570a7fc6cc57,167ba0d4-4fac-4143-b5ae-1dbd8e02dc76", - "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": true, - "NewUntil": "2021-10-06T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null + "StorefrontSaleData": null, + "Type": 0 } ], "PurchasableItemId": 73, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 4050, - "StorefrontSaleData": null + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 70, - "FriendlyName": "Birthday Shirt", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,922f229c-124f-4f07-b4e3-19138420ca19,2ee3944d-e9fb-4959-973e-570a7fc6cc57,ceb07e4f-50a9-4ed0-b50b-c59d92ba66b5", + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,8377ab96-c908-457f-9fee-b784c9a759f3,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowtie (Red)", + "GiftDropId": 74, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 74", + "Unique": true }, - "IsFeatured": true, - "NewUntil": "2021-10-06T21:00:00Z", + "IsFeatured": false, "Prices": [ { "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 } ], "PurchasableItemId": 74, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 4050, - "StorefrontSaleData": null + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 2740, - "FriendlyName": "Note Headphones (Gold)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "akAhnN0cFkecj8q3spixkw,,,", + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,e69372eb-2fd8-4e17-a448-ee0be61a2c7a,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowtie (Black)", + "GiftDropId": 75, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 75", + "Unique": true }, - "IsFeatured": true, - "NewUntil": "2021-10-06T21:00:00Z", + "IsFeatured": false, "Prices": [ { "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 2254, + "PurchasableItemId": 75, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 4050, - "StorefrontSaleData": null + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 2751, - "FriendlyName": "Notes Headphones (Neon Purple)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,3PfP661Fg0CruzRxis9EiA,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,e4IDo-fuH0C9YByzcX5k-A,qCIoeLQw-Uq-SKIetIgIpA,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Bow Tie (Red)", + "GiftDropId": 77, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 77", + "Unique": true }, - "IsFeatured": true, - "NewUntil": "2021-10-06T21:00:00Z", + "IsFeatured": false, "Prices": [ { "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 77, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,dee70c38-7a99-4c2b-9181-665f1bf75aca,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Blue)", + "GiftDropId": 80, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 80", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 80, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,0ecb8a2a-cffc-47db-aeda-fb0684aef1e5,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Grey)", + "GiftDropId": 81, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 81", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 81, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,8377ab96-c908-457f-9fee-b784c9a759f3,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Red)", + "GiftDropId": 82, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 82", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 82, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,724c79a3-822c-422f-9462-a5374ee0211c,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (White)", + "GiftDropId": 83, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 83", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 83, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,67bcca75-4ab1-4964-8688-9908c464d355,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Yellow)", + "GiftDropId": 84, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 84", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 84, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,ojvIFCTpJkeegestF065wA,10fYSIBytk-yUjveDa407w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Shirt (Plaid)", + "GiftDropId": 93, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 93", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 93, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,071d1bf3-86dc-4a31-b54a-e6579fab8649,d015cae7-a905-49e4-8823-6dec069689a6,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Shirt (Purple)", + "GiftDropId": 95, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 95", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 95, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e139dd9-4757-43a8-8546-8da70dc17f0a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ranger Stache", + "GiftDropId": 105, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 105", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 105, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, Orange)", + "GiftDropId": 106, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 106", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 106, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,827a1538-51bb-4fef-99c1-7f1bebd9866c,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Dots, Red)", + "GiftDropId": 107, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 107", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 107, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Dots, Blue)", + "GiftDropId": 108, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 108", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 108, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,6dd95046-acf8-42fe-ab78-80a334096a9d,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Dots, White)", + "GiftDropId": 109, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 109", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 109, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,40ldoL7MAUKnb5JA68CMBA,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Dots, Green)", + "GiftDropId": 112, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 112", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 112, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,827a1538-51bb-4fef-99c1-7f1bebd9866c,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, Red)", + "GiftDropId": 113, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 113", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 113, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, Blue)", + "GiftDropId": 114, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 114", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 114, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,6dd95046-acf8-42fe-ab78-80a334096a9d,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, White)", + "GiftDropId": 115, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 115", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 115, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,Z9H3wUn3_kS6pPehL74aHg,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, Purple)", + "GiftDropId": 116, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 116", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 116, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,J1bmomo_3Ume0KR2Yh46Uw,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, Black)\t", + "GiftDropId": 117, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 117", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 117, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,40ldoL7MAUKnb5JA68CMBA,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, Green)", + "GiftDropId": 118, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 118", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 118, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,827a1538-51bb-4fef-99c1-7f1bebd9866c,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Plaid, Red)", + "GiftDropId": 119, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 119", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 119, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Plaid, Blue)", + "GiftDropId": 120, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 120", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 120, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,6dd95046-acf8-42fe-ab78-80a334096a9d,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Plaid, White)", + "GiftDropId": 121, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 121", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 121, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,40ldoL7MAUKnb5JA68CMBA,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Plaid, Green)", + "GiftDropId": 124, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 124", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 124, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cca7ab3d-5609-4700-92fd-3280fcea9b77,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 1002, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Stache", + "GiftDropId": 125, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 125", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 125, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Vest (Brown)", + "GiftDropId": 126, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 126", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 126, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,192ba73d-6990-42da-8fe0-914c2a7181eb,98553538-cafd-4df9-8f37-bb0a4bb478a5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Vest (Black, Gold)", + "GiftDropId": 127, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 127", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 127, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,5e00a832-3f25-4dd3-84d2-b6ed6a4b4c37,98553538-cafd-4df9-8f37-bb0a4bb478a5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Vest (Yellow)", + "GiftDropId": 128, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 128", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 128, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,624c85e5-095a-48b6-85fb-c9bbade19a8d,98553538-cafd-4df9-8f37-bb0a4bb478a5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Vest (Cherry)", + "GiftDropId": 129, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 129", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 129, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,K5vPqD3BrEuODRDzFdC6Hw,98553538-cafd-4df9-8f37-bb0a4bb478a5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Vest (Black, Silver)", + "GiftDropId": 131, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 131", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 131, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "30380607-8b54-4b63-81d3-cb3f08e452c1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Dress (Red)", + "GiftDropId": 136, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 136", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 136, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "30380607-8b54-4b63-81d3-cb3f08e452c1,rcdwgNvO30Cvx2ycE1GfHw,JmFzNL5v_0q1p0bgoOlBpQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Dress (Black)", + "GiftDropId": 137, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 137", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 137, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9a366f8b-ea5b-49ae-a98c-f6b282e9bf14,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Dress (Gold Sequins)", + "GiftDropId": 138, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 138", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 138, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "73a119ab-d2c8-4da9-98b2-29edbb38e2c2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Dress (Red Sequins)", + "GiftDropId": 139, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 139", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 139, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "73c0e2ba-cba1-482a-89d5-1508997aceeb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Dress (Silver Sequins)", + "GiftDropId": 140, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 140", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 140, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6fccd476-c621-4f3f-b2e3-45c95be912b5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jacket Dress (Red) ", + "GiftDropId": 141, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 141", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 141, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6fccd476-c621-4f3f-b2e3-45c95be912b5,v_5qFi-vAUSDd1fLNL7pvA,X0_GvGrZGkSP9Ub81CHgqQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jacket Dress (Green)", + "GiftDropId": 142, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 142", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 142, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6fccd476-c621-4f3f-b2e3-45c95be912b5,y5O8zRJy4kuhnXzATSWKew,X0_GvGrZGkSP9Ub81CHgqQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jacket Dress (Blue)", + "GiftDropId": 143, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 143", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 143, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Dress (Primrose)", + "GiftDropId": 144, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 144", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 144, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,IzdUC8x0F02i3BhPfEUOYw,CAqT_iLfQ0qQ-GbIdAsZow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Dress (Poppy)", + "GiftDropId": 146, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 146", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 146, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,nPUQvBsxu0mzhQg9YnWEgw,CAqT_iLfQ0qQ-GbIdAsZow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Dress (Paradise)", + "GiftDropId": 147, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 147", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 147, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,wyKAZSZwT0u9cuSaQ_-IHg,vUgpsaXrO0ak7huhkHqlUA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Dress (Begonia)", + "GiftDropId": 148, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 148", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 148, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,_OM7UNZENEejgO5h7H1ztg,vUgpsaXrO0ak7huhkHqlUA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Dress (Dahlia)", + "GiftDropId": 149, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 149", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 149, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fd7774bb-b29c-40b5-84b1-5c2bbe574255,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mermaid Dress", + "GiftDropId": 150, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 150", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 150, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "936d7126-a3b7-48a2-bceb-6cad9221b267,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Moons & Stars Dress ", + "GiftDropId": 151, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 151", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 151, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,OJYpuFw810Sg4bTw0XQf-g,NqU5Mw75BE6kPaD8t11Qow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Lodge)", + "GiftDropId": 153, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 153", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 153, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,t4gMAKp4L0WBaTGf_rtqFw,NqU5Mw75BE6kPaD8t11Qow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Yacht)", + "GiftDropId": 154, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 154", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 154, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,rGMFdPKmK02_OvIIFYlAxA,NqU5Mw75BE6kPaD8t11Qow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Veranda)", + "GiftDropId": 155, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 155", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 155, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,wxvSDMommkenIl5hTY2fdQ,thwvF0DFRk-mV99ruqYFoQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Seafoam)", + "GiftDropId": 156, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 156", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 156, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,-sqfCQpzpUyjEShEXH9JYQ,thwvF0DFRk-mV99ruqYFoQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Sunrise)", + "GiftDropId": 157, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 157", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 157, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,sz-J7RjesE-ke3bKwumzZQ,mkNzDvyGfEijbdzAxKYrPQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Meadow)", + "GiftDropId": 159, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 159", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 159, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,QlZt51mdn0WuiqKoJaIRyA,mkNzDvyGfEijbdzAxKYrPQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Vineyard)", + "GiftDropId": 160, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 160", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 160, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,6PyJEQxyd0K9TPRnvt_86Q,mkNzDvyGfEijbdzAxKYrPQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Estate)", + "GiftDropId": 161, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 161", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 161, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1988692c-aae3-450b-acd6-e9015b831f5c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Gal Armor", + "GiftDropId": 162, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 162", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 162, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Dress (Blue)", + "GiftDropId": 163, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 163", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 163, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,GQSpXmD0B02_gwzpq6StFA,ORmS9HkfoUeFuO4RhqcW7g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Dress (Red)", + "GiftDropId": 164, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 164", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 164, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,YvPeCbQS2UOcLjPfoIML_g,ORmS9HkfoUeFuO4RhqcW7g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Dress (Yellow)", + "GiftDropId": 165, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 165", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 165, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,zGOD45zNAk2i6P_zPsNPfg,ORmS9HkfoUeFuO4RhqcW7g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Dress (Green)", + "GiftDropId": 166, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 166", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 166, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74aae830-a46e-4ea7-83dd-1fc7c3a50b1f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wedding Dress", + "GiftDropId": 167, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 167", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 167, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (June Pearl)", + "GiftDropId": 168, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 168", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 168, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,46f7Ewe99E6tF2qFaMtQ0g,8IK1U23XlUOV-2ibVznkDQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (April Diamond)", + "GiftDropId": 170, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 170", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 170, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,R0f3hHGY9UqUEW4aR1fssA,KSqfmVTiGUKOKijwGDSwgQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (May Emerald)", + "GiftDropId": 171, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 171", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 171, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,ZsWc8wRafEGl3B7cr6UkzA,ByIfwCtDwU-p9rEfqpjfGg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (August Peridot)", + "GiftDropId": 173, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 173", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 173, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,kQD41xK4dU6dI_6pRkP0qA,aSeusgYlPE6vOBu9Ua_dWA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (September Sapphire)", + "GiftDropId": 174, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 174", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 174, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,ro4sD9txVE29_eT2jK-wEg,0YF5bACMsk2sN4tixbJbKw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (October Opal)", + "GiftDropId": 175, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 175", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 175, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,-YsxhNXLAk2qbeXMqwAqng,aNOhXS4nuUeqs0CVw6K7Hg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (November Citrine)", + "GiftDropId": 176, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 176", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 176, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,imOiYzABkUm9C5EVzvjXgg,0eZVIsv7wUyZ0ohLmF1jGQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (December Turquoise)", + "GiftDropId": 177, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 177", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 177, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,FgLAEMh1e0GyHO8J8_xj5Q,iM-04HpG6k2N8n-P3XS22w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (January Garnet)", + "GiftDropId": 178, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 178", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 178, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,C9CZUwEZeUiuOue4CK4luA,gUxl7WNXlUqFYHZ9eGq1cg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (February Amethyst)", + "GiftDropId": 179, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 179", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 179, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Goggles (Brown)", + "GiftDropId": 190, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 190", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 190, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,7b82c3c5-fd1f-45ec-b83f-e32668aa8dce,556f876a-70da-4104-b792-fca8ad67be0c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Goggles (Black)", + "GiftDropId": 191, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 191", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 191, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,23428ca9-be75-4146-b400-df01d1dadac9,556f876a-70da-4104-b792-fca8ad67be0c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Goggles (Tan)", + "GiftDropId": 192, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 192", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 192, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,qJGX62O_HUiZWN61NAc1Lg,556f876a-70da-4104-b792-fca8ad67be0c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Goggles (Red)", + "GiftDropId": 193, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 193", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 193, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "_qXaNbm4yEeyalo372QbvA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Biker Goggles", + "GiftDropId": 194, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 194", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 194, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "TcgHS_0aPkehrBg7ytMOMQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Clubmaster Glasses", + "GiftDropId": 195, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 195", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 195, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d4f86b2b-0fa3-4264-9eac-cf15b62463bd,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Resistance Shades", + "GiftDropId": 200, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 200", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 200, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7db6b49f-3e2a-4da8-bdfa-e9ad9ebc5ba6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mirrored Glasses (Gold)", + "GiftDropId": 201, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 201", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 201, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7db6b49f-3e2a-4da8-bdfa-e9ad9ebc5ba6,f841cdfa-45ba-4f09-a117-503eef34cb4b,9c55b609-b7dc-4070-a3ad-6351a0054a06,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mirrored Glasses (Silver)", + "GiftDropId": 202, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 202", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 202, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d57cf97e-b5d2-4e47-8231-a226a161f6e3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Shades (Pink)", + "GiftDropId": 204, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 204", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 204, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f684d86f-4a75-4a9a-bc0a-cf58f36c91c5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Shades (Yellow)", + "GiftDropId": 208, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 208", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 208, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc7299ac-be2b-404f-b8e6-402e2c0660f0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Round Glasses", + "GiftDropId": 211, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 211", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 211, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "02a5b48c-abba-4385-967b-ba900424829e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Monocle", + "GiftDropId": 212, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 212", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 212, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c28e450-8e12-455c-a4c8-c0a2160d4190,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Goggles (Orange)", + "GiftDropId": 217, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 217", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 217, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c28e450-8e12-455c-a4c8-c0a2160d4190,DRS8xu3AqUOy2L0RKF3f7g,A7Y52vGIN0ijEKsWR_GQLg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Goggles (Blue)", + "GiftDropId": 218, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 218", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 218, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5fwjFQoC_Uu9ChvF6uNGZw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Goggles (Summit)", + "GiftDropId": 225, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 225", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 225, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5fwjFQoC_Uu9ChvF6uNGZw,fXNkMWFMV0aXalK_y_8SHw,SSY8ZYMgaE2Bl4oFmMjKQA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Goggles (Chill)", + "GiftDropId": 226, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 226", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 226, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22pyI3Kz-UullhcebC6DLQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snorkel", + "GiftDropId": 227, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 227", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 227, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "771863b6-70d1-4f48-9c64-c621ce0fea46,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowy Owl Mask", + "GiftDropId": 228, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 228", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 228, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "771863b6-70d1-4f48-9c64-c621ce0fea46,HWAWBHI3zkGsh06he9CoPg,UAeSz-XeZUaZsk9FNlPX5w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowy Owl Mask (Raven)", + "GiftDropId": 230, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 230", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 230, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "kghEf_iMKUSxPO-h5iRhSQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Classic Glasses", + "GiftDropId": 231, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 231", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 231, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CdeM6RJmPUumXtdmdM3RXA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Goggles", + "GiftDropId": 232, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 232", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 232, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CdeM6RJmPUumXtdmdM3RXA,mZ2ASMrs80axStLp9g1enA,dGzmSibucEe7i1HD7lPcNQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Goggles (Silver)", + "GiftDropId": 233, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 233", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 233, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cbN5e-t_jEKa4hzir5JAxQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Traveler Shades", + "GiftDropId": 234, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 234", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 234, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "767684e7-0eec-4f6e-ad58-3d5ae715206e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Retro Sunglasses", + "GiftDropId": 235, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 235", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 235, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "657efe89-620a-46a2-8b58-cafd855c7cd5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerleader Skirt (Pride)", + "GiftDropId": 236, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 236", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 236, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "657efe89-620a-46a2-8b58-cafd855c7cd5,eWf2c62cqEOkRukLzhl_wQ,KFq8d1VsO0KDqBWUj4qRFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerleader Skirt (Victory)", + "GiftDropId": 237, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 237", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 237, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a986ff33-9e16-4219-8ebb-2e7b4c772ca7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Field Hockey Uniform (Red)", + "GiftDropId": 242, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 242", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 242, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a986ff33-9e16-4219-8ebb-2e7b4c772ca7,7b0d6661-e856-4ec1-ab90-d89c28a70826,1fede91a-434e-49a5-882e-e6db107112a8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Field Hockey Uniform (Blue)", + "GiftDropId": 243, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 243", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 243, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1b37d6cd-0a89-4604-a046-e5cff55b0cf6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Firefighter Jacket", + "GiftDropId": 244, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 244", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 244, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Swimsuit (Yellow)", + "GiftDropId": 245, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 245", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 245, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,cf515c87-3c0a-4443-9f63-5ea1bdbaa61a,3248a3ec-50d1-4c0a-96ae-25eb9d8ed622,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Swimsuit (White)", + "GiftDropId": 246, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 246", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 246, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,27680277-aec1-41be-a476-9f51cf775580,3248a3ec-50d1-4c0a-96ae-25eb9d8ed622,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Swimsuit (Purple)", + "GiftDropId": 247, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 247", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 247, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,5a96ac4d-03c3-4214-9dcb-c2044ff28f2e,3248a3ec-50d1-4c0a-96ae-25eb9d8ed622,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Swimsuit (Grey)", + "GiftDropId": 248, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 248", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 248, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Shoulder Pads (White)", + "GiftDropId": 249, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 249", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 249, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,32dde6dc-e3dc-43ee-9b7c-987bc6778c17,e17481fc-b2b6-47a5-91e5-7205f45a3247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Shoulder Pads (Orange)", + "GiftDropId": 250, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 250", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 250, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,88c3ed05-ce41-4a9d-a4a7-8a428d240b3f,e17481fc-b2b6-47a5-91e5-7205f45a3247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Shoulder Pads (Black)", + "GiftDropId": 251, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 251", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 251, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,vMqhT19x302aYEo6E9HhOA,e17481fc-b2b6-47a5-91e5-7205f45a3247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Shoulder Pads (Red)", + "GiftDropId": 252, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 252", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 252, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,kCqthBeVvUKZA9b76kxuVQ,e17481fc-b2b6-47a5-91e5-7205f45a3247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Shoulder Pads (Gray)", + "GiftDropId": 255, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 255", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 255, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "77c37481-a185-47ff-af55-65f9fdfcf9e5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fur Coat (Brown)", + "GiftDropId": 257, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 257", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 257, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "77c37481-a185-47ff-af55-65f9fdfcf9e5,43501b0c-eaaa-4ab3-9d03-2ca61d2e8fc9,2c0d912d-c184-4eab-8ee4-73b90ba7b0a6,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fur Coat (Black)", + "GiftDropId": 258, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 258", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 258, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "77c37481-a185-47ff-af55-65f9fdfcf9e5,643b5f2d-0666-4869-b699-03742de34d16,2c0d912d-c184-4eab-8ee4-73b90ba7b0a6,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fur Coat (White)", + "GiftDropId": 259, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 259", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 259, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34144f4c-f6ef-49e5-a286-1781e82e6782,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Goggles", + "GiftDropId": 260, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 260", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 260, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b89be768-a169-4b24-8022-751e7b817865,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Visor (Nova)", + "GiftDropId": 271, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 271", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 271, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b89be768-a169-4b24-8022-751e7b817865,SXG9rdEkxkOR31Nk0aTOww,uB4gFxfrh0W5OtkmZdFN1Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Visor (Quasar)", + "GiftDropId": 272, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 272", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 272, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b89be768-a169-4b24-8022-751e7b817865,FFIpxInE-EKbk2GY-pIkyg,uB4gFxfrh0W5OtkmZdFN1Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Visor (Nebula)", + "GiftDropId": 273, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 273", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 273, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f527ffaf-da03-4519-82ed-46a9cb981dc3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Square Glasses (Purple)", + "GiftDropId": 281, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 281", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 281, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f527ffaf-da03-4519-82ed-46a9cb981dc3,a1c51d1e-1d5f-4f8a-bc0f-6a20eddfe58a,e0186718-4a18-434b-b96e-0c9c912f0d1f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Square Glasses (Red)", + "GiftDropId": 282, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 282", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 282, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f527ffaf-da03-4519-82ed-46a9cb981dc3,c5884778-a87f-4612-9717-86fbb65d440f,e0186718-4a18-434b-b96e-0c9c912f0d1f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Square Glasses (Blue)", + "GiftDropId": 283, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 283", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 283, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6427bd57-fcb2-420f-8b3e-d1da43470b84,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sunglasses (Black)", + "GiftDropId": 284, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 284", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 284, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6427bd57-fcb2-420f-8b3e-d1da43470b84,0Ytm7G4_lkmZWPA_YfaIeQ,KfM7veOVlE-dNZmsbDNZBA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sunglasses (Orange)", + "GiftDropId": 286, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 286", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 286, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bf13fa1c-f991-4aaa-9402-aac109be9562,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winner's Medal (Gold)", + "GiftDropId": 287, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 287", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 287, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bf13fa1c-f991-4aaa-9402-aac109be9562,ERnUPsyT6kuEnIRZF8zPwg,wzt-5C_LjEmIQWUVPcYWhA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winner's Medal (Silver)", + "GiftDropId": 288, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 288", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 288, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bf13fa1c-f991-4aaa-9402-aac109be9562,iaDL2im4lkCXUo0NWM-F3g,wzt-5C_LjEmIQWUVPcYWhA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winner's Medal (Bronze)", + "GiftDropId": 289, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 289", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 289, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d13a7a2-8213-40e6-90a6-efdd76a3fdcb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flowing Hair", + "GiftDropId": 302, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 302", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 302, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "BJ2XrGvl40iIl28IbTfbKg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Ponytail", + "GiftDropId": 306, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 306", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 306, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fbdca48d-4ae6-41ad-8c33-b70a9e33fd77,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 11, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Action Hair", + "GiftDropId": 312, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 312", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 312, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "49397e16-1027-4286-9bc4-b59eae565ff0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Side Pony Hair", + "GiftDropId": 313, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 313", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 313, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e49d5d78-157e-4bc8-b878-ff7c4963fdc4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mohawk Hair", + "GiftDropId": 320, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 320", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 320, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2b7f4dae-51da-4af0-b009-12d6005c85c6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mullet Hair", + "GiftDropId": 321, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 321", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 321, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76a73866-5b60-424d-b751-a105e030f46e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Prankster Hair ", + "GiftDropId": 327, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 327", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 327, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ce250e13-8137-4f62-9e52-2b1cebe7d0ad,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Hawk Hair", + "GiftDropId": 329, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 329", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 329, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shutter Shades (Blue)", + "GiftDropId": 340, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 340", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 340, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,ZpcM5H2Q1UCt0hh82nSu9w,tqyzKPdDwkWq3jfZ8jZdaA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shutter Shades (Pink)", + "GiftDropId": 341, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 341", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 341, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,7B7vpnMTfkGLcMdHCZ_kWA,tqyzKPdDwkWq3jfZ8jZdaA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shutter Shades (Red)", + "GiftDropId": 342, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 342", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 342, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,nO-YacKU1kmLjTFAAqNeYQ,tqyzKPdDwkWq3jfZ8jZdaA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shutter Shades (Yellow)", + "GiftDropId": 343, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 343", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 343, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,76CA_KCr806y1FA35m-YTg,tqyzKPdDwkWq3jfZ8jZdaA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shutter Shades (Orange)", + "GiftDropId": 344, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 344", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 344, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,61VZkFjB402brzWm4UsftA,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Hat (Grey)", + "GiftDropId": 357, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 357", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 357, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f218e2de-46fd-45b9-9e0e-670b6bb905e7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Astronaut Helmet (White)", + "GiftDropId": 361, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 361", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 361, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f218e2de-46fd-45b9-9e0e-670b6bb905e7,JFalLDUvm0aMm3wh1UVfVg,iQjkS1xYP0S63ltvKpkz5g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Astronaut Helmet (Orange)", + "GiftDropId": 362, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 362", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 362, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Hat (Brown)", + "GiftDropId": 363, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 363", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 363, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,a8de80d3-286a-4fdc-bed2-75d52f8c0964,ff5ae41e-e446-4a96-8c11-49d85556fa81,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Hat (Black)", + "GiftDropId": 364, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 364", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 364, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,c6cf096c-f0cb-4500-80a0-bc2916b5a426,ff5ae41e-e446-4a96-8c11-49d85556fa81,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Hat (Tan)", + "GiftDropId": 365, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 365", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 365, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,FjnZ-D1hcESLOWL4Ukv7kw,ff5ae41e-e446-4a96-8c11-49d85556fa81,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Hat (Red)", + "GiftDropId": 366, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 366", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 366, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "49800740-33d6-4280-aefb-3497597c6366,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Folded Bandana (Red) ", + "GiftDropId": 367, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 367", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 367, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "07023692-97e1-4a65-a881-64ca6b4ae08e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbarian Helm ", + "GiftDropId": 368, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 368", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 368, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "dcf9012d-f9e9-4f15-872e-f130af3b2efa,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Hat (Red)", + "GiftDropId": 369, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 369", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 369, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "dcf9012d-f9e9-4f15-872e-f130af3b2efa,631c9015-2a00-47ea-bb35-465a2ddbca5d,83158223-e268-4036-8a6a-218a8430eb2c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Hat (Black)", + "GiftDropId": 370, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 370", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 370, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "dcf9012d-f9e9-4f15-872e-f130af3b2efa,7f9cb939-36a4-40da-8337-025e1d7bf8e5,83158223-e268-4036-8a6a-218a8430eb2c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Hat (Green)", + "GiftDropId": 371, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 371", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 371, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,pqLkLbri9Eu48eryQIFGMg,_yznwUwL80ejrS3vki0IKg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graphic Cap (Goblins)", + "GiftDropId": 380, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 380", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 380, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,5iCrYb8MBkqN6IBEe3IipQ,SroEVC6vBkG42ILwCtKB9w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graphic Cap (Buckaneer)", + "GiftDropId": 381, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 381", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 381, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,nZor-clxlkm8EO9Gco0Otg,r_GLekt6mkWxXw8zPPR8Mg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (White, Red, Blue)", + "GiftDropId": 382, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 382", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 382, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,M8IYDK6aTUyn5mRhr51GtA,r_GLekt6mkWxXw8zPPR8Mg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (White, Orange, Black)", + "GiftDropId": 383, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 383", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 383, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,yxWEn-oaYE2YvvnrTVV5WQ,r_GLekt6mkWxXw8zPPR8Mg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (White, Turquoise, Grey)", + "GiftDropId": 384, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 384", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 384, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,XLYLo5qgW0eociGDgQ16PA,r_GLekt6mkWxXw8zPPR8Mg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (White, Yellow, Blue)", + "GiftDropId": 385, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 385", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 385, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,Vk1n941ZgkKrhrL9mh18oA,lxmw7EbzsUuoy0roRy5McQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graphic Cap (Minitron)", + "GiftDropId": 386, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 386", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 386, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,mdSSJyipq0KvjDNQ2NyUaw,LQheTa-EvUaAonSyoWNmXg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graphic Cap (Holographic)", + "GiftDropId": 387, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 387", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 387, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "474db08a-d4dc-4625-9f5a-1a6ae0b70827,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graphic Cap (High Fashion)", + "GiftDropId": 388, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 388", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 388, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "474db08a-d4dc-4625-9f5a-1a6ae0b70827,cpTKHXjj0kulivZCKVQqiA,Mrf17aidXEeCF-fFURUUcQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graphic Cap (Hyper Ramen)", + "GiftDropId": 391, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 391", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 391, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "293e7ad3-01c9-43af-96e3-06c34145ff12,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Helmet (Blue)", + "GiftDropId": 392, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 392", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 392, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "293e7ad3-01c9-43af-96e3-06c34145ff12,9967ce54-c2b7-437a-946e-11f8ee6d6fdd,FVdDQFOMQ06teQm2ANDPng,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Helmet (Green)", + "GiftDropId": 393, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 393", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 393, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "293e7ad3-01c9-43af-96e3-06c34145ff12,a1c51d1e-1d5f-4f8a-bc0f-6a20eddfe58a,FVdDQFOMQ06teQm2ANDPng,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Helmet (Red)", + "GiftDropId": 394, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 394", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 394, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Black)", + "GiftDropId": 395, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 395", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 395, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,-XSM6ZcSjE-vrWL7jyF4fQ,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Blue)", + "GiftDropId": 396, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 396", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 396, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,RL6HkufaJ0yubTpCGVI9eQ,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Green)", + "GiftDropId": 397, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 397", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 397, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,9tTuREkoQkW0ycqOjWXsiA,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (White)", + "GiftDropId": 398, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 398", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 398, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,MVkY4sU5BkGC4QhweRiyIA,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Orange)", + "GiftDropId": 399, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 399", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 399, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,ux9DQVSRyU-_5GA-t197OA,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Purple)", + "GiftDropId": 400, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 400", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 400, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,t2bByt5oUEG90PMMePCP6A,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Gray)", + "GiftDropId": 401, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 401", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 401, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,m7KXVnULz0iHvKfCFzFoyw,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Pink)", + "GiftDropId": 402, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 402", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 402, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,gT0WA7Y1H0my5uMlteIMMg,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Red)", + "GiftDropId": 403, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 403", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 403, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Tan)", + "GiftDropId": 404, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 404", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 404, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,58YffnGSUU6umcI1i0RvZw,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Purple)", + "GiftDropId": 405, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 405", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 405, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,c24f1DNZjEmqkt-FibKUjQ,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Brown)", + "GiftDropId": 406, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 406", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 406, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,SeVmHtrMS0y7gKCYkHcrOA,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Gray)", + "GiftDropId": 407, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 407", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 407, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,uDcJZClcFkiNdkEEh9IIyA,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Blue)", + "GiftDropId": 408, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 408", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 408, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,Iezz6gCFfkKdVcmPXIhunw,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Orange)", + "GiftDropId": 409, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 409", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 409, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,fLWfBSEO6U6aHrDm3nKFEQ,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Green)", + "GiftDropId": 410, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 410", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 410, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,F5vJzMfNB0Ob6Abjadho7Q,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Pink)", + "GiftDropId": 411, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 411", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 411, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,vbOUaJsGHEaSfQCivNcMWg,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (White)", + "GiftDropId": 412, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 412", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 412, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,wbFPXIg5gUK3QK6YycZexg,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Red)", + "GiftDropId": 413, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 413", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 413, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,_fBrHCkTKUe82QgxCyI-Kw,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Black)", + "GiftDropId": 414, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 414", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 414, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef7771eb-c5f3-44fd-8c27-f581b035ef10,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bear Hug Hat (White)", + "GiftDropId": 415, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 415", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 415, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "96bc2f9f-ce3a-4c4c-b92c-cfed4ed4594f,1919d319-6cce-4500-8766-15fed6a13fa8,e4b53a9a-ac95-49ae-bf68-615bb23fa075,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Veil (Gold)", + "GiftDropId": 420, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 420", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 420, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "96bc2f9f-ce3a-4c4c-b92c-cfed4ed4594f,lBe3yxuE40eBmTrnEHBqQQ,e4b53a9a-ac95-49ae-bf68-615bb23fa075,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Veil (Purple)", + "GiftDropId": 421, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 421", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 421, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "96bc2f9f-ce3a-4c4c-b92c-cfed4ed4594f,oZ8k0Qv3SkG-DkY0_dP7UA,e4b53a9a-ac95-49ae-bf68-615bb23fa075,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Veil (Teal)", + "GiftDropId": 422, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 422", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 422, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beret (Blue)", + "GiftDropId": 423, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 423", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 423, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,7_n11PF4-0KqTZ9az23hqg,FWL8ZeMe9EerdB0_Fya3AA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beret (Black)", + "GiftDropId": 424, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 424", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 424, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,TKbjEeTWfUyA1u4laoULMg,FWL8ZeMe9EerdB0_Fya3AA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beret (Green)", + "GiftDropId": 425, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 425", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 425, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,JShcoWWPz0297HeEUJbDCQ,FWL8ZeMe9EerdB0_Fya3AA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beret (Red)", + "GiftDropId": 426, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 426", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 426, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,_psc7WCgOk2JzRQwuFAqNw,FWL8ZeMe9EerdB0_Fya3AA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beret (White)", + "GiftDropId": 427, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 427", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 427, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,WeP_tPjUNUuGojXrVBOAIA,FWL8ZeMe9EerdB0_Fya3AA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beret (Purple)", + "GiftDropId": 428, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 428", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 428, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Helmet (Blue)", + "GiftDropId": 429, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 429", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 429, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,83522c12-9549-4d74-8c87-bae210bcd2bf,5fd9e83a-cfaf-4c98-bd31-91a7484c26dd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Helmet (Black)", + "GiftDropId": 430, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 430", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 430, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,4398ce1a-e6ee-4da4-ad0d-7abfab41020c,5fd9e83a-cfaf-4c98-bd31-91a7484c26dd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Helmet (Orange)", + "GiftDropId": 431, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 431", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 431, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,XNq4Cns4lEGydtktdsXlmQ,5fd9e83a-cfaf-4c98-bd31-91a7484c26dd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Helmet (Navy)", + "GiftDropId": 432, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 432", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 432, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "VQnoLstCyEGDPy1c38-GvA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Biker Helmet", + "GiftDropId": 433, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 433", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 433, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20b424a9-861a-4d39-a583-22d7b7348c14,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bog Monster Hood", + "GiftDropId": 434, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 434", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 434, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2fadddc1-babd-4cb3-8f5a-0e7c889c3785,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bounty Hunter Helmet", + "GiftDropId": 436, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 436", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 436, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1e504fee-b593-4037-bd8f-b88025147991,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow (Orange)", + "GiftDropId": 437, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 437", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 437, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1e504fee-b593-4037-bd8f-b88025147991,c9589974-c261-485e-b571-cb2f34fb178f,e0186718-4a18-434b-b96e-0c9c912f0d1f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow (Green)", + "GiftDropId": 438, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 438", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 438, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1e504fee-b593-4037-bd8f-b88025147991,6564acf1-4d70-4f92-92ac-08e2b76dbb6b,e0186718-4a18-434b-b96e-0c9c912f0d1f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow (Pink)", + "GiftDropId": 439, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 439", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 439, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bfd9c70b-9ad8-4f47-a840-c03231f9ad41,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowler Hat", + "GiftDropId": 441, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 441", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 441, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b99a89c7-38c5-4196-9862-4e1bf9cb0ce1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Helmet (Blue)", + "GiftDropId": 442, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 442", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 442, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b99a89c7-38c5-4196-9862-4e1bf9cb0ce1,8c7b09f2-6213-4ef9-87ab-a2df72d07a22,92714eac-cc07-4f74-a6f5-cfbbadd07e06,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Helmet (Red)", + "GiftDropId": 443, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 443", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 443, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b99a89c7-38c5-4196-9862-4e1bf9cb0ce1,rzUd1IMTKUmW0HeMPSIOBQ,92714eac-cc07-4f74-a6f5-cfbbadd07e06,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Helmet (Green)", + "GiftDropId": 444, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 444", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 444, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Ears (Black)", + "GiftDropId": 448, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 448", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 448, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,713781e5-ce47-41c6-a24f-94d42a565e30,1e3195ab-f7f6-41f4-a5ec-378d09ecdf69,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Ears (Brown)", + "GiftDropId": 450, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 450", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 450, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,96e42c7a-2881-4299-a2fe-80c0d4d5ca26,1e3195ab-f7f6-41f4-a5ec-378d09ecdf69,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Ears (Grey)", + "GiftDropId": 451, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 451", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 451, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,c1e430c5-fd8d-4032-9e3f-8d87cc8784da,1e3195ab-f7f6-41f4-a5ec-378d09ecdf69,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Ears (White)", + "GiftDropId": 452, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 452", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 452, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7ea796bf-f552-4da8-8f68-a87c4896c8e6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Ears (Alley)", + "GiftDropId": 453, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 453", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 453, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Hat (Calico)", + "GiftDropId": 454, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 454", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 454, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,96e42c7a-2881-4299-a2fe-80c0d4d5ca26,V1M2-FXZSEG782d6D0AhUg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Hat (Burmese)", + "GiftDropId": 455, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 455", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 455, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,wNde5lsob06eQxEH2t-zUw,5KeLrnvaKEWnEiap1xzmjw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Hat (Tabby)", + "GiftDropId": 456, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 456", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 456, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af33bdb1-b7fa-4fe6-b37a-b1fe6a420879,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chef Hat (White)", + "GiftDropId": 457, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 457", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 457, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af33bdb1-b7fa-4fe6-b37a-b1fe6a420879,PR5dh2jf2kqGLO0lXgA69A,-lYK7LhYyEy6wqL1tIE9cg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chef Hat (Black)", + "GiftDropId": 458, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 458", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 458, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fc6a560a-5ff1-46f6-a593-320c50ee397e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chicken Hat", + "GiftDropId": 459, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 459", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 459, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cloche (Pink)", + "GiftDropId": 460, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 460", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 460, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,w9I-I0GWRE-3RgOUMMlHjg,WWmx0nBo3k2nXUPPRJVJLQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cloche (Black)", + "GiftDropId": 461, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 461", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 461, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,bmi_S166JEGWhf_7woVL0A,WWmx0nBo3k2nXUPPRJVJLQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cloche (Tan)", + "GiftDropId": 462, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 462", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 462, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,dSEiNUAZnUmErO5Vfv51zg,WWmx0nBo3k2nXUPPRJVJLQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cloche (Teal)", + "GiftDropId": 463, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 463", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 463, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,jTG-jnKn0k-Etg_-4Gb9gw,WWmx0nBo3k2nXUPPRJVJLQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cloche (White)", + "GiftDropId": 464, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 464", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 464, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "07205057-0804-41de-abe4-bd4027fee1df,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Hat (Black)", + "GiftDropId": 465, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 465", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 465, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "07205057-0804-41de-abe4-bd4027fee1df,jwXdjDbEmkOFyKZHT_RYOw,YJGsYfwkik2lp7qWqXyXTw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Hat (Blue)", + "GiftDropId": 466, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 466", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 466, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "07205057-0804-41de-abe4-bd4027fee1df,LdKaVAveokmp3qRwVBxnFA,YJGsYfwkik2lp7qWqXyXTw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Hat (Green)", + "GiftDropId": 467, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 467", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 467, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (Brown)", + "GiftDropId": 469, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 469", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 469, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,624c85e5-095a-48b6-85fb-c9bbade19a8d,54778d93-2cff-48db-b25b-65c08b0e5be8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (Cherry)", + "GiftDropId": 470, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 470", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 470, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,192ba73d-6990-42da-8fe0-914c2a7181eb,54778d93-2cff-48db-b25b-65c08b0e5be8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (Black, Gold)", + "GiftDropId": 471, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 471", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 471, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,5e00a832-3f25-4dd3-84d2-b6ed6a4b4c37,54778d93-2cff-48db-b25b-65c08b0e5be8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (Yellow)", + "GiftDropId": 472, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 472", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 472, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,teVKVbVEsEyqOSuRdqHQzA,54778d93-2cff-48db-b25b-65c08b0e5be8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (White)", + "GiftDropId": 473, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 473", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 473, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,K5vPqD3BrEuODRDzFdC6Hw,54778d93-2cff-48db-b25b-65c08b0e5be8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (Black, Silver)", + "GiftDropId": 474, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 474", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 474, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3ae0eb82-13ce-43a2-bbc2-99a1cdbec63f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Crab Hat", + "GiftDropId": 476, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 476", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 476, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4fcb5b84-13a9-43e6-9680-72b17874ae53,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Helmet (Triton)", + "GiftDropId": 477, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 477", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 477, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4fcb5b84-13a9-43e6-9680-72b17874ae53,Su7kiW24d0KapNns96JoFQ,a3Er_BCApUiPtBaGkSH9LA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Helmet (Kraken)", + "GiftDropId": 478, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 478", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 478, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4fcb5b84-13a9-43e6-9680-72b17874ae53,CahBzgN3D0y46AQsvGC14A,a3Er_BCApUiPtBaGkSH9LA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Helmet (Leviathan)", + "GiftDropId": 479, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 479", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 479, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4abc2ac4-e60c-49b1-9ac8-4d4751ed78ae,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dino Hat", + "GiftDropId": 481, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 481", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 481, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a5b747b8-c1a5-4bce-999f-e13dbe77bde6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Disco Ball Hat", + "GiftDropId": 482, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 482", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 482, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5ac25e5a-8c8e-445c-82a4-7272baec1eb5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Doctor's Head Mirror", + "GiftDropId": 483, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 483", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 483, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Hat (Red)", + "GiftDropId": 484, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 484", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 484, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,5a614f97-ef7f-4b70-afff-9ed837a86407,a8a91216-0fcc-461e-a682-95ee82509cce,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Hat (Green)", + "GiftDropId": 485, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 485", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 485, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,b444ed0a-eab5-4bd6-af34-d080de74a149,a8a91216-0fcc-461e-a682-95ee82509cce,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Hat (Orange)", + "GiftDropId": 486, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 486", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 486, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,8053b5e5-0f67-4329-a45d-1ee9fc830820,a8a91216-0fcc-461e-a682-95ee82509cce,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Hat (Yellow)", + "GiftDropId": 487, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 487", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 487, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8ff44820-2c4a-4a0b-b409-5b46b6c9e21c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 1003, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elven Crown", + "GiftDropId": 494, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 494", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 494, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Equestrian Helmet (Black)", + "GiftDropId": 495, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 495", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 495, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,55901f12-d5b5-4fa8-b4c8-e479689ee39d,be6b3fa1-3388-48ac-8957-d7b8c85ff968,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Equestrian Helmet (Blue)", + "GiftDropId": 496, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 496", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 496, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,4828b50c-95b6-466a-bb25-514891d78202,be6b3fa1-3388-48ac-8957-d7b8c85ff968,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Equestrian Helmet (Grey)", + "GiftDropId": 497, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 497", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 497, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,d6823e01-69f0-4f85-b94a-74894356a2cf,be6b3fa1-3388-48ac-8957-d7b8c85ff968,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Equestrian Helmet (Maroon)", + "GiftDropId": 498, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 498", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 498, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "16707919-756d-45ae-95fc-cfb6715b8ae6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Helm", + "GiftDropId": 500, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 500", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 500, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Helmet (White)", + "GiftDropId": 501, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 501", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 501, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,cea53c7f-24a9-4e3b-80b9-fbf95738f973,9d6ac0b7-bbef-40bc-9173-effe65d7c0ff,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Helmet (Orange)", + "GiftDropId": 502, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 502", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 502, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,e37b07d1-6b9d-49b9-94ca-1c728e228cfe,9d6ac0b7-bbef-40bc-9173-effe65d7c0ff,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Helmet (Blue)", + "GiftDropId": 503, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 503", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 503, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,8c74ee27-3d56-401b-8a8c-7868a80770e8,9d6ac0b7-bbef-40bc-9173-effe65d7c0ff,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Helmet (Black)", + "GiftDropId": 504, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 504", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 504, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bb54e0e9-5d90-41f3-94c0-8e82f1791af1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Firefighter Helmet (Red)", + "GiftDropId": 505, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 505", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 505, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bb54e0e9-5d90-41f3-94c0-8e82f1791af1,891d902e-3257-4a8c-9001-858046007997,c8ccb85e-52cd-4b3b-aadf-289819067125,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Firefighter Helmet (White)", + "GiftDropId": 506, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 506", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 506, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bb54e0e9-5d90-41f3-94c0-8e82f1791af1,4c26d1e7-2382-4478-b9c4-a068ed01a607,c8ccb85e-52cd-4b3b-aadf-289819067125,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Firefighter Helmet (Yellow)", + "GiftDropId": 507, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 507", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 507, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "18feb3c2-049f-4f91-9f4e-6b5fcb4ab70c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Headband (Silver)", + "GiftDropId": 508, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 508", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 508, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "18feb3c2-049f-4f91-9f4e-6b5fcb4ab70c,565c17e0-496d-45bd-a2c3-564e118c06cc,d9be3a98-9da9-419e-9dce-fe58a3ad9c4e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Headband (Black)", + "GiftDropId": 509, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 509", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 509, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "18feb3c2-049f-4f91-9f4e-6b5fcb4ab70c,b6c25a3b-125b-4aab-bed0-e6e5ced2c21c,d9be3a98-9da9-419e-9dce-fe58a3ad9c4e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Headband (Gold)", + "GiftDropId": 510, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 510", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 510, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flat Cap (Grey)", + "GiftDropId": 511, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 511", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 511, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,9967ce54-c2b7-437a-946e-11f8ee6d6fdd,73fc2e2a-a036-410b-bafa-3a07658245b5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flat Cap (Green)", + "GiftDropId": 512, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 512", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 512, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,0ba92db2-690a-44ce-92f4-130e9503b6c1,73fc2e2a-a036-410b-bafa-3a07658245b5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flat Cap (Blue)", + "GiftDropId": 513, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 513", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 513, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,9aYT6E9sd0OSavlmkhtkGw,73fc2e2a-a036-410b-bafa-3a07658245b5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flat Cap (White)", + "GiftDropId": 514, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 514", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 514, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,H-ypJNyVSka9as7rDFRZ_A,73fc2e2a-a036-410b-bafa-3a07658245b5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flat Cap (Red)", + "GiftDropId": 515, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 515", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 515, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,-7uPJmO-wUu3cUhqo0caPg,73fc2e2a-a036-410b-bafa-3a07658245b5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flat Cap (Tan)", + "GiftDropId": 516, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 516", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 516, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2b2eb9e5-d52e-4004-bdb2-0bcf6910992d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Headband (Pink)", + "GiftDropId": 517, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 517", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 517, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2b2eb9e5-d52e-4004-bdb2-0bcf6910992d,c5884778-a87f-4612-9717-86fbb65d440f,7d040391-03f7-4b3d-bcfd-a1278ff459c9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Headband (Blue)", + "GiftDropId": 518, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 518", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 518, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2b2eb9e5-d52e-4004-bdb2-0bcf6910992d,827a1538-51bb-4fef-99c1-7f1bebd9866c,7d040391-03f7-4b3d-bcfd-a1278ff459c9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Headband (Red)", + "GiftDropId": 519, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 519", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 519, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Helmet (White)", + "GiftDropId": 520, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 520", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 520, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,d8d490aa-7088-4163-9305-1441367f490c,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Helmet (Orange)", + "GiftDropId": 521, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 521", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 521, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,61ff7a02-50ff-49ea-b95e-c31b95a30c8e,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Helmet (Black)", + "GiftDropId": 522, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 522", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 522, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,X24EvVokeUqyDNdqevV2EA,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Helmet (Red)", + "GiftDropId": 523, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 523", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 523, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,UfhOpLemQ0ypYh7CIC3W1Q,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Helmet (Gray)", + "GiftDropId": 526, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 526", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 526, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "31bb82db-cd30-4988-a8bf-3ce55a12a4c9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fox Ears", + "GiftDropId": 528, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 528", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 528, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cec9cfac-a45b-4edb-b26d-7453cc2bfaf2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Froggy Headband", + "GiftDropId": 530, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 530", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 530, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "66f8f55d-cad4-4afb-93e8-b6bdf04b37b3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Green Sequins)", + "GiftDropId": 538, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 538", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 538, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d3b8bd7b-ca9a-4f5d-b115-3659dc294a03,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Top Hat (Green)", + "GiftDropId": 539, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 539", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 539, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,Euf1h1qsZ02evDsyoHYbPQ,PZHohDVX0U2frX13N4KYDQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Helmet (Orange)", + "GiftDropId": 541, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 541", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 541, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,zlqLrGEa8E2WW9ey_szREA,PZHohDVX0U2frX13N4KYDQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Helmet (Pink)", + "GiftDropId": 544, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 544", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 544, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Orange)", + "GiftDropId": 546, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 546", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 546, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,8iZO162KNUiMC8l_z3OC_A,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Purple)", + "GiftDropId": 547, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 547", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 547, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,f_c50saStkaGJuhLjJ9lfA,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Black)", + "GiftDropId": 548, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 548", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 548, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,FUP4iRnoc0ikNmjrFD06lg,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Pink)", + "GiftDropId": 549, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 549", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 549, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,GmS0wKwzVEqdf3NoTMHG5A,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Teal, Polka Dot)", + "GiftDropId": 550, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 550", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 550, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,ZNKGkou_gU-1cxBFy7pDKw,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Red, Polka Dot)", + "GiftDropId": 551, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 551", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 551, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,-Iqmonry4EKoqAULCKzRPA,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (White, Polka Dot)", + "GiftDropId": 552, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 552", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 552, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Black)", + "GiftDropId": 572, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 572", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 572, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,viL4CPch2ECwG-RNaWcyZw,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Red)", + "GiftDropId": 573, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 573", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 573, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,8ANbOhNnO0yLQOCIBsDwfg,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Blue)", + "GiftDropId": 574, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 574", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 574, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,JWBK5v78Y0uRVEXlD-Qk6Q,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Orange)", + "GiftDropId": 576, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 576", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 576, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,hf0gkFVS8ESvceRsC3LAXQ,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Psy)", + "GiftDropId": 578, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 578", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 578, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,4scG_UBlzE-5DWRhSrtm6g,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Chillout)", + "GiftDropId": 579, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 579", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 579, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,nX7krD8e2km_ZlOLWcoxdQ,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Lounge)", + "GiftDropId": 581, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 581", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 581, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,ns5tIRishUOp-nYqLedcwA,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Techno)", + "GiftDropId": 582, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 582", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 582, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,I1J-xY4YNU2dB_od4P_7Dg,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Neon Heat)", + "GiftDropId": 584, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 584", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 584, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,2sf-FU4WckGBDWUkVz4z1g,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Neon Sky)", + "GiftDropId": 585, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 585", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 585, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,d9mwowRelE2lDKEA0UQMZQ,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Neon Dawn)", + "GiftDropId": 587, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 587", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 587, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,Uz2hrptCa0erjqyPoiZxew,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Neon Void)", + "GiftDropId": 588, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 588", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 588, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a61e86cd-f7e7-4ac7-a6e8-df269bc5cb01,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Hair Clip (Red)", + "GiftDropId": 591, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 591", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 591, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a61e86cd-f7e7-4ac7-a6e8-df269bc5cb01,ce465d53-3807-423f-baa0-bdba2a75ceb3,65b89eae-347e-4eff-9ff3-7f25cace0125,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Hair Clip (White)", + "GiftDropId": 592, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 592", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 592, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a61e86cd-f7e7-4ac7-a6e8-df269bc5cb01,596097a8-d545-4256-959d-1d3cd96fc64c,65b89eae-347e-4eff-9ff3-7f25cace0125,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Hair Clip (Yellow)", + "GiftDropId": 593, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 593", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 593, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hockey Helmet (Black)", + "GiftDropId": 595, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 595", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 595, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,d5efaf80-7f34-4c9a-bc3a-b80b1ac70ace,7c4d447c-6594-4bd8-9510-12ad683ab116,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hockey Helmet (Red)", + "GiftDropId": 596, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 596", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 596, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,0217fd2e-ff9d-49f7-9bc8-8d0d6b8bf250,7c4d447c-6594-4bd8-9510-12ad683ab116,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hockey Helmet (Blue)", + "GiftDropId": 597, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 597", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 597, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,qdA34j6p_UqphqChTCHEYQ,7c4d447c-6594-4bd8-9510-12ad683ab116,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hockey Helmet (Green)", + "GiftDropId": 598, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 598", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 598, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Hat (Mastermind)", + "GiftDropId": 600, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 600", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 600, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,RBRFHN8_rkuImbyDAfcHWw,BOB_mAXdA0u2khOH5qjqXQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Hat (Spy)", + "GiftDropId": 601, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 601", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 601, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,QJSPgq2KXEOWNynY8uqQvA,BOB_mAXdA0u2khOH5qjqXQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Hat (Rogue)", + "GiftDropId": 602, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 602", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 602, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,4RH8_Z1mqU-JIVvx31wOsA,BOB_mAXdA0u2khOH5qjqXQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Hat (Outlaw)", + "GiftDropId": 603, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 603", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 603, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,PMa9370LPEig_7pKwCceEQ,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Helmet (Green)", + "GiftDropId": 614, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 614", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 614, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7134c60b-0640-463a-8d97-caa9184bef93,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lacrosse Helmet (Purple)", + "GiftDropId": 615, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 615", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 615, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7134c60b-0640-463a-8d97-caa9184bef93,e3454bc7-c88d-4958-8b81-db3fe5472a1e,7e688b30-ed13-4790-9ad8-c49885d1b7e8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lacrosse Helmet (Pink)", + "GiftDropId": 616, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 616", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 616, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Plastic Sunglasses (Black)", + "GiftDropId": 622, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 622", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 622, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,z-yaXP9ImkysLOGuCQiblw,S21TW8NwMEWLV9zqHxWfFw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Plastic Sunglasses (Red)", + "GiftDropId": 623, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 623", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 623, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,SmRcrycMZ0qYNsHuQQOORA,S21TW8NwMEWLV9zqHxWfFw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Plastic Sunglasses (Blue)", + "GiftDropId": 624, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 624", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 624, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,0svDrGn2NkmhUjC1VJUgRg,S21TW8NwMEWLV9zqHxWfFw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Plastic Sunglasses (Green)", + "GiftDropId": 625, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 625", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 625, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,Aq4fjEW5gEyzetXMoG2tdQ,S21TW8NwMEWLV9zqHxWfFw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Plastic Sunglasses (White)", + "GiftDropId": 626, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 626", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 626, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Headband (Primrose)", + "GiftDropId": 627, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 627", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 627, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,B9DJPqTeYUuPnPHRbKzEJA,5ekjxLQZwUm7-iXJ0bYSiQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Headband (Poppy)", + "GiftDropId": 629, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 629", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 629, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,yXZO-donI0SHB9-TT0jUdw,5ekjxLQZwUm7-iXJ0bYSiQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Headband (Paradise)", + "GiftDropId": 630, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 630", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 630, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,J5VsmblfWU2MeUjNo0fz1Q,5ekjxLQZwUm7-iXJ0bYSiQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Headband (Begonia)", + "GiftDropId": 631, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 631", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 631, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,Asfe0ZRi50eryD5wlJzgzA,5ekjxLQZwUm7-iXJ0bYSiQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Headband (Dahlia)", + "GiftDropId": 632, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 632", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 632, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Mask (Green)", + "GiftDropId": 633, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 633", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 633, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,916384ca-e209-42a0-bd64-c64f5a40b56f,96b36c98-cba1-4337-91dd-c74c00316f97,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Mask (Red)", + "GiftDropId": 634, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 634", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 634, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,0217fd2e-ff9d-49f7-9bc8-8d0d6b8bf250,96b36c98-cba1-4337-91dd-c74c00316f97,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Mask (Blue)", + "GiftDropId": 635, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 635", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 635, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,RA7cizxxYE6J8yV_0XwPxA,VSLcLM0TJU2kJU5gS4KZGw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Mask (Pouncing Tiger)", + "GiftDropId": 636, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 636", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 636, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,5_UnQ7vZ9E2T-EhJ7M-mQw,jL-LAsd03EeN1J-Zp8opew,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Mask (Green Lightning)", + "GiftDropId": 637, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 637", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 637, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17f275d7-c5b1-4a0c-857f-8fb7a5d7c57a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Apocalypse Helmet", + "GiftDropId": 641, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 641", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 641, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Tiara (Fuchsia)", + "GiftDropId": 642, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 642", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 642, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,lhfOKGDAgEKWucerCmH7Fg,mG60EPIQIkaJNgOkonVmZg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Tiara (Teal)", + "GiftDropId": 643, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 643", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 643, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,kLv_wsbbGUmlfIUO1QLYLw,mG60EPIQIkaJNgOkonVmZg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Tiara (Green)", + "GiftDropId": 644, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 644", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 644, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,f0pjsV0XMUWoE_z2kqOlSA,mG60EPIQIkaJNgOkonVmZg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Tiara (Orange)", + "GiftDropId": 645, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 645", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 645, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,EDLxuGjEVEGdOPXDqyN-xA,mG60EPIQIkaJNgOkonVmZg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Tiara (Red)", + "GiftDropId": 646, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 646", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 646, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "16359b51-96c4-4be0-b598-319c7549e18a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mermaid Crown", + "GiftDropId": 647, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 647", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 647, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Hat (Black)", + "GiftDropId": 648, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 648", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 648, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,40283127-2ffc-4989-82f6-29c3381bf9e2,d759c88d-a159-4c26-86dd-b054bb05b3ed,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Hat (White)", + "GiftDropId": 649, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 649", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 649, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,1421caa9-9a0d-42c2-b847-1500ba2e483a,d759c88d-a159-4c26-86dd-b054bb05b3ed,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Hat (Brown)", + "GiftDropId": 650, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 650", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 650, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,390a476a-5545-48eb-955c-1bf1a16012bf,d759c88d-a159-4c26-86dd-b054bb05b3ed,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Hat (Grey)", + "GiftDropId": 651, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 651", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 651, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,PZx7Iae0pkiDaxT9t3-vgg,d759c88d-a159-4c26-86dd-b054bb05b3ed,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Hat (Purple)", + "GiftDropId": 653, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 653", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 653, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8df990d9-141a-4757-b4f2-138d5e68ab74,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Party Hat (Shindig)", + "GiftDropId": 656, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 656", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 656, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8df990d9-141a-4757-b4f2-138d5e68ab74,RROvzwtshUGyRudVIBn8bw,MrrsmY0J0EKduH-f5wUj6g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Party Hat (Celebration)", + "GiftDropId": 658, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 658", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 658, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nightcap (Zonked)", + "GiftDropId": 660, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 660", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 660, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,2vawoQvJPUegnClmr2RNAQ,RR69IGV4j0Sd2xtmyN5wFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nightcap (Zzz)", + "GiftDropId": 661, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 661", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 661, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,kIcd-yEnsEqxoeogquvmRw,RR69IGV4j0Sd2xtmyN5wFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nightcap (Dozy)", + "GiftDropId": 662, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 662", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 662, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,qHyKfCsrbUqSWomjLXf7Hw,RR69IGV4j0Sd2xtmyN5wFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nightcap (Sandman)", + "GiftDropId": 663, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 663", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 663, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Regal Crown (Gold)", + "GiftDropId": 674, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 674", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 674, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,Zljmtj5WqUaRvB3XQTgJXg,XFuSiGupZ02Fut1Dxum_Iw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Regal Crown (White)", + "GiftDropId": 675, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 675", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 675, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,rmq1AOQvtUGOHvbPUximwg,XFuSiGupZ02Fut1Dxum_Iw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Regal Crown (Black)", + "GiftDropId": 676, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 676", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 676, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2bd53190-46f8-4956-9388-87c5a04efc4f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rain Hat (Yellow)", + "GiftDropId": 678, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 678", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 678, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2bd53190-46f8-4956-9388-87c5a04efc4f,v3af60p1Q02NpdCqIRO9lw,1hVOI7IuY0mKvtr2PZXLww,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rain Hat (Red)", + "GiftDropId": 679, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 679", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 679, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f277af6a-0807-4716-8948-1bee236ffb74,d0bb468c-b78f-4e80-916d-65fec3ec0010,0272eb19-fc0e-4ad6-8db9-cc0cda2528b0,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ranger Hat (Green)", + "GiftDropId": 682, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 682", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 682, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f61eb9cc-c0d3-4b45-a7b7-b6c69e5e6db4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red Panda Hat", + "GiftDropId": 683, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 683", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 683, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ee9a7c8a-7383-4a09-b44c-474b66f9008a,W-xMu8n2CUuHSXfHvEL4yw,-apO3Y7om0GKhC4V_hVYdQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 1003, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Robo Logo Cap (Pink)", + "GiftDropId": 685, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 685", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 685, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40734c4d-e1fe-426c-8921-930f7463d8e8,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Crown (Gold)", + "GiftDropId": 686, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 686", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 686, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40734c4d-e1fe-426c-8921-930f7463d8e8,wCe2yC2U1kyYvPd8Z1rX2w,hCeaYHy1TE2s6rTPxAQP9A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Crown (White)", + "GiftDropId": 688, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 688", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 688, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40734c4d-e1fe-426c-8921-930f7463d8e8,QkfA71-1z0qOiZAVrbzhtA,hCeaYHy1TE2s6rTPxAQP9A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Crown (Black)", + "GiftDropId": 689, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 689", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 689, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "418ed21e-766f-4c69-9d57-6f866dcc7feb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Hat (Tan)", + "GiftDropId": 690, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 690", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 690, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "418ed21e-766f-4c69-9d57-6f866dcc7feb,49bbd11a-e5c9-47ff-b04d-72eb321e8a57,0dabda0d-842c-4d39-a6b9-a8ca3ec20825,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Hat (Green)", + "GiftDropId": 691, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 691", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 691, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "380a5e35-b4d0-4119-9721-8ce4c0840fbd,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Starship Helm", + "GiftDropId": 698, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 698", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 698, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Hat (White, Blue, Gold)", + "GiftDropId": 703, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 703", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 703, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,f5403c89-9769-479b-8a05-c71607f9b189,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Hat (White, Black, Gold)", + "GiftDropId": 704, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 704", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 704, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,36e63797-5a42-4779-a5cc-ef5c2e7d17d4,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Hat (White, Black, Silver)", + "GiftDropId": 705, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 705", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 705, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,70112887-dc8d-49d5-96ed-0845204e0b58,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Hat (Black, Black, Gold)", + "GiftDropId": 706, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 706", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 706, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,2738ab5f-8c94-46b3-bac6-4a8111c41c21,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Hat (Pink, Black, Pink)", + "GiftDropId": 707, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 707", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 707, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "13e70c80-69a4-4ad5-90e5-4dd5e03da677,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shark Hat", + "GiftDropId": 710, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "Doo doo doo doo doo doo Debug: 710", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 710, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5bde836f-9343-4934-b01a-606f707020ef,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Detective Cap (Tan)", + "GiftDropId": 711, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 711", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 711, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5bde836f-9343-4934-b01a-606f707020ef,fEPwvuJCWkGBe4IekXpmLw,axPBGoqorEe77Oqqjfzb5w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Detective Cap (Black)", + "GiftDropId": 712, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 712", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 712, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5bde836f-9343-4934-b01a-606f707020ef,MQOxmUk-mUG-Ee9m9nX31Q,axPBGoqorEe77Oqqjfzb5w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Detective Cap (Grey)", + "GiftDropId": 713, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 713", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 713, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6QT99hx6DE6t9cKAs61i3w,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Ear Muffs (Summit)", + "GiftDropId": 714, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 714", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 714, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6QT99hx6DE6t9cKAs61i3w,KwCEye0nsESFs-yj4h9sjQ,c_t9XDbn-Eqml1O-wC5zJQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Ear Muffs (Chill)", + "GiftDropId": 715, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 715", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 715, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Small Brim Hat (Purple)", + "GiftDropId": 716, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 716", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 716, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,67fc9269-8dd8-4d6f-b594-c77e716f2482,65ed43ff-dfc4-4cab-b0b9-77dc94165e24,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Small Brim Hat (Green)", + "GiftDropId": 717, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 717", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 717, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,43501b0c-eaaa-4ab3-9d03-2ca61d2e8fc9,65ed43ff-dfc4-4cab-b0b9-77dc94165e24,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Small Brim Hat (Black)", + "GiftDropId": 718, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 718", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 718, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,d6823e01-69f0-4f85-b94a-74894356a2cf,65ed43ff-dfc4-4cab-b0b9-77dc94165e24,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Small Brim Hat (Maroon)", + "GiftDropId": 719, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 719", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 719, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Hat (Red)", + "GiftDropId": 720, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 720", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 720, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,XFCpIdeDXUqeYCIgh4fGtg,sV_ByCug30G1Gw-77KUe1Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Hat (Blue)", + "GiftDropId": 721, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 721", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 721, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,oKxmH-1s2EyIDkZoOQSQQw,sV_ByCug30G1Gw-77KUe1Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Hat (Green)", + "GiftDropId": 722, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 722", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 722, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,MxnAq_XOw0uTzQ8IIxqb_Q,sV_ByCug30G1Gw-77KUe1Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Hat (Yellow)", + "GiftDropId": 723, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 723", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 723, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a471995f-1fe7-4b77-a05f-8eea4e0970ab,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Hat", + "GiftDropId": 733, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 733", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 733, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a471995f-1fe7-4b77-a05f-8eea4e0970ab,YSnoHFmJDUa_XCK6JMMh2g,VZyHWGKNJEGSxDT2GO3ebA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Hat (Grey)", + "GiftDropId": 735, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 735", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 735, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "899f1d17-eee1-4b7d-a112-fbbba597e738,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Squid Hat", + "GiftDropId": 736, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 736", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 736, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34f45c5b-fea7-40b4-add7-bc7a37000ab5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Star Captain Hat ", + "GiftDropId": 737, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 737", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 737, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "gwLiwmqBIk6glFxvaTzxeA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Topper", + "GiftDropId": 738, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 738", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 738, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "gwLiwmqBIk6glFxvaTzxeA,Jy2TN1KBTEeoVehy_x32Ng,fXnd_COSzUeznwe7P4ZYRg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Topper (Silver)", + "GiftDropId": 740, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 740", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 740, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JWanxvOHyESg9F_HlmTOfA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Hat", + "GiftDropId": 741, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 741", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 741, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JWanxvOHyESg9F_HlmTOfA,ZUMIXcyOpEGiHgslbHQbwA,Uhw5NBQy-EOIiCWiZFiL7g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Hat (Silver)", + "GiftDropId": 743, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 743", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 743, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "703f1987-2b31-4b6f-bab7-1939b1105ac0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sun Hat", + "GiftDropId": 744, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 744", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 744, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b4e48239-a3b0-49ed-b78a-86f4e3aaca1e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Crown", + "GiftDropId": 745, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 745", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 745, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "00f0b914-aa22-4d14-9af1-996e1af61f4d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tiny Crown", + "GiftDropId": 746, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 746", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 746, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Top Hat (Black, Red)", + "GiftDropId": 747, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 747", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 747, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,DzgN67HoikexE2rTlZLdYQ,vm1ESK9ls0SaxSwHplNALQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Top Hat (White)", + "GiftDropId": 749, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 749", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 749, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,xeK_acj2hE-sYGhsMRwjhw,HwhHShudGkGjXagJxCN2uA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Top Hat (Patchwork)", + "GiftDropId": 750, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 750", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 750, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Traveler Hat", + "GiftDropId": 753, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 753", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 753, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,LEUQnDz-k0m-hY-AX3Z9Sg,znNiHfNdTE-szOIAnIWFQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Hat (Paradise)", + "GiftDropId": 755, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 755", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 755, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,cSFt9MWLj06CDzIzATqrTg,znNiHfNdTE-szOIAnIWFQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Hat (Poppy)", + "GiftDropId": 756, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 756", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 756, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,B6qNcZQ770eJel13RskuIg,sIP83lqv3kG31TH5Rw4gqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Hat (Begonia)", + "GiftDropId": 757, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 757", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 757, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,p3g8YAOhTUKAiE-Wh-X-aA,sIP83lqv3kG31TH5Rw4gqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Hat (Dahlia)", + "GiftDropId": 758, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 758", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 758, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,SqHAYcqBXU2PtF2urWGruQ,sIP83lqv3kG31TH5Rw4gqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Hat (Primrose)", + "GiftDropId": 759, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 759", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 759, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,Pu_1I6Zq-0G1HBMHa5MrKg,Cjy-bE0PikWLCRrL4U2NGQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tourist Hat (Green)", + "GiftDropId": 760, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 760", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 760, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,aiBfwCNwpUyJ0rYKCMa7qw,Cjy-bE0PikWLCRrL4U2NGQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Traveler Hat (Yellow)", + "GiftDropId": 762, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 762", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 762, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "-SQLtL4rdEWTJdw2IroQCQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Hat (Brown)", + "GiftDropId": 763, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 763", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 763, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "-SQLtL4rdEWTJdw2IroQCQ,CoSVCyrI-0qg-EkqB2R0hg,JO9lJOQSREWbPyDBZH_cyg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Hat (Black)", + "GiftDropId": 764, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 764", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 764, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ReqOfohe6UamzaiHG1x3Ow,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Hat (Pickup)", + "GiftDropId": 765, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 765", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 765, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ReqOfohe6UamzaiHG1x3Ow,lDXambcP60CeY2C8qeGDFw,uiAwVt3HK0mRVtWp9B-gTg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Hat (Flatbed)", + "GiftDropId": 766, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 766", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 766, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2caHvVQ1vECrPv-YcdxdyA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Unicorn Horn (Spirit)", + "GiftDropId": 774, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 774", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 774, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2caHvVQ1vECrPv-YcdxdyA,FNe9LkWJMUeC3frYJMyEaQ,nW_fBsuZA0OfIjTMXm6ZCA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Unicorn Horn (Harmony)", + "GiftDropId": 775, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 775", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 775, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2caHvVQ1vECrPv-YcdxdyA,mudt-Z5-5USdnIq-xaDgOw,nW_fBsuZA0OfIjTMXm6ZCA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Unicorn Horn (Joy)", + "GiftDropId": 776, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 776", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 776, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c87239ca-a255-4b13-bbc5-1b38236fb4cc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Viking Helmet", + "GiftDropId": 777, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 777", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 777, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8c51fc1a-b1ad-4002-a13c-4313abd92c7f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Visor", + "GiftDropId": 778, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 778", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 778, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cbf478e1-a9d7-4b3f-9f52-c59271a924f6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Headphones", + "GiftDropId": 780, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 780", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 780, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,tXhgU1o_wkaNQ-7P3KXidQ,njEWOjNEQEWCEqmytodpow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Hat (Kingfisher)", + "GiftDropId": 789, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 789", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 789, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,nn86ATWxekWdIGlPePPgGQ,njEWOjNEQEWCEqmytodpow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Hat (Vintage)", + "GiftDropId": 790, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 790", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 790, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,oxi26T5a4U6L73pF-Pgrhg,njEWOjNEQEWCEqmytodpow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Hat (Grackle)", + "GiftDropId": 792, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 792", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 792, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,6547pqf6vUm2L89AG6D91A,njEWOjNEQEWCEqmytodpow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Hat (Raven)", + "GiftDropId": 793, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 793", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 793, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,aBQ3R9boek-mYeSYSNvDbQ,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Hat (Blue)", + "GiftDropId": 809, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 809", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 809, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,d3KmqVuMQkCYK6sVTMOTOA,abdf525b-b871-41be-a1c8-810f49740ad4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Hat (Purple)", + "GiftDropId": 816, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 816", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 816, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f492f8f-ab61-484a-9587-747132b54309,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jazzercise Shirt (Teal)", + "GiftDropId": 822, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 822", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 822, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f492f8f-ab61-484a-9587-747132b54309,3b2cfc85-4e2a-4e0d-b738-c296ae8692f8,f6f26e2b-657b-454a-8663-55d6b9b6e50c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jazzercise Shirt (Pink)", + "GiftDropId": 823, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 823", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 823, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f492f8f-ab61-484a-9587-747132b54309,78eb0969-f246-4cac-acd6-295df7c092e4,f6f26e2b-657b-454a-8663-55d6b9b6e50c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jazzercise Shirt (White)", + "GiftDropId": 824, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 824", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 824, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,PMa9370LPEig_7pKwCceEQ,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Cape (Green)", + "GiftDropId": 832, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 832", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 832, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Cape (Red)", + "GiftDropId": 837, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 837", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 837, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,_VfdBTi7PU276qzsYKayow,qSsEcadcm0-twR1TvVcgYQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Cape (Pouncing Tiger)", + "GiftDropId": 838, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 838", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 838, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,Dtis2HpVzkelZb6M9mW5TQ,iqGv6iRJ-UGbofv8-aHKVA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Cape (Green Lightning)", + "GiftDropId": 839, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 839", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 839, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,xNjX_6-aREm0cYZObVLiAg,OE-PtL0-0kWcJPwn1wvuVg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Cape (Blue)", + "GiftDropId": 840, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 840", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 840, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,Kcyp8sv0202Puym1Wf86xg,OE-PtL0-0kWcJPwn1wvuVg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Cape (Green)", + "GiftDropId": 841, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 841", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 841, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Singlet (Green)", + "GiftDropId": 843, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 843", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 843, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,916384ca-e209-42a0-bd64-c64f5a40b56f,7ef7d0cf-99f1-4872-9d3d-8230cc9fa368,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Singlet (Red)", + "GiftDropId": 844, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 844", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 844, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,0217fd2e-ff9d-49f7-9bc8-8d0d6b8bf250,7ef7d0cf-99f1-4872-9d3d-8230cc9fa368,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Singlet (Blue)", + "GiftDropId": 845, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 845", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 845, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,TLrw3oncCE2MeuVifXSWTg,-_ViYCHHRUip7oN_AnH0Og,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Singlet (Pouncing Tiger)", + "GiftDropId": 846, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 846", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 846, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,7Jx8mrxoi0aQtZEb03CdRA,-IgxYllxkEyr7V1gosWXUA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Singlet (Green Lightning)", + "GiftDropId": 847, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 847", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 847, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9073d6a0-3bc1-4c82-aeb3-d4ee195538b4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerleader Sweater (Pride)", + "GiftDropId": 848, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 848", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 848, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9073d6a0-3bc1-4c82-aeb3-d4ee195538b4,6secgNPvmUyFnI3NC5dIYw,5V_1JEDrRUa1UPKhtrSB2w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerleader Sweater (Victory)", + "GiftDropId": 849, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 849", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 849, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7553d851-1986-4325-870d-e425dfb7d007,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Farmer Beard", + "GiftDropId": 892, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 892", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 892, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6b337a35-95d9-4b3a-9891-d9fbb06262aa,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Curly Mustache", + "GiftDropId": 894, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 894", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 894, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cfe276b9-1bdf-4c41-9e86-1a0215c6c5a1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ascot", + "GiftDropId": 898, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 898", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 898, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "23b97189-b49f-477b-8a22-0903b3d236f4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Backsword (Leathered Iron)", + "GiftDropId": 899, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 899", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 899, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,LIgagNf4gk68EYQdlDruxg,rL9p5JY83Eyxj00Dieg7oA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basic Belt (Red)", + "GiftDropId": 901, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": " Debug: 901", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 901, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,6fmUy748hU2dgwgaijSkUA,rL9p5JY83Eyxj00Dieg7oA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basic Belt (Green)", + "GiftDropId": 904, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": " Debug: 904", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 904, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,buuNFd8sK0eap78TL1gMNQ,-UFHTNvJs0CGDStb0PFkbQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basic Belt (Blue)", + "GiftDropId": 905, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": " Debug: 905", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 905, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,SDbpnjVYmEGQneK5fhZ0Cw,FwjsTo0nb0uNU6l8XvllNA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Leather Necklace (Red)", + "GiftDropId": 907, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 907", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 907, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,uwoWPY4YjEmZSQcNCrx1Gg,FwjsTo0nb0uNU6l8XvllNA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Leather Necklace (Green)", + "GiftDropId": 910, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 910", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 910, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,COZbkLDc20mdUlWSkqMX-w,FwjsTo0nb0uNU6l8XvllNA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Leather Necklace (Blue)", + "GiftDropId": 911, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 911", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 911, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e773fddc-ad9f-408c-82c5-2637f75b3214,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bounty Hunter Cape", + "GiftDropId": 916, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 916", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 916, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6dd261d8-9806-4dac-81c4-a58f6d6a7f9a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow Tie (Gold Sequins)", + "GiftDropId": 917, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 917", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 917, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6dd261d8-9806-4dac-81c4-a58f6d6a7f9a,Wm30oV5BtEuFQZFk3dPK_w,0R3Mh96tS0631EZYs03dmw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow Tie (Red Sequins)", + "GiftDropId": 918, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 918", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 918, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "988e4069-4341-428b-bbf5-023309891385,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow Tie (Silver Sequins)", + "GiftDropId": 919, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 919", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 919, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fc96ea5d-b49b-479b-a963-92f1eab44b2c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Butterfly Wings (Cool Mint)", + "GiftDropId": 920, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 920", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 920, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c506feae-be73-437b-b18a-1152bb9906e9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Butterfly Wings (Monarch)", + "GiftDropId": 922, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 922", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 922, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "27c2eb7f-9fac-4c42-90c7-44e7a33d5303,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Butterfly Wings (The Blue One)", + "GiftDropId": 926, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 926", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 926, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d97303c-5138-4da1-a74d-378da19d11cb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Tank (Triton)", + "GiftDropId": 927, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 927", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 927, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d97303c-5138-4da1-a74d-378da19d11cb,Su7kiW24d0KapNns96JoFQ,ZpyoWbO6GkGglXlMuYUARw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Tank (Kraken)", + "GiftDropId": 928, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 928", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 928, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d97303c-5138-4da1-a74d-378da19d11cb,CahBzgN3D0y46AQsvGC14A,ZpyoWbO6GkGglXlMuYUARw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Tank (Leviathan)", + "GiftDropId": 929, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 929", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 929, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "587ca2bb-dd42-42bf-833f-4e2a97349866,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Doctor's Stethoscope", + "GiftDropId": 931, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 931", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 931, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84efabec-fe50-4c92-845f-b99b1d84ca82,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dragon Wings ", + "GiftDropId": 934, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 934", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 934, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a37c3161-1476-44b0-a9d1-d6eb854db2d9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elven Cape", + "GiftDropId": 936, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 936", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 936, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "46cde502-86d6-4061-a80c-67458ffd4d60,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fancy Cape (Grey)", + "GiftDropId": 937, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 937", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 937, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "46cde502-86d6-4061-a80c-67458ffd4d60,crl8VlZ59kGxG01noGEWmA,EckOEU0mJkGIVDvYoKBN9g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fancy Cape (Gilded)", + "GiftDropId": 938, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 938", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 938, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "oYvOo47DJE-DEPlpn5xNUw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fanny Pack", + "GiftDropId": 939, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 939", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 939, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7df5697f-2f71-47d1-bc27-cfa43792ffd7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Felted Shawl", + "GiftDropId": 941, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 941", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 941, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "86af3a97-18d8-4dda-a2f2-cfd3b4224254,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow Tie (Green Sequins)", + "GiftDropId": 945, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 945", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 945, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Apron (Tan)", + "GiftDropId": 946, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 946", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 946, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,eV3Nv6SWS0yl3f-fgjPb-w,t-ZEWJCgFEyGP2PjNblQMA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Apron (Denim)", + "GiftDropId": 947, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 947", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 947, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,Lxx3q6JRnUW_cPG_kGG4ag,t-ZEWJCgFEyGP2PjNblQMA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Apron (White)", + "GiftDropId": 948, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 948", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 948, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,vek37vRROUKnSJKVP0CH6w,t-ZEWJCgFEyGP2PjNblQMA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Apron (Charcoal)", + "GiftDropId": 949, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 949", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 949, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "affdc9ad-8312-4421-8f56-e35dfdaeb63a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lifeguard Whistle", + "GiftDropId": 953, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 953", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 953, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e307eca-0850-4d85-8cc1-f5c176bfa7e9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Apocalypse Scarf", + "GiftDropId": 954, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 954", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 954, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Bow (Fuchsia)", + "GiftDropId": 955, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 955", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 955, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,Ot9EG-FfKEauT0u6pSZuWg,M5z2wk-GDkOAjvZzqsfcNQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Bow (Teal)", + "GiftDropId": 956, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 956", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 956, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,i3rD_hnQG0a-5f6Ve4AfWg,M5z2wk-GDkOAjvZzqsfcNQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Bow (Pink)", + "GiftDropId": 957, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 957", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 957, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,S9uymuvraUCOM8gmB7bnEA,M5z2wk-GDkOAjvZzqsfcNQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Bow (Dark Blue)", + "GiftDropId": 958, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 958", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 958, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,_uh3kj6hKUyBKOSR3R8dog,M5z2wk-GDkOAjvZzqsfcNQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Bow (Purple)", + "GiftDropId": 959, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 959", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 959, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,kaRBW1u3dkODGjPMePW6Uw,M5z2wk-GDkOAjvZzqsfcNQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Bow (Rose)", + "GiftDropId": 960, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 960", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 960, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c8c00394-4cd9-4bad-9774-a825ded78f80,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shell Necklace", + "GiftDropId": 964, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 964", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 964, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5e9bbda6-d681-42b1-9cc4-5758acf34bc0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Necklace (Gold)", + "GiftDropId": 965, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 965", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 965, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b95678aa-351a-4929-8a0e-0274a183eb18,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Necklace (Silver)", + "GiftDropId": 966, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 966", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 966, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7be2eafc-21ea-4266-ae64-8888c06798d6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pearl Necklace (Freshwater)", + "GiftDropId": 968, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 968", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 968, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7be2eafc-21ea-4266-ae64-8888c06798d6,sqPMH0LhLkeG-4XkxpU-sw,URWHffwjGUKgXeV01upePA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pearl Necklace (Saltwater)", + "GiftDropId": 969, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 969", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 969, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4c673a35-c10f-4a8c-b8e0-96a50fe5b97f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pegasus Wings", + "GiftDropId": 970, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 970", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 970, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Cape (Red)", + "GiftDropId": 979, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 979", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 979, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,mqdncbYcuUSGFvFqEU0z4A,HTU3Wp_ri0GNYGFSezFHSg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Cape (Purple)", + "GiftDropId": 981, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 981", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 981, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,MbusQ9bte0i9zirlxtNkSQ,HTU3Wp_ri0GNYGFSezFHSg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Cape (Blue)", + "GiftDropId": 982, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 982", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 982, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,_9QlnTPXuEO5OQ3H0CwFkA,HTU3Wp_ri0GNYGFSezFHSg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Cape (Green)", + "GiftDropId": 983, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 983", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 983, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,cKLBS6pbf0SFuavWyeZ7GA,HTU3Wp_ri0GNYGFSezFHSg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Cape (Black)", + "GiftDropId": 984, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 984", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 984, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,DZyW-gOG9U-QLGOMFBhOoA,HTU3Wp_ri0GNYGFSezFHSg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Cape (Pink)", + "GiftDropId": 985, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 985", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 985, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f47f81e7-fcdd-4687-9b99-013147bef30f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Belt Sash", + "GiftDropId": 987, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 987", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 987, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b3dc472-773e-4714-a9d0-7e7bbf6bc695,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Tank (Orange)", + "GiftDropId": 995, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 995", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 995, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b3dc472-773e-4714-a9d0-7e7bbf6bc695,V_duN2oWaUmmao1xHhzCJA,Uvarm_CwTUWWQYZvzI8OaQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Tank (Blue)", + "GiftDropId": 996, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 996", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 996, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowy Owl Cape", + "GiftDropId": 999, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 999", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 999, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,8M72ydR_uUSsli43PH2Eyw,wQxO4xmXCUGeC9ZHfDNGTw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowy Owl Cape (Raven)", + "GiftDropId": 1001, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1001", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1001, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "62a28dea-adcc-40b3-9045-917ae4f38c63,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Poncho", + "GiftDropId": 1002, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1002", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1002, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "62a28dea-adcc-40b3-9045-917ae4f38c63,EmTrJKm8cUy8_BHAvP8Meg,kxkqq5UA_kCM6lFsFe3dvw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Poncho (Grey)", + "GiftDropId": 1004, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1004", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1004, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "sOREgAGs-06CeGGsG-WIkw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Pauldron", + "GiftDropId": 1006, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1006", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1006, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "sOREgAGs-06CeGGsG-WIkw,rSzG7s1ocUmx9_VrJLOcHQ,ISycihytUUyoypVb-kXN_Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Pauldron (Silver)", + "GiftDropId": 1007, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1007", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1007, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "iBQ-v6xaqkipUlfzkSHEeQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Satchel", + "GiftDropId": 1008, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1008", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1008, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "iBQ-v6xaqkipUlfzkSHEeQ,bH3dgwnwt0KEw8oCDVIcEQ,erPtGSgq_kmqfeSlZWw4VA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Satchel (Silver)", + "GiftDropId": 1009, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1009", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1009, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "05ec4e87-088f-4281-a118-2e63c2585200,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Gold Sequins)", + "GiftDropId": 1011, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1011", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1011, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "05ec4e87-088f-4281-a118-2e63c2585200,Wm30oV5BtEuFQZFk3dPK_w,tfiSfpRez0y_R4QjAhO0bQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Red Sequins)", + "GiftDropId": 1012, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1012", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1012, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0d4e7ebe-efd9-4e68-9900-5645916e7596,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Silver Sequins)", + "GiftDropId": 1013, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1013", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1013, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "t_66r_j5oUSh9awIPmdUKg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Bandolier (Brown)", + "GiftDropId": 1014, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1014", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1014, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "t_66r_j5oUSh9awIPmdUKg,YTlnBuEjhUG1hSfAs8qwuw,IcR9Z_MxKkS9uh4uFYuFzQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Bandolier (Black)", + "GiftDropId": 1015, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1015", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1015, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ImwG0snB9ECc_gqRRBoz6A,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Belt (Brown)", + "GiftDropId": 1016, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1016", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1016, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ImwG0snB9ECc_gqRRBoz6A,lAjUeUtTLU2-3bG2OXBukg,LFB_YqTym0-tQmUIj-YcYA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Belt (Black)", + "GiftDropId": 1017, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1017", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1017, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b9d08f9a-b23d-4d7e-978b-a0cd8adbfe9c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Cloak (Nightwatch)", + "GiftDropId": 1036, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1036", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1036, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b9d08f9a-b23d-4d7e-978b-a0cd8adbfe9c,pXrZhtzjV02_qvIQoWEFWA,Hj8WnsdidE6rJeNyOmWUfg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Cloak (Hearthstone)", + "GiftDropId": 1037, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1037", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1037, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9231a9c6-7638-4fe9-bd2f-eac6c943009b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Championship Wrestling Belt", + "GiftDropId": 1040, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 1040", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1040, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d8f408f0-78f5-4e8a-b42a-e7b09632d1fd,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Vest (Black)", + "GiftDropId": 1045, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1045", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1045, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d8f408f0-78f5-4e8a-b42a-e7b09632d1fd,178c6beb-c737-434c-a53b-d14f438f6a98,0189ec4c-0389-4ebc-b9ba-32303a6341c2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Vest (Blue)", + "GiftDropId": 1046, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1046", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1046, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d8f408f0-78f5-4e8a-b42a-e7b09632d1fd,2913bd93-bf35-4bdf-b83a-d40a10213adc,0189ec4c-0389-4ebc-b9ba-32303a6341c2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Vest (Red)", + "GiftDropId": 1047, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1047", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1047, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Coat (Purple)", + "GiftDropId": 1053, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1053", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1053, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,b42d903b-b393-4f49-af5e-38d0fb6c42b0,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Coat (Blue)", + "GiftDropId": 1054, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1054", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1054, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,8cab8cc6-9a2d-434c-8b72-e66edbdd223c,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Coat (Black)", + "GiftDropId": 1055, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1055", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1055, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,657f28d5-672a-4f27-86c6-3cb00f25bb84,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Coat (Red)", + "GiftDropId": 1056, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1056", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1056, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,w_aK2K9bHEeU6oSQ7BK0qg,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Coat (Green)", + "GiftDropId": 1057, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1057", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1057, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belted Dress (Red)", + "GiftDropId": 1058, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1058", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1058, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,5b58d879-2bc4-47ed-a996-1af2ace16425,3d971439-41d1-43a2-8434-704f9ec8d906,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belted Dress (Green)", + "GiftDropId": 1059, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1059", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1059, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,d320ad9b-ba5c-45ea-b2b8-0d3e409a9db1,3d971439-41d1-43a2-8434-704f9ec8d906,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belted Dress (Black)", + "GiftDropId": 1060, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1060", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1060, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,d61711fd-589a-4669-b991-9408a58fffd9,3d971439-41d1-43a2-8434-704f9ec8d906,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belted Dress (Cream)", + "GiftDropId": 1061, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1061", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1061, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,oJFfs62tR0WVRry2Smt8yA,3d971439-41d1-43a2-8434-704f9ec8d906,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belted Dress (Light Blue)", + "GiftDropId": 1062, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1062", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1062, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,MIfCkcrFOEasJqfDmxThdw,3d971439-41d1-43a2-8434-704f9ec8d906,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belted Dress (Purple)", + "GiftDropId": 1063, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1063", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1063, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "515dfc36-7f7b-47bc-abee-380d68f41be6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flowered Dress (Red)", + "GiftDropId": 1064, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1064", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1064, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "515dfc36-7f7b-47bc-abee-380d68f41be6,1acb1f56-4509-449f-9c6a-065bdeaa9ee3,2d7361d2-31a2-404b-90da-10e89114e1f2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flowered Dress (Grey)", + "GiftDropId": 1065, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1065", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1065, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "515dfc36-7f7b-47bc-abee-380d68f41be6,e98c3f98-7844-4d6e-a21c-05027033c18c,2d7361d2-31a2-404b-90da-10e89114e1f2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flowered Dress (Yellow)", + "GiftDropId": 1066, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1066", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1066, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c161dc73-6ce3-49c4-8d15-45e6911f84e4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sea Captain Beard", + "GiftDropId": 1067, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1067", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1067, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Blue, White, Red)", + "GiftDropId": 1068, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1068", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1068, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,b9f51861-ad10-4878-a9b1-d849bccf532a,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Black, White, Red)", + "GiftDropId": 1069, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1069", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1069, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,b5d62931-e756-4a8a-8f3b-760beba49319,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Black, White)", + "GiftDropId": 1070, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1070", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1070, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,6145292a-9002-41c6-8cd5-43679b6f542f,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Black, White, Grey)", + "GiftDropId": 1071, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1071", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1071, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,7c1aaa7e-503b-46ef-b1c5-0c61a75b916e,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Black, White, Blue)", + "GiftDropId": 1072, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1072", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1072, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,27af51bc-8226-4911-8d47-22d28ea8e378,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Blue, White, Blue)", + "GiftDropId": 1073, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1073", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1073, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,857fdcd8-704f-43d0-92b9-bca26619b153,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Blue, White)", + "GiftDropId": 1074, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1074", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1074, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,3df5d13b-ba77-4b51-90b2-7a946e4d0be7,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Black, Blue)", + "GiftDropId": 1075, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1075", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1075, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Swing Dress (Black)", + "GiftDropId": 1077, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1077", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1077, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,BLgkgLeS-EyazgPQxGcavg,Rk18_7icF0Srgh7M1_G-hA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Swing Dress (White)", + "GiftDropId": 1078, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1078", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1078, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,eb3SmJTIh0628LrZUkI4KQ,Rk18_7icF0Srgh7M1_G-hA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Swing Dress (Pink)", + "GiftDropId": 1080, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1080", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1080, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,Yr0mF1EWzEaIyRMOWFiY6w,Rk18_7icF0Srgh7M1_G-hA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Swing Dress (Red)", + "GiftDropId": 1081, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1081", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1081, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,QzjakcO8tUaPeiI5KBLKtg,Rk18_7icF0Srgh7M1_G-hA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Swing Dress (Blue)", + "GiftDropId": 1082, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1082", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1082, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17236d76-e3b6-42f6-9179-6fcf0479436f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Singlet (Yellow)", + "GiftDropId": 1086, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1086", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1086, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17236d76-e3b6-42f6-9179-6fcf0479436f,i1XbjBqTu0CILIuJClWimA,B-sIpWNOfEigMeQF-WVR1g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Singlet (Pink)", + "GiftDropId": 1089, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1089", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1089, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker (Teal)", + "GiftDropId": 1092, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1092", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1092, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,grutFwJD_0Cb3t6fddNg6w,oSaMpc5rTE-U6yhjtPWQgg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker (Red)", + "GiftDropId": 1093, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1093", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1093, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,EbVDqEJQOk6j0UvX3t-8rQ,oSaMpc5rTE-U6yhjtPWQgg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker (Blue)", + "GiftDropId": 1094, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1094", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1094, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,C3ll7uPfUkeZ1QLX80_BpQ,oSaMpc5rTE-U6yhjtPWQgg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker (Yellow)", + "GiftDropId": 1095, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1095", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1095, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,JS7aa4QSUUOpUYPqRZEb5g,oSaMpc5rTE-U6yhjtPWQgg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker (Orange)", + "GiftDropId": 1096, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1096", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1096, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Animal Sweater (Ferret) ", + "GiftDropId": 1101, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1101", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1101, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,azbt5pgvrUS4LQwhndFeJg,cHZ4lDnSoUypIXCiRRowzg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Animal Sweater (Axolotl)", + "GiftDropId": 1102, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1102", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1102, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,6dzz5ZcGtE6bEjQHxWmo0A,2cSC290cPkCOrW5vtlVUxw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Animal Sweater (Penguin)", + "GiftDropId": 1103, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1103", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1103, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,yXVeN9SzQUKE_6u_2KPzgw,sWgRczvpUU6ZHeoMrMD_yw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Animal Sweater (Toucan)", + "GiftDropId": 1104, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1104", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1104, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,61VZkFjB402brzWm4UsftA,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Tunic (Grey)", + "GiftDropId": 1111, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1111", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1111, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Coat (Brown)", + "GiftDropId": 1115, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1115", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1115, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,da185fbb-ad2b-4f30-87a2-491f24b78ebb,9009bcdf-b6f7-4dae-b2ec-895511d118ff,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Coat (Black)", + "GiftDropId": 1116, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1116", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1116, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,bea795cc-aabd-4229-84dd-49ab4f91a445,9009bcdf-b6f7-4dae-b2ec-895511d118ff,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Coat (Tan)", + "GiftDropId": 1117, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1117", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1117, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,2APfqVnnQUaDYKi-fQg8jg,9009bcdf-b6f7-4dae-b2ec-895511d118ff,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Coat (Red)", + "GiftDropId": 1118, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1118", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1118, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e48955ae-50e0-4f55-93a1-611150142331,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbarian Tunic", + "GiftDropId": 1119, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1119", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1119, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "18cd3470-2dd9-4a0a-98bd-eae2d5f5d522,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Shirt (Red)", + "GiftDropId": 1120, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1120", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1120, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "18cd3470-2dd9-4a0a-98bd-eae2d5f5d522,a5925738-a451-4f25-b622-ccbfa12bd88c,15edb8d7-2ff6-4170-a7e6-acd9e965cab5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Shirt (Black)", + "GiftDropId": 1121, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1121", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1121, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "18cd3470-2dd9-4a0a-98bd-eae2d5f5d522,c64ac7a9-7fd4-4587-8626-0413a190b706,15edb8d7-2ff6-4170-a7e6-acd9e965cab5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Shirt (Green)", + "GiftDropId": 1122, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1122", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1122, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6ada01c9-3a82-4e21-be3f-70d6eeb24a8d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sarong Swimsuit", + "GiftDropId": 1123, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1123", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1123, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1ebbfdfc-f72b-4d70-99d4-4d527f896aa7,1919d319-6cce-4500-8766-15fed6a13fa8,afd88a79-7f03-40f6-bcb4-c247dd86edc4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Suit (Gold)", + "GiftDropId": 1126, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1126", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1126, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1ebbfdfc-f72b-4d70-99d4-4d527f896aa7,lBe3yxuE40eBmTrnEHBqQQ,afd88a79-7f03-40f6-bcb4-c247dd86edc4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Suit (Purple)", + "GiftDropId": 1127, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1127", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1127, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1ebbfdfc-f72b-4d70-99d4-4d527f896aa7,oZ8k0Qv3SkG-DkY0_dP7UA,afd88a79-7f03-40f6-bcb4-c247dd86edc4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Suit (Teal)", + "GiftDropId": 1128, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1128", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1128, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "n52um7A-b0utGxixd1ESvA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Biker Jacket", + "GiftDropId": 1129, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1129", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1129, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "dedd2e98-2721-4de6-92f2-9d399f34e8fe,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bog Monster Suit", + "GiftDropId": 1131, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1131", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1131, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9ffa6e06-5200-4e53-ac13-f8491aecc864,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bounty Hunter Armor ", + "GiftDropId": 1133, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1133", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1133, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Turkey)", + "GiftDropId": 1134, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1134", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1134, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,-k9_-2onrEG407or8t1RFw,b-IM3eYMJUa40395O5XeLg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Hambone)", + "GiftDropId": 1135, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1135", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1135, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,GDvaUU10-EKh3pKUQ9tnag,b-IM3eYMJUa40395O5XeLg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Runway)", + "GiftDropId": 1136, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1136", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1136, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,kLyM-6otSUy2ql5SEmnF9Q,b-IM3eYMJUa40395O5XeLg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Spared)", + "GiftDropId": 1137, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1137", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1137, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,8xjU4GQ4OkaqGyad-ypwtw,5RUG6i2Mx0-55IO-IlhUdQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Flames, Red)", + "GiftDropId": 1138, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1138", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1138, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,032pE8s9Ik-2CImFVDrSqg,5RUG6i2Mx0-55IO-IlhUdQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Flames, Blue)", + "GiftDropId": 1139, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1139", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1139, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,M4765UHzsUeNTwH-Pcxp1g,5RUG6i2Mx0-55IO-IlhUdQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Flames, Green)", + "GiftDropId": 1140, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1140", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1140, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,ghM-uFq5-0Ci38AOHa9zZA,IWg9wuda4kaCilJk8JQpTQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Deadwood)", + "GiftDropId": 1142, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1142", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1142, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,Gtq8yRlt1UeFW8U-sc7FiA,IWg9wuda4kaCilJk8JQpTQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Brooklyn)", + "GiftDropId": 1143, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1143", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1143, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,XrSL-v2MbkK0md-FMOweOA,IWg9wuda4kaCilJk8JQpTQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Sleeper)", + "GiftDropId": 1144, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1144", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1144, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,KqjQ1xRpokGLKp9GVN1EFA,VO_3cgqQqUOTz30TVUxrFA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Striker)", + "GiftDropId": 1145, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1145", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1145, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,yrQCLXiqRUSwnuQRYX2Rsw,VO_3cgqQqUOTz30TVUxrFA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Lily)", + "GiftDropId": 1146, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1146", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1146, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,yZR5aX3gQ0WpRUT6cfK1cA,VO_3cgqQqUOTz30TVUxrFA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Split)", + "GiftDropId": 1147, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1147", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1147, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff15e25d-d467-47a8-9ecc-e415d5acb90c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Shirt (Blue)", + "GiftDropId": 1149, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1149", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1149, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff15e25d-d467-47a8-9ecc-e415d5acb90c,8c7b09f2-6213-4ef9-87ab-a2df72d07a22,0ec6628c-a106-4452-af82-105a3e3a9f2e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Shirt (Red)", + "GiftDropId": 1150, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1150", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1150, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff15e25d-d467-47a8-9ecc-e415d5acb90c,rzUd1IMTKUmW0HeMPSIOBQ,0ec6628c-a106-4452-af82-105a3e3a9f2e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Shirt (Green)", + "GiftDropId": 1151, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1151", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1151, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff5c62b3-4f41-4acd-bfd8-8db00de4f36c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chef Coat (White)", + "GiftDropId": 1154, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1154", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1154, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff5c62b3-4f41-4acd-bfd8-8db00de4f36c,PR5dh2jf2kqGLO0lXgA69A,VDn1hO6ahky0GDJt5dRmyg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chef Coat (Black)", + "GiftDropId": 1155, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1155", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1155, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "35d67043-ca27-4b8a-a893-2d42674e6e68,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Overcoat (Blue)", + "GiftDropId": 1156, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1156", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1156, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e60fccda-8711-463d-b8a3-7cd5e76903b2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Jacket (Black)", + "GiftDropId": 1157, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1157", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1157, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e60fccda-8711-463d-b8a3-7cd5e76903b2,Chiz8maLoEGDpZOJZEtdQg,cQUquXMk5EGt0VUCuPKBgg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Jacket (Blue)", + "GiftDropId": 1158, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1158", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1158, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e60fccda-8711-463d-b8a3-7cd5e76903b2,2axtF2iOGkez1kfRRGUbYw,cQUquXMk5EGt0VUCuPKBgg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Jacket (Green)", + "GiftDropId": 1159, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1159", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1159, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6423f23e-dde3-4428-96f5-6091027c92cb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Martial Arts Gi (Cunning) ", + "GiftDropId": 1167, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1167", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1167, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c3745cee-d87e-4a23-b6e2-64ebf05c8b11,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Suit (Triton)", + "GiftDropId": 1168, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1168", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1168, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c3745cee-d87e-4a23-b6e2-64ebf05c8b11,Su7kiW24d0KapNns96JoFQ,EiIow5mS80qpoS10r1ZdvQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Suit (Kraken)", + "GiftDropId": 1169, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1169", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1169, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c3745cee-d87e-4a23-b6e2-64ebf05c8b11,CahBzgN3D0y46AQsvGC14A,EiIow5mS80qpoS10r1ZdvQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Suit (Leviathan)", + "GiftDropId": 1170, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1170", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1170, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "27e742bf-3081-4274-ba70-301f0edeb4f1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Doctor's Coat", + "GiftDropId": 1172, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1172", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1172, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Shirt (Red)", + "GiftDropId": 1176, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1176", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1176, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,fe5288bc-0e02-4ea3-b17d-dee0e576979d,b0298c45-0dd1-453e-bad4-41e4656bb38e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Shirt (Green)", + "GiftDropId": 1177, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1177", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1177, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,82de1ca3-67d6-454d-84fb-0eeece71fcbc,b0298c45-0dd1-453e-bad4-41e4656bb38e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Shirt (Orange)", + "GiftDropId": 1178, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1178", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1178, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,54d3c589-30ba-44c1-a77c-8f9e16eb0b20,b0298c45-0dd1-453e-bad4-41e4656bb38e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Shirt (Yellow)", + "GiftDropId": 1179, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1179", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1179, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "485bbda2-37e8-45a7-90db-7c35518dcdd0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elven Armor", + "GiftDropId": 1186, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 1186", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1186, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Night Coat (Zzz)", + "GiftDropId": 1187, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1187", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1187, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,uDJ5ZqU1f0CiOAH8WY22Yw,KOCzRE4a6EKb3_NVOI_lcg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Night Coat (Dozy)", + "GiftDropId": 1188, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1188", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1188, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,j66We9SYr0SNQ2ufZqIqhA,KOCzRE4a6EKb3_NVOI_lcg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Night Coat (Sandman)", + "GiftDropId": 1189, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1189", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1189, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,_jkPDSXFUkSU_yOfutQ7BA,KOCzRE4a6EKb3_NVOI_lcg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Night Coat (Zonked)", + "GiftDropId": 1190, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1190", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1190, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Uniform (Green)", + "GiftDropId": 1192, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1192", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1192, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,cea53c7f-24a9-4e3b-80b9-fbf95738f973,435eba0d-d8f9-43cc-91aa-2959d63c6fa7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Uniform (Orange)", + "GiftDropId": 1193, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1193", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1193, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,e37b07d1-6b9d-49b9-94ca-1c728e228cfe,435eba0d-d8f9-43cc-91aa-2959d63c6fa7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Uniform (Blue)", + "GiftDropId": 1194, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1194", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1194, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,8c74ee27-3d56-401b-8a8c-7868a80770e8,435eba0d-d8f9-43cc-91aa-2959d63c6fa7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Uniform (Black)", + "GiftDropId": 1195, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1195", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1195, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9o0gWLJjREG552gxRreT8A,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Figure Skater Shirt", + "GiftDropId": 1196, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1196", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1196, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5PUja-WX00Sme9yBwvDq-g,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Figure Skater Skirt", + "GiftDropId": 1197, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1197", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1197, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f600892-aa67-484a-afc7-14c219d89c52,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Dress (Silver)", + "GiftDropId": 1198, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1198", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1198, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f600892-aa67-484a-afc7-14c219d89c52,565c17e0-496d-45bd-a2c3-564e118c06cc,a240d44f-963d-4d35-b22f-980938c7788d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Dress (Black)", + "GiftDropId": 1199, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1199", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1199, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f600892-aa67-484a-afc7-14c219d89c52,b6c25a3b-125b-4aab-bed0-e6e5ced2c21c,a240d44f-963d-4d35-b22f-980938c7788d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Dress (Gold)", + "GiftDropId": 1200, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1200", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1200, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e042433a-40a2-4758-8074-3b9d407835ec,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Romper (Pink)", + "GiftDropId": 1202, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1202", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1202, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5362d685-fc55-4b43-85a5-cc3d6cad3f69,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Galaxy)", + "GiftDropId": 1203, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 1203", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1203, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cf1a6f8f-1649-423b-b513-b8d40d242b1f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gathered Shirt (White)", + "GiftDropId": 1204, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1204", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1204, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,sX0ZZDcCUkyFSJISfvq0vg,ovy_3j_qwE-7mmks1Z47ig,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Harness (Orange)", + "GiftDropId": 1214, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1214", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1214, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,RfZNDPUok0WyQEa3Ko08ow,ovy_3j_qwE-7mmks1Z47ig,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Harness (Blue)", + "GiftDropId": 1217, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1217", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1217, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Black)", + "GiftDropId": 1220, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1220", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1220, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,mvMeyStxGUGlNLSYNeSubQ,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Purple)", + "GiftDropId": 1221, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1221", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1221, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,u_Gzj9Nro0WS48xKnH9few,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Blue)", + "GiftDropId": 1222, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1222", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1222, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,JTgXKeT7w0K2Mw4Jk2HCqg,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Grey)", + "GiftDropId": 1223, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1223", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1223, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,rNhOQoP3XkOBHV28ze2NpA,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Orange)", + "GiftDropId": 1224, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1224", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1224, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,TEgugZRs80iJbhL87RdYwg,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Pink)", + "GiftDropId": 1225, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1225", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1225, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,ytmSzjhCr0Sm58MSNbwJUA,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Green)", + "GiftDropId": 1226, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1226", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1226, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,yM5xRrd9OkmDGyQddwOP6g,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Red)", + "GiftDropId": 1227, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1227", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1227, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,LuYelZY8NkqmOp1pnxPXBg,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Yellow)", + "GiftDropId": 1229, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1229", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1229, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "I Heart Rec Room Shirt (White)", + "GiftDropId": 1242, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1242", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1242, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,4oywwjb3-kifr-um9x87Pw,11ZEZTFhy0ONpoXb3kiewQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Suspicious Goblin Shirt", + "GiftDropId": 1243, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1243", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1243, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,i4Zu9uZuWkWwm8IVGZwkbA,RmjxL1O9bEGOuYxY9kzHEA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "I Heart Rec Room Shirt (Orange)", + "GiftDropId": 1244, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1244", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1244, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,HQOKcDCvVUCItkAKo2ygGg,RmjxL1O9bEGOuYxY9kzHEA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "I Heart Rec Room Shirt (Blue)", + "GiftDropId": 1245, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1245", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1245, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Coat (Mastermind)", + "GiftDropId": 1247, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1247", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1247, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,YB7kXMyLJ0mF_5WidhmH8A,SeA8s77hr0K6DRZyVlRTCg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Coat (Spy)", + "GiftDropId": 1248, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1248", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1248, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,bQyNgFWAe0SPttPri6hxyg,SeA8s77hr0K6DRZyVlRTCg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Coat (Rogue)", + "GiftDropId": 1249, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1249", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1249, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,wRPoHTsXFESK5pjkxVMqGA,SeA8s77hr0K6DRZyVlRTCg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Coat (Outlaw)", + "GiftDropId": 1250, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1250", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1250, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "85e03c16-4288-45f4-a579-c911437d27d4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hoodie Jacket", + "GiftDropId": 1251, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1251", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1251, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,51ef8d39-2b94-4f9e-9620-07b6b0a913a5,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Orange)", + "GiftDropId": 1263, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1263", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1263, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,8377ab96-c908-457f-9fee-b784c9a759f3,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Red)", + "GiftDropId": 1264, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1264", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1264, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,dee70c38-7a99-4c2b-9181-665f1bf75aca,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Blue)", + "GiftDropId": 1265, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1265", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1265, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,cbe29e9f-f2ac-47fb-97e1-8bad16abb89d,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Pink)", + "GiftDropId": 1266, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1266", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1266, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,f8b0cfe8-e129-4578-8bb5-f60af5d38599,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Green)", + "GiftDropId": 1267, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1267", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1267, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,d2b40639-5d34-45b6-904e-6dd29030ff44,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Yellow)", + "GiftDropId": 1268, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1268", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1268, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,724c79a3-822c-422f-9462-a5374ee0211c,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (White)", + "GiftDropId": 1269, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1269", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1269, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,c72911d0-453f-4732-b1bd-dad520220a06,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Purple)", + "GiftDropId": 1270, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1270", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1270, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,90bc2d31-1715-4d1a-813a-7c57e66cb017,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Teal)", + "GiftDropId": 1271, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1271", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1271, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,1b1d08f2-12ca-43dd-a44f-ea2820b919b4,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Black)", + "GiftDropId": 1272, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1272", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1272, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,PMa9370LPEig_7pKwCceEQ,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Armor (Green)", + "GiftDropId": 1279, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1279", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1279, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "39278302-b52a-48a8-a566-ed756a5fa1a9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lacrosse Shirt (Purple)", + "GiftDropId": 1280, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1280", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1280, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "39278302-b52a-48a8-a566-ed756a5fa1a9,e3454bc7-c88d-4958-8b81-db3fe5472a1e,da36bbcc-2a9a-4ba2-9e4a-6f52c9b1ef74,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lacrosse Shirt (Pink)", + "GiftDropId": 1281, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1281", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1281, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket (Blue)", + "GiftDropId": 1286, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1286", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1286, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,apSQiQ1eO0mEzRsbugeu9w,fz_0gZ6RXEC78NpYsx_eqA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket (Green)", + "GiftDropId": 1287, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1287", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1287, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,VpqHNpPiY0CfRJEjRRM-mw,fz_0gZ6RXEC78NpYsx_eqA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket (Red)", + "GiftDropId": 1288, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1288", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1288, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,Z1F9rjKqCE-Hd2-Ip5g3gA,fz_0gZ6RXEC78NpYsx_eqA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket (Black)", + "GiftDropId": 1289, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1289", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1289, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,iufpnteVCEiiZu_m-yPovQ,fz_0gZ6RXEC78NpYsx_eqA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket (Purple)", + "GiftDropId": 1290, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1290", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1290, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "23944856-b567-4075-815f-261cb4655cff,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Apocalypse Jacket", + "GiftDropId": 1294, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1294", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1294, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Skirt (Blue)", + "GiftDropId": 1295, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1295", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1295, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,VQjkyb5aoEKHKo_eZsq9ug,2UNd6eViFUO359xjSiuu2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Skirt (Teal)", + "GiftDropId": 1296, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1296", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1296, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,kTP3xKhzBkuQF3SqvmYFKA,2UNd6eViFUO359xjSiuu2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Skirt (Green)", + "GiftDropId": 1297, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1297", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1297, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,hYu9itGe1Ee5Neanhj9VtQ,2UNd6eViFUO359xjSiuu2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Skirt (Orange)", + "GiftDropId": 1298, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1298", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1298, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,FE7_gQNBt0CXzMN6di5HWA,2UNd6eViFUO359xjSiuu2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Skirt (Red)", + "GiftDropId": 1299, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1299", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1299, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,dYPaOkwy3EGAfvl8RyN4pw,2UNd6eViFUO359xjSiuu2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Skirt (Pink)", + "GiftDropId": 1300, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1300", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1300, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "RecFly Vest (Red)", + "GiftDropId": 1302, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1302", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1302, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,kkvNbVRjcEKtChpy3W1bqQ,nbhzQy_Hdkeohh4S1IezwA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "RecFly Vest (Black)", + "GiftDropId": 1303, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1303", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 } ], "PurchasableItemId": 1303, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 4050, - "StorefrontSaleData": null + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 2752, - "FriendlyName": "Notes Headphones (Two Xbox Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,k_ZYy0SjtU2TB7IFdq2vDA,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,GVoh3mdWf0WNA9lfqL1GEw,w9qG5gHlAUqh8f9ZgnezsQ,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "RecFly Vest (Blue)", + "GiftDropId": 1304, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1304", + "Unique": true }, - "IsFeatured": true, - "NewUntil": "2021-10-06T21:00:00Z", + "IsFeatured": false, "Prices": [ { "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 2255, + "PurchasableItemId": 1304, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 4050, - "StorefrontSaleData": null + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 2753, - "FriendlyName": "Notes Headphones (Xbox Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,thG3Dc1PFEqAvT9xCVshuw,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,x4PPvuhg6USE6GSFgZZnCg,w9qG5gHlAUqh8f9ZgnezsQ,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "RecFly Vest (Green)", + "GiftDropId": 1305, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1305", + "Unique": true }, - "IsFeatured": true, - "NewUntil": "2021-10-06T21:00:00Z", + "IsFeatured": false, "Prices": [ { "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 2256, + "PurchasableItemId": 1305, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 4050, - "StorefrontSaleData": null + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 2754, - "FriendlyName": "Notes Headphones (Purple Lounge)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,OqsbZ8Xls0i8uA6ha7H3qQ,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemDesc": "c4622dca-80dc-423b-ae22-2065174e817b,,,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Resistance Trench Coat", + "GiftDropId": 1306, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1306", + "Unique": true }, - "IsFeatured": true, - "NewUntil": "2021-10-06T21:00:00Z", + "IsFeatured": false, "Prices": [ { "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 2257, + "PurchasableItemId": 1306, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 4050, - "StorefrontSaleData": null + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 2755, - "FriendlyName": "Notes Headphones (Purple)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,a5nUvJZgTEGBUvdHx0Y6Ng,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,,,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": true, - "NewUntil": "2021-10-06T21:00:00Z", - "Prices": [ - { - "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2199, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 4050, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 2755, - "FriendlyName": "Captain Hat (Contest)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,hhs9GY3XZkWb-8TXODvo6A,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Suit (Pinstripe)", + "GiftDropId": 1307, "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "Tooltip": " Debug: 1307", + "Unique": true }, - "IsFeatured": true, - "NewUntil": "2021-10-06T21:00:00Z", + "IsFeatured": false, "Prices": [ { "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 } ], "PurchasableItemId": 1307, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 4050, - "StorefrontSaleData": null + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 477, - "FriendlyName": "Captain Jacket (Contest)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,hhs9GY3XZkWb-8TXODvo6A,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,531b4297-b38b-4362-9854-4f2139ea43be,33ee376a-586e-4aff-a7e4-4213445a3e92,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Suit (Herringbone)", + "GiftDropId": 1308, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1308", + "Unique": true }, - "IsFeatured": true, - "NewUntil": "2021-10-06T21:00:00Z", + "IsFeatured": false, "Prices": [ { "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 2258, + "PurchasableItemId": 1308, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 4050, - "StorefrontSaleData": null + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 2755, - "FriendlyName": "Captain Jacket (Contest)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,hhs9GY3XZkWb-8TXODvo6A,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,newGzX_zA0eGUX3Iayq5Ag,6Jv4AJGBYUGP_n4sDcz2Kw,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Suit (Purple)", + "GiftDropId": 1311, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1311", + "Unique": true }, - "IsFeatured": true, - "NewUntil": "2021-10-06T21:00:00Z", + "IsFeatured": false, "Prices": [ { "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 2200, + "PurchasableItemId": 1311, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 4050, - "StorefrontSaleData": null + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 3119, - "FriendlyName": "Bee Wings", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "37668d3d-c9f4-4bd6-81d4-a4f64ba2d61b,,,", + "AvatarItemDesc": "ca218759-7eed-440e-b5dc-dba15f81e598,,,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nineties Outfit (Da Bomb)", + "GiftDropId": 1313, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1313", + "Unique": true }, - "IsFeatured": true, - "NewUntil": "2021-10-06T21:00:00Z", + "IsFeatured": false, "Prices": [ { "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1313, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca218759-7eed-440e-b5dc-dba15f81e598,ulOBBvFEJ0ioFA1qmL390A,u9yHtj_tfkuowGp0h_YpFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nineties Outfit (Aiight)", + "GiftDropId": 1314, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1314", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1314, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca218759-7eed-440e-b5dc-dba15f81e598,V4CVhCB8eU-nrfYgticVOA,u9yHtj_tfkuowGp0h_YpFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nineties Outfit (Booyah)", + "GiftDropId": 1315, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1315", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1315, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Peacoat (Black)", + "GiftDropId": 1317, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1317", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1317, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,fvoaMN4M10WS6jiA6XlOJQ,AZnPWCN41kmNwFwDqWGFWQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Peacoat (Blue)", + "GiftDropId": 1318, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1318", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1318, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,PwsLxCnzOkSW-RGz3tNb1w,AZnPWCN41kmNwFwDqWGFWQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Peacoat (Tan)", + "GiftDropId": 1319, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1319", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1319, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,uiBklotTUEqRI2F67vyJyA,AZnPWCN41kmNwFwDqWGFWQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Peacoat (Purple)", + "GiftDropId": 1320, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1320", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1320, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,jXBi28cRV0CEQgKIrpD0_A,AZnPWCN41kmNwFwDqWGFWQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Peacoat (Red)", + "GiftDropId": 1321, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1321", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1321, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08046fdc-aafc-4b22-9917-3e7a9a7ffcd3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Poodle Skirt", + "GiftDropId": 1337, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1337", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1337, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b3cae00-88bd-4179-b75a-9444c5a52fa5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Prankster Jacket", + "GiftDropId": 1338, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1338", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1338, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Jacket (Red)", + "GiftDropId": 1340, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1340", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1340, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,4169bfed-8403-4590-a29d-4941275ac0b6,d738ad4c-c9b5-41e6-8979-d586c964fb6c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Jacket (Pink)", + "GiftDropId": 1341, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1341", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1341, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,0724b166-9ace-46ff-a191-b13f135b00a8,d738ad4c-c9b5-41e6-8979-d586c964fb6c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Jacket (Blue)", + "GiftDropId": 1342, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1342", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1342, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Quilted Vest (Black)", + "GiftDropId": 1344, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1344", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1344, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,QBglgj80zkuvUkk55Y5Feg,ACrBLiAIgEur9V6l_B0CvA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Quilted Vest (Green)", + "GiftDropId": 1345, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1345", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1345, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,-HYrY2A5Tk2UWMi4_hmYbg,ACrBLiAIgEur9V6l_B0CvA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Quilted Vest (Orange)", + "GiftDropId": 1346, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1346", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1346, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,IjRMopsYlUqSE6327I9TIQ,ACrBLiAIgEur9V6l_B0CvA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Quilted Vest (Purple)", + "GiftDropId": 1347, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1347", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1347, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "be75b46c-ce22-4758-8810-c409c5aa1c50,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Puffer Vest ", + "GiftDropId": 1348, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1348", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1348, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Raincoat (Yellow)", + "GiftDropId": 1350, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1350", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1350, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,GH9q8_0O9EqjGdz7lGWD2g,T7zwcIIc8Ee3ud8a2JCuwQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Raincoat (Blue)", + "GiftDropId": 1351, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1351", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1351, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,M-N9vQt0CEefqgmeLp3l4g,T7zwcIIc8Ee3ud8a2JCuwQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Raincoat (Green)", + "GiftDropId": 1352, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1352", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1352, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,q_HcScqHgEG-x70g1wtfLA,T7zwcIIc8Ee3ud8a2JCuwQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Raincoat (Red)", + "GiftDropId": 1353, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1353", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1353, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fb907eb2-91c8-45ff-84a5-462bb86ea7de,b415fe60-3e9d-4f4d-a53a-ca15eac6af7d,d21e1b6f-9c9e-42b4-bad5-201ec43161e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ranger Uniform (Green)", + "GiftDropId": 1356, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1356", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1356, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Dress (Blue)", + "GiftDropId": 1357, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1357", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1357, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,0ps19D7b_U2iejdKQFORyA,PoMG28QAskagun1LSd4C_A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Dress (Red)", + "GiftDropId": 1358, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1358", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1358, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,t1MeoroFOUioYmPfT9mCeA,PoMG28QAskagun1LSd4C_A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Dress (Green)", + "GiftDropId": 1359, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1359", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1359, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,pjkTGVHkIE-BzCVi1KAesQ,PoMG28QAskagun1LSd4C_A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Dress (Black)", + "GiftDropId": 1360, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1360", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1360, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Tabard (Blue)", + "GiftDropId": 1362, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1362", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1362, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,5TJPDmvEBEOkP82ZWLFqtg,50NUFrDxbUKmXbyAHBenvQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Tabard (Red)", + "GiftDropId": 1363, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1363", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1363, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,rCeRk8Pdl0W5M47JAQPhpw,50NUFrDxbUKmXbyAHBenvQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Tabard (Green)", + "GiftDropId": 1364, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1364", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1364, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,s2kCppLsN0uY7Hy6qjQc-g,50NUFrDxbUKmXbyAHBenvQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Tabard (Black)", + "GiftDropId": 1366, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1366", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1366, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1041d745-c5e9-4218-a3e1-198f5c9c418c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Shirt (Tan)", + "GiftDropId": 1367, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1367", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1367, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1041d745-c5e9-4218-a3e1-198f5c9c418c,49bbd11a-e5c9-47ff-b04d-72eb321e8a57,84c016ad-133f-45e3-a412-cac35612540b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Shirt (Green)", + "GiftDropId": 1368, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1368", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1368, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "57552652-d902-43b7-a68e-5c7da87582bc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Wetsuit (Orange)", + "GiftDropId": 1382, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1382", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1382, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "57552652-d902-43b7-a68e-5c7da87582bc,VqtOYBiKRkaSW4xAlBxQgg,xTqtLPQVyEKjAQZYl6HGow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Wetsuit (Blue)", + "GiftDropId": 1383, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1383", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1383, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "033e328f-d9d2-4e53-af20-44f18e3ea208,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Detective Coat (Tan)", + "GiftDropId": 1387, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1387", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1387, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "033e328f-d9d2-4e53-af20-44f18e3ea208,Z1Ib9r_fkUqgoZk0uid_Xw,9ZP617DQk0mZ10J3d5q9oA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Detective Coat (Black)", + "GiftDropId": 1388, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1388", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1388, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "033e328f-d9d2-4e53-af20-44f18e3ea208,msOFHoFN9UORkeXXtdqBsw,9ZP617DQk0mZ10J3d5q9oA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Detective Coat (Grey)", + "GiftDropId": 1389, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1389", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1389, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6RhwWExXekaYpK0NGHSXGQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Jacket (Summit)", + "GiftDropId": 1395, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1395", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1395, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6RhwWExXekaYpK0NGHSXGQ,fXNkMWFMV0aXalK_y_8SHw,HQQWccdyakaEmntPhvC6CQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Jacket (Chill)", + "GiftDropId": 1396, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1396", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1396, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Sleeveless, Blue)", + "GiftDropId": 1397, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1397", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1397, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,yA0KhVg19kWqG1UkyxQogQ,PMGQ8fLc2UuJXMy42Ati-w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Sleeveless, White)", + "GiftDropId": 1398, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1398", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1398, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,P9bBSL0YLEyjN8PxMfgbKQ,PMGQ8fLc2UuJXMy42Ati-w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Sleeveless, Black)", + "GiftDropId": 1399, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1399", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1399, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,bgRKH1wfqkWVHcuSnFYnlQ,sxWOOK1RwUOp5YqZ7a36xg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Sleeveless, Green)", + "GiftDropId": 1400, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1400", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1400, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,4Eck_dNL1UKlIZWsA1YppQ,WeyKw_WS70Cx3NZdOaxGeA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Sleeveless, Grey)", + "GiftDropId": 1401, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1401", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1401, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "rJ9zPPGdlk2i24sxLfkqng,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lifeguard Uniform", + "GiftDropId": 1409, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1409", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1409, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Uniform (Red)", + "GiftDropId": 1412, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1412", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1412, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,XFCpIdeDXUqeYCIgh4fGtg,MBuxBAIkpkWI26d-arAKQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Uniform (Blue)", + "GiftDropId": 1413, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1413", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1413, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,oKxmH-1s2EyIDkZoOQSQQw,MBuxBAIkpkWI26d-arAKQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Uniform (Green)", + "GiftDropId": 1414, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1414", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1414, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,MxnAq_XOw0uTzQ8IIxqb_Q,MBuxBAIkpkWI26d-arAKQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Uniform (Yellow)", + "GiftDropId": 1415, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1415", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1415, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b0c8d3fe-d3de-4883-b63f-8cc8890537cb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Vest", + "GiftDropId": 1423, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1423", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1423, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b0c8d3fe-d3de-4883-b63f-8cc8890537cb,cbn6vE0gDUOuklVhJv1vNA,Ru4HN3stVUutQ9rUh7ro1g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Vest (Grey)", + "GiftDropId": 1425, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1425", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1425, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e29d044e-79fb-4280-bca9-aa1e1257e968,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Martial Arts Gi (Speed)", + "GiftDropId": 1426, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1426", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1426, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "E9VTiIVFPEa-OuQRto0e_Q,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Vest", + "GiftDropId": 1427, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1427", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1427, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "E9VTiIVFPEa-OuQRto0e_Q,gy-xeYKKREaBlx9fUmuW2w,C8gCmBZ8RUG83vvDw_UYew,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Vest (Silver)", + "GiftDropId": 1429, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1429", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1429, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "LK8jt9zCuUGwLRccgOOvjA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Corset", + "GiftDropId": 1430, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1430", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1430, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "LK8jt9zCuUGwLRccgOOvjA,rsUfUnTwbU6zrjrHWps1yA,GJRG8sCM7kSGfUd9gLwpgQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Corset (Silver)", + "GiftDropId": 1432, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1432", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1432, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "25769d1f-4ecb-4d92-b692-322b38c013b5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Martial Arts Gi (Strength) ", + "GiftDropId": 1433, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1433", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1433, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ffad1160-8383-4b4a-a5b9-223476b49b92,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Guy Armor", + "GiftDropId": 1434, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1434", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1434, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "pQqNvrhDJ0uuipKHA2qUOA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Poindexter Shirt (White)", + "GiftDropId": 1435, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1435", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1435, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "pQqNvrhDJ0uuipKHA2qUOA,lq59KZwElEStrviDEQLLcA,olyS074RHU-ojE0GzBBYJw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Poindexter Shirt (Black)", + "GiftDropId": 1436, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1436", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1436, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Traveler Shirt", + "GiftDropId": 1444, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1444", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1444, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,NKf5-r2S_0iP0SaO9bjvaw,0WOBGm34H0ySBC10VToa9g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Shirt (Paradise)", + "GiftDropId": 1446, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1446", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1446, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,adJVA26PyUSVvmZgxkCAmQ,0WOBGm34H0ySBC10VToa9g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Shirt (Poppy)", + "GiftDropId": 1447, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1447", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1447, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,4ijeE3LqUUuSplKrMto6Kg,ytfIq0TiYU6EUdd0ruaGAQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Shirt (Begonia)", + "GiftDropId": 1448, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1448", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1448, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,d27e5m1BLUWI42Pxnj6F4A,ytfIq0TiYU6EUdd0ruaGAQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Shirt (Dahlia)", + "GiftDropId": 1449, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1449", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1449, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,RZFWcTzxPkOfUuTIQ1mzkg,ytfIq0TiYU6EUdd0ruaGAQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Shirt (Primrose)", + "GiftDropId": 1450, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1450", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1450, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,XT_txjZfIUOT400UPHLaRA,M-mi8QUHwEeIewXE8uAlrQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tourist Shirt (Green)", + "GiftDropId": 1451, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1451", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1451, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,gwdtq3NiEEmMKYtn1VPoiw,M-mi8QUHwEeIewXE8uAlrQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Traveler Shirt (Yellow)", + "GiftDropId": 1453, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1453", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1453, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "QK6lBlX_wUCiSbJ9RkIwdA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Shirt (Tan)", + "GiftDropId": 1454, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1454", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1454, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "QK6lBlX_wUCiSbJ9RkIwdA,H0sqS2_VPEieVrHSyMNo7g,9HVoTIf90Ea8_czICVg9AA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Shirt (Black)", + "GiftDropId": 1455, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1455", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1455, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Tank Top (Tan)", + "GiftDropId": 1458, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1458", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1458, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,3qu7mxSNpkKRrYMhsWHVGg,K5NXVecrqk6Nb6SkBu08ww,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Tank Top (Black)", + "GiftDropId": 1459, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1459", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1459, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,Ij8MXrl1Okip4M7y-gF23Q,K5NXVecrqk6Nb6SkBu08ww,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Tank Top (Red)", + "GiftDropId": 1460, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1460", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1460, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,qEojxjSXm06CX52hRDJAew,K5NXVecrqk6Nb6SkBu08ww,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Tank Top (White)", + "GiftDropId": 1461, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1461", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1461, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Blue)", + "GiftDropId": 1462, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1462", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1462, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,yA0KhVg19kWqG1UkyxQogQ,PMGQ8fLc2UuJXMy42Ati-w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (White)", + "GiftDropId": 1463, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1463", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1463, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,P9bBSL0YLEyjN8PxMfgbKQ,PMGQ8fLc2UuJXMy42Ati-w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Black)", + "GiftDropId": 1464, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1464", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1464, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,o2WfRyjJy0CKoUg8YIxNjQ,sxWOOK1RwUOp5YqZ7a36xg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Tan)", + "GiftDropId": 1465, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1465", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1465, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,bgRKH1wfqkWVHcuSnFYnlQ,sxWOOK1RwUOp5YqZ7a36xg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Green)", + "GiftDropId": 1466, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1466", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1466, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,sscD2O3LEUOAKkqjGpGe8g,uZjxYOMa10GzJ9wQkRge2w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flannel (Orange)", + "GiftDropId": 1467, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1467", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1467, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,hRxyLsKfsESFAsXAyZQjoA,uZjxYOMa10GzJ9wQkRge2w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flannel (Blue)", + "GiftDropId": 1468, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1468", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1468, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,kgCKjtSjFEmFq9ez2llxKQ,uZjxYOMa10GzJ9wQkRge2w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flannel (Green)", + "GiftDropId": 1469, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1469", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1469, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,KaZqNx5VKkarRrOJcTuD9A,uZjxYOMa10GzJ9wQkRge2w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flannel (Red)", + "GiftDropId": 1470, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1470", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1470, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,eOJkmpSL4EypK-AQz7j8gQ,uZjxYOMa10GzJ9wQkRge2w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flannel (Black)\t", + "GiftDropId": 1471, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1471", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1471, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Black)", + "GiftDropId": 1477, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1477", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1477, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,9b9t8_aKH0-gQXMhZycaOA,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Orange)", + "GiftDropId": 1478, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1478", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1478, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,Zz4XatKfUEapReRAQHxKKA,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (White)", + "GiftDropId": 1479, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1479", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1479, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,Jt0QqNrAp0qzUR_RQoivVg,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Green)", + "GiftDropId": 1480, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1480", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1480, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,lBePHNL9LkyaAjEFyFE8Sw,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Red)", + "GiftDropId": 1481, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1481", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1481, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,G4HIPUjekUigiU0-Kr9mdA,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Yellow)", + "GiftDropId": 1482, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1482", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1482, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,5mcp7-2ZEE6n3-zN3_CoWw,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Purple)", + "GiftDropId": 1483, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1483", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1483, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,R0UCacpdhUS906Xf7l142A,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Teal)", + "GiftDropId": 1484, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1484", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1484, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,G-VKgepBkkeATcwCaS6Rwg,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Grey)", + "GiftDropId": 1485, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1485", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1485, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,1LonkCbt4kykeAScYKpwyg,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Navy)", + "GiftDropId": 1486, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1486", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1486, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,IXWd396grEOWHt32L7fCpQ,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Blue)", + "GiftDropId": 1487, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1487", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1487, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Vest (Black)", + "GiftDropId": 1499, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1499", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1499, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,ffHKr5EcIU24PbAtWSnalw,bVrkIyADCUiGNYWdmP_HPw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Vest (Red)", + "GiftDropId": 1500, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1500", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1500, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,m4W5D0Oa9kaWa-8I96YYzA,WF_fg80f30qvHit0vGBwCA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Vest (Green)", + "GiftDropId": 1501, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1501", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1501, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Silly Shorts (Donut Dreams)", + "GiftDropId": 1502, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1502", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1502, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,nu_UGtkJOUK-5MWaW83MUg,pgBFpOtl00K2zsTJcfrefQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Silly Shorts (Watermelon Rain)", + "GiftDropId": 1503, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1503", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1503, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,sJioq5ARDUyMHFji_6OxFw,bjXO36Nu6EWD2dU1UC4Uwg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Silly Shorts (Pina Colada)", + "GiftDropId": 1504, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1504", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1504, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,56qchovVVEaVwL9S52kneA,BAjMoTHbD0mSCjoG9jmzjA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Silly Shorts (Sour Popsicle)", + "GiftDropId": 1505, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1505", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1505, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,zJMD-_HR80WCAUqYGe7_NA,rAzhaLh1nEWMd9v1D-HWcQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Silly Shorts (Lonely Island)", + "GiftDropId": 1506, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1506", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1506, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,9P8ARRUYdk6hCoGMKhix4w,o__JORNtYEiJEyyoBIimPA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Silly Shorts (Pink Flamingo)", + "GiftDropId": 1507, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1507", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1507, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,aBQ3R9boek-mYeSYSNvDbQ,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Torso (Blue)", + "GiftDropId": 1524, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1524", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1524, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,d3KmqVuMQkCYK6sVTMOTOA,8768aa33-b014-4062-b323-b146dd7d78d2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Robes (Purple)", + "GiftDropId": 1531, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1531", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1531, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "281937b2-f994-45e9-a6d3-03d097247ce6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Towel Cape", + "GiftDropId": 1533, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1533", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1533, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f6a7dee-0b44-4138-b3a7-a079dbc63e83,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Monkey Backpack", + "GiftDropId": 1535, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 1535", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1535, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Scarf (Striped, Red)", + "GiftDropId": 1539, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1539", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1539, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,827a1538-51bb-4fef-99c1-7f1bebd9866c,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Scarf (Plaid, Red)", + "GiftDropId": 1540, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1540", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1540, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Scarf (Plaid, Blue)", + "GiftDropId": 1541, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1541", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1541, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,6dd95046-acf8-42fe-ab78-80a334096a9d,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Scarf (Plaid, White)", + "GiftDropId": 1542, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1542", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1542, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,827a1538-51bb-4fef-99c1-7f1bebd9866c,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Scarf (Dots, Red)", + "GiftDropId": 1543, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1543", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1543, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Scarf (Dots, Blue)", + "GiftDropId": 1544, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1544", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1544, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,6dd95046-acf8-42fe-ab78-80a334096a9d,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Scarf (Dots, White)", + "GiftDropId": 1545, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1545", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1545, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tracksuit (Yellow)", + "GiftDropId": 1546, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1546", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1546, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,026ca50e-3a81-43cf-87f5-950687b7bbdd,adae82eb-a4b9-4541-acf2-76cea839a593,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tracksuit (Pink)", + "GiftDropId": 1547, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1547", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1547, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,6584dada-499e-4d7c-958d-466955b20640,adae82eb-a4b9-4541-acf2-76cea839a593,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tracksuit (Blue)", + "GiftDropId": 1548, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1548", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1548, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,uUOO-k5KS0mU7B5BLaOpnA,adae82eb-a4b9-4541-acf2-76cea839a593,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tracksuit (Black)", + "GiftDropId": 1549, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1549", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1549, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,Ijf-j7EgEkGYOKo9SQNLRw,adae82eb-a4b9-4541-acf2-76cea839a593,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tracksuit (Red)", + "GiftDropId": 1550, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1550", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1550, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker Cuffs (Teal)", + "GiftDropId": 1551, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1551", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1551, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,HncURj5yi0ykk2cVyCZ4Sw,MV1HW2x43kG4rrhyoC6mmw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker Cuffs (Red)", + "GiftDropId": 1552, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1552", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1552, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,42ZNGHXMvU29yo9s9tVpOQ,MV1HW2x43kG4rrhyoC6mmw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker Cuffs (Blue)", + "GiftDropId": 1553, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1553", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1553, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,VDo682NvSUa8xYn8zTX-AQ,MV1HW2x43kG4rrhyoC6mmw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker Cuffs (Yellow)", + "GiftDropId": 1554, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1554", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1554, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,FvEjo9let0e_Sr-kWq5AvQ,MV1HW2x43kG4rrhyoC6mmw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker Cuffs (Orange)", + "GiftDropId": 1555, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1555", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1555, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,8hUBfmq28EixYjv92Xcrgg,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Gloves (Grey)", + "GiftDropId": 1562, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1562", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1562, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "88739d79-aeb9-471a-b25b-776f46bba9f6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Astronaut Gloves (White)", + "GiftDropId": 1563, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1563", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1563, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "88739d79-aeb9-471a-b25b-776f46bba9f6,y_gTbnuYS0GKJmnCs2retw,hjk9OO8CW0KNGR7A6_p84A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Astronaut Gloves (Orange)", + "GiftDropId": 1564, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1564", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1564, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Gloves (Brown)", + "GiftDropId": 1565, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1565", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1565, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,97bbb384-b37e-4ea1-902c-88fbd6854ab5,5659ce2c-9cb0-49da-8c39-4b7df0f8deec,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Gloves (Black)", + "GiftDropId": 1566, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1566", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1566, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,7fb8496f-0e6c-4e48-b8fa-5709ebbf4820,5659ce2c-9cb0-49da-8c39-4b7df0f8deec,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Gloves (Tan)", + "GiftDropId": 1567, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1567", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1567, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,7nRz9Jmnn066_PzngkhfFA,5659ce2c-9cb0-49da-8c39-4b7df0f8deec,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Gloves (Red)", + "GiftDropId": 1568, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1568", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1568, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ce81210f-8eb8-4cd2-95d5-046d4da229c8,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Wrist (White)", + "GiftDropId": 1569, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1569", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1569, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ce81210f-8eb8-4cd2-95d5-046d4da229c8,bb01b51e-a95f-441e-8c52-abc3aeed7145,f7c7d05f-5454-445a-af38-25f110bd204a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Wrist (Black)", + "GiftDropId": 1570, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1570", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1570, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4025e4c4-abaa-4729-a2a3-a7175313e5ed,1919d319-6cce-4500-8766-15fed6a13fa8,1f18670d-df52-4d2b-8009-a32cf7c67b40,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Gloves (Gold)", + "GiftDropId": 1572, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1572", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1572, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4025e4c4-abaa-4729-a2a3-a7175313e5ed,lBe3yxuE40eBmTrnEHBqQQ,1f18670d-df52-4d2b-8009-a32cf7c67b40,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Gloves (Purple)", + "GiftDropId": 1573, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1573", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1573, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4025e4c4-abaa-4729-a2a3-a7175313e5ed,oZ8k0Qv3SkG-DkY0_dP7UA,1f18670d-df52-4d2b-8009-a32cf7c67b40,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Gloves (Teal)", + "GiftDropId": 1574, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1574", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1574, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Gloves (Blue)", + "GiftDropId": 1575, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1575", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1575, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,4398ce1a-e6ee-4da4-ad0d-7abfab41020c,0XPd5RzNJEepHztqwAznHQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Gloves (Yellow)", + "GiftDropId": 1576, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1576", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1576, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,XNq4Cns4lEGydtktdsXlmQ,0XPd5RzNJEepHztqwAznHQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Gloves (Navy)", + "GiftDropId": 1577, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1577", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1577, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,83522c12-9549-4d74-8c87-bae210bcd2bf,0XPd5RzNJEepHztqwAznHQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Gloves (Black)", + "GiftDropId": 1578, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1578", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1578, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4e42e02e-33fd-4ff9-b74e-9bde26253c35,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bog Monster Wrist", + "GiftDropId": 1580, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1580", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1580, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ddd2c2b-596c-4022-a488-655b0db1c265,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bounty Hunter Glove", + "GiftDropId": 1581, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1581", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1581, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b904304b-cce0-466f-8569-c621eeadd4f7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Gloves (Blue)", + "GiftDropId": 1582, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1582", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1582, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b904304b-cce0-466f-8569-c621eeadd4f7,8c7b09f2-6213-4ef9-87ab-a2df72d07a22,f79f8a46-ef1d-4d8c-a4fc-383e3a9eb10b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Gloves (Red)", + "GiftDropId": 1583, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1583", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1583, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b904304b-cce0-466f-8569-c621eeadd4f7,rzUd1IMTKUmW0HeMPSIOBQ,f79f8a46-ef1d-4d8c-a4fc-383e3a9eb10b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Gloves (Green)", + "GiftDropId": 1584, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1584", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1584, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8fc7aaef-adec-4534-8f91-445e4e7095d5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Cuffs (Black)", + "GiftDropId": 1585, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1585", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1585, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8fc7aaef-adec-4534-8f91-445e4e7095d5,5Dbc8qCaY0OXEuwykM4naA,awWjleyNP0akWNYJoehCLA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Cuffs (Blue)", + "GiftDropId": 1586, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1586", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1586, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8fc7aaef-adec-4534-8f91-445e4e7095d5,HBt3ToOkUUereoPKwyvzuw,awWjleyNP0akWNYJoehCLA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Cuffs (Green)", + "GiftDropId": 1587, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1587", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1587, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Gloves (Brown)", + "GiftDropId": 1593, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1593", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1593, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,17e44296-1cd9-4f8e-9aa7-3837dc69279a,8eef8837-9141-4088-835a-b2f47f4126f8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Gloves (Cherry)", + "GiftDropId": 1594, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1594", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1594, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,c4ebfd1a-fcda-4b98-a151-a941b1801867,8eef8837-9141-4088-835a-b2f47f4126f8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 1002, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Gloves (Black, Gold)", + "GiftDropId": 1595, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1595", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1595, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,c0c33a35-494c-4a1a-aa53-d27d9b9ef5a4,8eef8837-9141-4088-835a-b2f47f4126f8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 1002, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Gloves (Yellow)", + "GiftDropId": 1596, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1596", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1596, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,wat8f6fs80KptZbW39e8tA,8eef8837-9141-4088-835a-b2f47f4126f8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Gloves (White)", + "GiftDropId": 1597, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1597", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1597, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,wkqKPZmnoU-8TXSWzi2-Ow,8eef8837-9141-4088-835a-b2f47f4126f8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Gloves (Black, Silver)", + "GiftDropId": 1598, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1598", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1598, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b1c3ccc8-91d7-434e-b9cc-bd632fffc01b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Gloves (Triton)", + "GiftDropId": 1599, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1599", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1599, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b1c3ccc8-91d7-434e-b9cc-bd632fffc01b,Su7kiW24d0KapNns96JoFQ,0p5N9U5qokKdQhW07yYLGQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Gloves (Kraken)", + "GiftDropId": 1600, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1600", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1600, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b1c3ccc8-91d7-434e-b9cc-bd632fffc01b,CahBzgN3D0y46AQsvGC14A,0p5N9U5qokKdQhW07yYLGQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Gloves (Leviathan)", + "GiftDropId": 1601, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1601", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1601, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Gloves (Red)", + "GiftDropId": 1602, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1602", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1602, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,fe5288bc-0e02-4ea3-b17d-dee0e576979d,6b38ab79-142b-446e-978c-ad829ade8823,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Gloves (Green)", + "GiftDropId": 1603, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1603", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1603, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,b444ed0a-eab5-4bd6-af34-d080de74a149,6b38ab79-142b-446e-978c-ad829ade8823,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Gloves (Orange)", + "GiftDropId": 1604, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1604", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1604, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,8053b5e5-0f67-4329-a45d-1ee9fc830820,6b38ab79-142b-446e-978c-ad829ade8823,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Gloves (Yellow)", + "GiftDropId": 1605, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1605", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1605, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74042b5f-f29e-4e72-b3b1-04e6abaed4a4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elven Bracer", + "GiftDropId": 1607, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1607", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1607, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Gloves (White)", + "GiftDropId": 1608, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1608", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1608, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,18b52db5-0261-46a0-9214-ff510d455ed9,7869b2a5-cd89-4033-b9f7-4f1451ecb47b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Gloves (Orange)", + "GiftDropId": 1609, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1609", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1609, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,55b4e661-43e1-4708-82d5-2dd2bebd4f45,7869b2a5-cd89-4033-b9f7-4f1451ecb47b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Gloves (Blue)", + "GiftDropId": 1610, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1610", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1610, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,8c74ee27-3d56-401b-8a8c-7868a80770e8,7869b2a5-cd89-4033-b9f7-4f1451ecb47b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Gloves (Black)", + "GiftDropId": 1611, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1611", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1611, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "473c672d-2b79-48a2-a49d-fd68160c5bde,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Gloves (Black)", + "GiftDropId": 1612, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1612", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1612, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "473c672d-2b79-48a2-a49d-fd68160c5bde,30c61e63-5e09-4a6f-8915-1e1fe4d55cf0,0e42108e-3b08-49b4-86c0-7984719e8380,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Gloves (Silver)", + "GiftDropId": 1613, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1613", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1613, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "473c672d-2b79-48a2-a49d-fd68160c5bde,2cf2b644-3fa6-449c-9fe8-d0ab917f3106,0e42108e-3b08-49b4-86c0-7984719e8380,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Gloves (Gold)", + "GiftDropId": 1614, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1614", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1614, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "q7pSsRMNHkqEJmYHuhhG6g,90qQe0AR3kOou0MsuoTmPA,ojCeJ1VwtUelyVqFnUwK5A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Mitt (Blue)", + "GiftDropId": 1620, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1620", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1620, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "q7pSsRMNHkqEJmYHuhhG6g,hZKPr4sg10SRj9DLuEgOrw,ojCeJ1VwtUelyVqFnUwK5A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Mitt (Black)", + "GiftDropId": 1621, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1621", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1621, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "q7pSsRMNHkqEJmYHuhhG6g,x3Q0vVeG_E6juqGM1o0SOQ,ojCeJ1VwtUelyVqFnUwK5A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Mitt (White)", + "GiftDropId": 1622, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1622", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1622, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,sX0ZZDcCUkyFSJISfvq0vg,rgzG7sfrlkqd9EO13LNmpQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Wrist Guard (Green)", + "GiftDropId": 1624, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1624", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1624, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,RfZNDPUok0WyQEa3Ko08ow,rgzG7sfrlkqd9EO13LNmpQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Wrist Guard (Pink)", + "GiftDropId": 1627, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1627", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1627, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Gloves (Mastermind)", + "GiftDropId": 1630, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1630", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1630, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,DtFYrQwaCky5C1ZycqZbiQ,egpzBs77Q0CpDndZHqXOog,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Gloves (Spy)", + "GiftDropId": 1631, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1631", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1631, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,9SAPupKy_EO6YeG0SMkI5A,egpzBs77Q0CpDndZHqXOog,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Gloves (Rogue)", + "GiftDropId": 1632, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1632", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 } ], "PurchasableItemId": 1632, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 4050, - "StorefrontSaleData": null + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 1172, - "FriendlyName": "Winter Sweater (Trees Green)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "3757149b-f478-4975-81e5-d808a1bed8d5,i33RmJJCwUem-ADkOwMNQQ,Yn1uv3Y8JE6VSxsf0LOBvw,", + "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,hiMYlmk5sEqh-sElOY3A9g,egpzBs77Q0CpDndZHqXOog,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Gloves (Outlaw)", + "GiftDropId": 1633, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1633", + "Unique": true }, - "IsFeatured": true, - "NewUntil": "2021-10-06T21:00:00Z", + "IsFeatured": false, "Prices": [ { "CurrencyType": 2, - "Price": 4500, - "StorefrontSaleData": null + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 1175, + "PurchasableItemId": 1633, "SubscriberPrices": [ { "CurrencyType": 2, - "Price": 4050, - "StorefrontSaleData": null + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 }, { "GiftDrop": { - "GiftDropId": 405, - "FriendlyName": "Astronaut Suit (Stranded)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "ec5255d5-edaf-4888-9fe1-e89ac0e0d300,EBT5-2K2tEyln18XS9waqg,l4NwuwgEtE6b6Qi6lAk2iA,", + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,PMa9370LPEig_7pKwCceEQ,fd67ec40-f898-4df6-b846-8bf350f362b8,", "AvatarItemType": 0, - "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, + "ConsumableItemDesc": "", "Context": 0, "Currency": 0, "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 8500, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2259, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 7650, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 333, - "FriendlyName": "Astronaut Helmet (Stranded)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "f218e2de-46fd-45b9-9e0e-670b6bb905e7,QlBsZP9HRUS3eug-em6MlQ,n2L0XJTYb0qN4zoUT2fV4w,", - "AvatarItemType": 0, - "EquipmentPrefabName": "", "EquipmentModificationGuid": "", - "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, - "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" - }, - "IsFeatured": false, - "NewUntil": null, - "Prices": [ - { - "CurrencyType": 2, - "Price": 10000, - "StorefrontSaleData": null - } - ], - "PurchasableItemId": 2260, - "SubscriberPrices": [ - { - "CurrencyType": 2, - "Price": 9000, - "StorefrontSaleData": null - } - ], - "Type": 0 - }, - { - "GiftDrop": { - "GiftDropId": 520, - "FriendlyName": "Astronaut Gloves (Stranded)", - "Tooltip": "", - "ConsumableItemDesc": "", - "AvatarItemDesc": "88739d79-aeb9-471a-b25b-776f46bba9f6,QlBsZP9HRUS3eug-em6MlQ,,", - "AvatarItemType": 0, "EquipmentPrefabName": "", - "EquipmentModificationGuid": "", + "FriendlyName": "Knight Gauntlet (Green)", + "GiftDropId": 1640, "IsQuery": false, - "QueryRedirectContext": null, - "QueryRedirectRarity": null, - "Unique": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, "SubscribersOnly": false, - "Rarity": 50, - "Context": 0, - "Currency": 0, - "CurrencyType": 0, - "ItemSetId": null, - "ItemSetFriendlyName": "" + "Tooltip": " Debug: 1640", + "Unique": true }, "IsFeatured": false, - "NewUntil": null, "Prices": [ { "CurrencyType": 2, - "Price": 1000, - "StorefrontSaleData": null + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 } ], - "PurchasableItemId": 2261, + "PurchasableItemId": 1640, "SubscriberPrices": [ { "CurrencyType": 2, "Price": 900, - "StorefrontSaleData": null + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket Cuffs (Blue)", + "GiftDropId": 1645, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1645", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1645, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,UUyjVU4mvECPhI9xTMYR1Q,4EHIyZkOOEqnM-PuD_a5xw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket Cuffs (Green)", + "GiftDropId": 1646, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1646", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1646, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,HWc25-d8dUmNN2F3n8mV5A,4EHIyZkOOEqnM-PuD_a5xw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket Cuffs (Red)", + "GiftDropId": 1647, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1647", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1647, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,Y0e7o0_BKUm7XJSLediN5w,4EHIyZkOOEqnM-PuD_a5xw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket Cuffs (Black)", + "GiftDropId": 1648, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1648", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1648, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,MS7EPNLJEEyMLC6_yHQYtA,4EHIyZkOOEqnM-PuD_a5xw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket Cuffs (Purple)", + "GiftDropId": 1649, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1649", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1649, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1fed823a-22bb-4225-bdc4-491da6eba875,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Apocalypse Gloves", + "GiftDropId": 1650, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1650", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1650, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Glove (Blue)", + "GiftDropId": 1651, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1651", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1651, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,zaSTWOUy_k6cnoVVYzypWg,ZtCqMnFTQUWv2h0MfZ4m6A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Glove (Teal)", + "GiftDropId": 1652, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1652", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1652, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,1FcyrVGyGEC9dmOq_51nFQ,ZtCqMnFTQUWv2h0MfZ4m6A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Glove (Green)", + "GiftDropId": 1653, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1653", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1653, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,xpkEQ6yjhU-WfFPSjvPdHg,ZtCqMnFTQUWv2h0MfZ4m6A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Glove (Orange)", + "GiftDropId": 1654, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1654", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1654, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,N9CBuYaMtUOrCks5UcOycg,ZtCqMnFTQUWv2h0MfZ4m6A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Glove (Red)", + "GiftDropId": 1655, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1655", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1655, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,LDjFJtM-WkeYhtwA7cyDOg,ZtCqMnFTQUWv2h0MfZ4m6A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Glove (Pink)", + "GiftDropId": 1656, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1656", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1656, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08d56627-4500-4724-8692-a23c96ddb3ec,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Cuffs (Pinstripe)", + "GiftDropId": 1657, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1657", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1657, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08d56627-4500-4724-8692-a23c96ddb3ec,531b4297-b38b-4362-9854-4f2139ea43be,c2a9c007-2748-4fa2-ab9b-0081eef792f1,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Cuffs (Herringbone)", + "GiftDropId": 1658, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1658", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1658, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08d56627-4500-4724-8692-a23c96ddb3ec,newGzX_zA0eGUX3Iayq5Ag,QBzMp7MdAUOLIofvddui1A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Cuffs (Purple)", + "GiftDropId": 1660, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1660", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1660, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "64ad8789-1645-45f7-819a-a413ff7c9622,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Gloves", + "GiftDropId": 1662, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1662", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1662, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Wristbands (Black)", + "GiftDropId": 1668, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1668", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1668, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,a6796264-9c7e-4605-830c-06db8d0dc780,dd7472ed-bdcb-4811-81ba-5ed682fb7675,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Wristbands (Blue)", + "GiftDropId": 1669, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1669", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1669, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,f3b2330a-b981-4c7e-902f-1f57382f2388,dd7472ed-bdcb-4811-81ba-5ed682fb7675,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Wristbands (Pink)", + "GiftDropId": 1670, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1670", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1670, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,baffdefe-de21-4551-9330-b50873965bdd,dd7472ed-bdcb-4811-81ba-5ed682fb7675,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Wristbands (Red)", + "GiftDropId": 1671, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1671", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1671, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d33c2f3a-6831-4deb-82b2-062d1c4224e4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Robot Gauntlets", + "GiftDropId": 1673, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 1673", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1673, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74365234-cb72-409d-8cf5-9a7209f707e1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Gloves (Tan)", + "GiftDropId": 1674, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1674", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1674, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74365234-cb72-409d-8cf5-9a7209f707e1,49bbd11a-e5c9-47ff-b04d-72eb321e8a57,fa9a3d8e-16c9-4a7e-9166-3226e0d13c39,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Gloves (Green)", + "GiftDropId": 1675, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1675", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1675, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "qxovV6Vym0ufL2cTCyKjOQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Cuff", + "GiftDropId": 1706, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1706", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1706, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "qxovV6Vym0ufL2cTCyKjOQ,64Hvmzrb3Uu9X_dCA3M3Jw,rPpYm5fIzky4vqVB26guAw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Cuff (Silver)", + "GiftDropId": 1707, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1707", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1707, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fa0e701c-5e80-46f4-8817-6e2dbf904734,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Bracer ", + "GiftDropId": 1708, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1708", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1708, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Cuff (Blue)", + "GiftDropId": 1711, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1711", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1711, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,yA0KhVg19kWqG1UkyxQogQ,yBNsYcZXzEiuR0u3tWnnWQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Cuff (White)", + "GiftDropId": 1712, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1712", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1712, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,P9bBSL0YLEyjN8PxMfgbKQ,yBNsYcZXzEiuR0u3tWnnWQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Cuff (Black)", + "GiftDropId": 1713, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1713", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1713, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,o2WfRyjJy0CKoUg8YIxNjQ,sHyNs-dpc0-_Ah-HJVczcw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Cuff (Tan)", + "GiftDropId": 1714, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1714", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1714, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,bgRKH1wfqkWVHcuSnFYnlQ,sHyNs-dpc0-_Ah-HJVczcw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Cuff (Green)", + "GiftDropId": 1715, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1715", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1715, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,aBQ3R9boek-mYeSYSNvDbQ,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Gloves (Blue)", + "GiftDropId": 1736, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1736", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1736, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,d3KmqVuMQkCYK6sVTMOTOA,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Bracers (Purple)", + "GiftDropId": 1743, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1743", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1743, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,j367nSYyg06rOMZ1GmfmFA,FS7kgc4DpkKuar24J9dW8g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Plaid)", + "GiftDropId": 1767, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1767", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1767, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,2qYs9IkE90eppx1DggNlsA,6Y43EyTpiEejGp0ODWTSjA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Moons & Stars)", + "GiftDropId": 1768, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1768", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1768, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,JV60jZGerUWuzQ2rRnwquQ,gSb8iLTEZ0mi3g5-jZXifQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Polka Dot)", + "GiftDropId": 1769, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1769", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1769, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "19ef59c7-f74b-4c63-935a-1d4b1abd8518", + "EquipmentPrefabName": "[DiscGolfDisc]", + "FriendlyName": "Disc Skin (Coop)", + "GiftDropId": 1950, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "DiscGolfDisc Coop Debug: 1950", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1950, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "2b70a76e-6f48-402e-90ff-40b06aa23eb8", + "EquipmentPrefabName": "[DiscGolfDisc]", + "FriendlyName": "Disc Skin (Coach Select)", + "GiftDropId": 1951, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "DiscGolfDisc CoachSelect Debug: 1951", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1951, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "9d2a3618-12b3-4ca0-be59-ed15d7926d77", + "EquipmentPrefabName": "[DiscGolfDisc]", + "FriendlyName": "Disc Skin (Laser)", + "GiftDropId": 1952, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "DiscGolfDisc Laser Debug: 1952", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1952, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "7877964e-3a2b-4818-8513-0e26a707bd7c", + "EquipmentPrefabName": "[DiscGolfDisc]", + "FriendlyName": "Disc Skin (Clear)", + "GiftDropId": 1953, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "DiscGolfDisc Clear Debug: 1953", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1953, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "bd3f6aa5-c6e0-4e06-901d-1176accf1003", + "EquipmentPrefabName": "[DiscGolfDisc]", + "FriendlyName": "Disc Skin (Wood)", + "GiftDropId": 1954, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "DiscGolfDisc Wood Debug: 1954", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1954, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "33c84c50-7c2e-4a80-ad06-79c4f20f829e", + "EquipmentPrefabName": "[PaintballGun]", + "FriendlyName": "Paintball Pistol Skin (Wood)", + "GiftDropId": 1957, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGun Wood Debug: 1957", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1957, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "7ef5d1d9-24db-428c-85e0-107c1bfcc026", + "EquipmentPrefabName": "[PaintballGun]", + "FriendlyName": "Paintball Pistol Skin (Orange)", + "GiftDropId": 1958, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGun Orange Debug: 1958", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1958, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "4aff20ee-0b20-434b-a030-d3e1764fe4e7", + "EquipmentPrefabName": "[PaintballGun]", + "FriendlyName": "Paintball Pistol Skin (Purple)", + "GiftDropId": 1959, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGun Purple Debug: 1959", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1959, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "36751c4a-86a9-40e1-bef2-84f962ab678d", + "EquipmentPrefabName": "[PaintballGun]", + "FriendlyName": "Paintball Pistol Skin (Vitton)", + "GiftDropId": 1960, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGun Vitton Debug: 1960", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1960, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "ec5ef0f3-c072-45ec-bb8f-3781fb16e067", + "EquipmentPrefabName": "[PaintballGun]", + "FriendlyName": "Paintball Pistol Skin (Plaid)", + "GiftDropId": 1961, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGun Plaid Debug: 1961", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1961, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "b8d5612b-2c6f-46d6-9412-decddac7d4c1", + "EquipmentPrefabName": "[PaintballGun]", + "FriendlyName": "Paintball Pistol Skin (Pirate)", + "GiftDropId": 1962, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGun Pirate Debug: 1962", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1962, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "Dg9PFcg-JUia72PnYJqkQg", + "EquipmentPrefabName": "[PaintballGun]", + "FriendlyName": "Paintball Pistol Skin (Caution)", + "GiftDropId": 1963, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGun Caution Debug: 1963", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1963, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "z0Xw8_BUZUODrGHSZcLHHQ", + "EquipmentPrefabName": "[PaintballGun]", + "FriendlyName": "Paintball Pistol Skin (Roses)", + "GiftDropId": 1964, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGun Valentines Debug: 1964", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1964, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "61e49c13-b414-425f-8e8b-bdcf3d12a5bf", + "EquipmentPrefabName": "[PaintballShotgun]", + "FriendlyName": "Paintball Shotgun Skin (Wood)", + "GiftDropId": 1965, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballShotgun Wood Debug: 1965", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1965, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "f27af5d7-c741-4457-8c98-8e8791f1a41c", + "EquipmentPrefabName": "[PaintballShotgun]", + "FriendlyName": "Paintball Shotgun Skin (Plaid)", + "GiftDropId": 1966, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballShotgun Plaid Debug: 1966", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1966, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "ZMAx_-B_7kWy6-TLXx8g6Q", + "EquipmentPrefabName": "[PaintballShotgun]", + "FriendlyName": "Paintball Shotgun Skin (Watermelon)", + "GiftDropId": 1968, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballShotgun Watermeon Debug: 1968", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1968, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "CwIBKjm3G0-xUGt_9Gf7UQ", + "EquipmentPrefabName": "[PaintballShotgun]", + "FriendlyName": "Paintball Shotgun Skin (Caution)", + "GiftDropId": 1969, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballShotgun Caution Debug: 1969", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1969, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "5dcf8a2e-6fa6-4007-ac1e-73dd53c4c247", + "EquipmentPrefabName": "[Basketball]", + "FriendlyName": "Basketball Skin (Purple)", + "GiftDropId": 1970, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "Basketball Purple Debug: 1970", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 50, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1970, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 50, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "e6899422-ab2f-4bd9-8e98-aef950ec27b6", + "EquipmentPrefabName": "[Basketball]", + "FriendlyName": "Basketball Skin (Blue)", + "GiftDropId": 1971, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "Basketball Blue Debug: 1971", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 50, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1971, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 50, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "d6d22997-fe39-4ffa-b1b3-4955368c829a", + "EquipmentPrefabName": "[Basketball]", + "FriendlyName": "Basketball Skin (Vitton)", + "GiftDropId": 1972, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Basketball Vitton Debug: 1972", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1972, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "56582acf-c7a0-4aff-b3aa-2fdea4d254a3", + "EquipmentPrefabName": "[Basketball]", + "FriendlyName": "Basketball Skin (Pride)", + "GiftDropId": 1973, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "Basketball Rainbow Debug: 1973", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1973, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "56c9a6db-0f54-482c-aba9-e265f899771d", + "EquipmentPrefabName": "[Basketball]", + "FriendlyName": "Basketball Skin (Coach Select)", + "GiftDropId": 1974, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "Basketball CoachSelect Debug: 1974", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1974, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "WOWwmg7jg0mH2g4LJUp6fA", + "EquipmentPrefabName": "[Basketball]", + "FriendlyName": "Basketball Skin (Cozy)", + "GiftDropId": 1975, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "Basketball Cozy Debug: 1975", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1975, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "174adb53-bc6e-4fcf-b03d-a00fc3deeb49", + "EquipmentPrefabName": "[PaintballShield]", + "FriendlyName": "Paintball Shield Skin (Wood)", + "GiftDropId": 1977, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "PaintballShield Wood Debug: 1977", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1977, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "fd367329-b8b2-4d44-825a-da16092751e3", + "EquipmentPrefabName": "[PaintballShield]", + "FriendlyName": "Paintball Shield Skin (Purple)", + "GiftDropId": 1978, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "PaintballShield Purple Debug: 1978", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1978, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "a6c869d9-8f30-4ce6-a7ea-cb7ea9f9d492", + "EquipmentPrefabName": "[PaintballShield]", + "FriendlyName": "Paintball Shield Skin (Pirate)", + "GiftDropId": 1979, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballShield Pirate Debug: 1979", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1979, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "jZ7wlwRxgUuWYuLasbnG8w", + "EquipmentPrefabName": "[PaintballShield]", + "FriendlyName": "Paintball Shield Skin (Cyber Sunset)", + "GiftDropId": 1980, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballShield 80s Sunset Debug: 1980", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1980, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "QTyRLpDB3UuReHQqrKxb5A", + "EquipmentPrefabName": "[PaintballShield]", + "FriendlyName": "Paintball Shield Skin (Gingerbread)", + "GiftDropId": 1981, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballShield Gingerbread Debug: 1981", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1981, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "gfGhbEMx_kCRdO-6vPOh3g", + "EquipmentPrefabName": "[PaintballShield]", + "FriendlyName": "Paintball Shield Skin (Plaid)", + "GiftDropId": 1982, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballShield Plaid Debug: 1982", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1982, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "ClJApV0LC0mxh0UiYhaXGQ", + "EquipmentPrefabName": "[PaintballShield]", + "FriendlyName": "Paintball Shield Skin (Caution)", + "GiftDropId": 1983, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballShield Caution Debug: 1983", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1983, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "2389fce4-3ab2-4e05-918c-845eb8538bed", + "EquipmentPrefabName": "[QuestShield]", + "FriendlyName": "Quest Shield Skin (Goblin)", + "GiftDropId": 1985, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestShield Goblin Debug: 1985", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1985, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "93f5418e-a03d-4074-804c-daa0e374dd9f", + "EquipmentPrefabName": "[QuestShield]", + "FriendlyName": "Quest Shield Skin (Purple)", + "GiftDropId": 1986, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestShield Purple Debug: 1986", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1986, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "735b06c6-1b78-4f60-9291-a414a96cd228", + "EquipmentPrefabName": "[QuestShield]", + "FriendlyName": "Quest Shield Skin (Wood)", + "GiftDropId": 1987, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestShield wood Debug: 1987", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1987, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "affbab2d-3200-4512-a140-685fdc5570c6", + "EquipmentPrefabName": "[QuestShield]", + "FriendlyName": "Quest Shield Skin (Yellow)", + "GiftDropId": 1988, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestShield Yellow Debug: 1988", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1988, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "a363ba1b-2f70-4c5f-943a-f45cfa59122b", + "EquipmentPrefabName": "[QuestShield]", + "FriendlyName": "Quest Shield Skin (Stone)", + "GiftDropId": 1989, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestShield Rock Debug: 1989", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1989, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "eb90210a-6d2d-4429-b1e0-3285333685fc", + "EquipmentPrefabName": "[QuestShield]", + "FriendlyName": "Quest Shield Skin (Hearts)", + "GiftDropId": 1990, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestShield Valentine Debug: 1990", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1990, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "439be0eb-4d1e-4c80-97f8-b4636d0ce94b", + "EquipmentPrefabName": "[QuestShield]", + "FriendlyName": "Quest Shield Skin (Pride)", + "GiftDropId": 1991, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestShield Pride Debug: 1991", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1991, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "k0BVix46IEmgVrqUmFU3-Q", + "EquipmentPrefabName": "[QuestShield]", + "FriendlyName": "Quest Shield Skin (Plaid)", + "GiftDropId": 1992, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestShield Plaid Debug: 1992", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1992, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "RQCgWA3Pf0KTqznUR58-lw", + "EquipmentPrefabName": "[QuestShield]", + "FriendlyName": "Quest Shield Skin (Caution)", + "GiftDropId": 1993, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestShield Caution Debug: 1993", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1993, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "-rbKD_ztMUq69Nv4tLrrVA", + "EquipmentPrefabName": "[QuestShield]", + "FriendlyName": "Quest Shield Skin (Snowflake)", + "GiftDropId": 1994, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestShield Snowflake Debug: 1994", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1994, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "L9usPszLFkiA6xs32es2Lw", + "EquipmentPrefabName": "[QuestShield]", + "FriendlyName": "Quest Shield Skin (Neon)", + "GiftDropId": 1995, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestShield Neon RR+ Debug: 1995", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1995, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "33a7a3dc-5266-4075-b56f-5eaa2c400e9f", + "EquipmentPrefabName": "[Quest_SciFi_Pistol]", + "FriendlyName": "Laser Pistol Skin (Caution)", + "GiftDropId": 1996, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi Pistol Caution Debug: 1996", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1996, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "db91b61b-ab32-4895-8f5a-0212c1283cbb", + "EquipmentPrefabName": "[Quest_SciFi_Pistol]", + "FriendlyName": "Laser Pistol Skin (Vitton)", + "GiftDropId": 1997, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi Pistol Vitton Debug: 1997", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1997, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "89b1fbbc-e7be-440b-8b22-8fd379c1a568", + "EquipmentPrefabName": "[Quest_SciFi_Pistol]", + "FriendlyName": "Laser Pistol Skin (Pink)", + "GiftDropId": 1998, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi Pistol PINK Debug: 1998", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1998, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "8a2a3219-fed0-4403-9061-451d162307c2", + "EquipmentPrefabName": "[Quest_SciFi_Pistol]", + "FriendlyName": "Laser Pistol Skin (Candy Cane)", + "GiftDropId": 1999, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi Pistol CandyCane Debug: 1999", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1999, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "5nQ2kF6h6kunbk5z18Lozg", + "EquipmentPrefabName": "[Quest_SciFi_Pistol]", + "FriendlyName": "Laser Pistol Skin (Frankenstein)", + "GiftDropId": 2000, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi Pistol Frakenblaster Debug: 2000", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2000, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "0cFcVYCLTU6CKhr9uADrbw", + "EquipmentPrefabName": "[Quest_SciFi_Pistol]", + "FriendlyName": "Laser Pistol Skin (Recasso)", + "GiftDropId": 2001, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi Pistol Recasso Debug: 2001", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2001, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "aByJShU520OzdOXBV8o0Dg", + "EquipmentPrefabName": "[Quest_SciFi_Pistol]", + "FriendlyName": "Laser Pistol Skin (Purple Plaid)", + "GiftDropId": 2002, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi Pistol Plaid Debug: 2002", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2002, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "546b3a57-13d4-4c35-ab3a-bbb7d466f0b8", + "EquipmentPrefabName": "[Quest_SciFi_AutomaticGun]", + "FriendlyName": "Laser Burst Rifle Skin (Caution)", + "GiftDropId": 2004, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi AutomaticGun Caution Debug: 2004", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2004, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "bafacc36-02c6-408c-a3f5-8c2aa07a68db", + "EquipmentPrefabName": "[Quest_SciFi_AutomaticGun]", + "FriendlyName": "Laser Burst Rifle Skin (Bark)", + "GiftDropId": 2005, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi AutomaticGun Arbor Debug: 2005", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2005, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "u60IW1Gt10eC-8SlZmQUNQ", + "EquipmentPrefabName": "[Quest_SciFi_AutomaticGun]", + "FriendlyName": "Laser Burst Rifle Skin (Recasso)", + "GiftDropId": 2006, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi AutomaticGun Recasso Debug: 2006", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2006, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "dEmh0tniCkeYBY1EdD09jA", + "EquipmentPrefabName": "[Quest_SciFi_AutomaticGun]", + "FriendlyName": "Laser Burst Rifle Skin (Zombie)", + "GiftDropId": 2007, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi AutomaticGun Zombie Debug: 2007", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2007, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "jzgz_HrPAUqOeqx3uNXVUA", + "EquipmentPrefabName": "[Quest_SciFi_AutomaticGun]", + "FriendlyName": "Laser Burst Rifle Skin (Purple Plaid)", + "GiftDropId": 2008, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi AutomaticGun Plaid Debug: 2008", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2008, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "55a9c1e8-07e2-4457-86f2-75fd5e67b1f3", + "EquipmentPrefabName": "[Quest_SciFi_Shotgun]", + "FriendlyName": "Laser Shotgun Skin (Caution)", + "GiftDropId": 2009, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi Shotgun Caution Debug: 2009", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2009, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "83d7cca0-2c5d-41b2-a5b2-f79fd89f3037", + "EquipmentPrefabName": "[Quest_SciFi_Shotgun]", + "FriendlyName": "Laser Shotgun Skin (Pink)", + "GiftDropId": 2010, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi Shotgun PINK Debug: 2010", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2010, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "bb36b722-16dc-4172-b61f-237dc1240040", + "EquipmentPrefabName": "[Quest_SciFi_Shotgun]", + "FriendlyName": "Laser Shotgun Skin (Jack-o'-lantern)", + "GiftDropId": 2011, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi Shotgun Jackolantern Debug: 2011", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2011, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "cd497ae2-6382-42f2-9f92-93d5141588c3", + "EquipmentPrefabName": "[Quest_SciFi_Shotgun]", + "FriendlyName": "Laser Shotgun Skin (Hearts)", + "GiftDropId": 2012, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi Shotgun Valentine Debug: 2012", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2012, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "pIRihZheSEW2Ld3VTLkB-g", + "EquipmentPrefabName": "[Quest_SciFi_Shotgun]", + "FriendlyName": "Laser Shotgun Skin (Purple Plaid)", + "GiftDropId": 2013, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi Shotgun Plaid Debug: 2013", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2013, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "gjuFgDp-LUWPi1mPCKyqbA", + "EquipmentPrefabName": "[Quest_SciFi_Shotgun]", + "FriendlyName": "Laser Shotgun Skin (Shamrock)", + "GiftDropId": 2014, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi Shotgun Shamrock Debug: 2014", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2014, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "63a867d7-ccea-4905-b6e0-e6dcfba06f9e", + "EquipmentPrefabName": "[Quest_SciFi_RailGun]", + "FriendlyName": "Laser Railgun Skin (Caution)", + "GiftDropId": 2015, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi RailGun Caution Debug: 2015", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2015, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "46977ca7-ee75-4e2a-b8aa-0763879f8a96", + "EquipmentPrefabName": "[Quest_SciFi_RailGun]", + "FriendlyName": "Laser Railgun Skin (Pink)", + "GiftDropId": 2016, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi RailGun PINK Debug: 2016", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2016, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "X9gTAbp0Sk6nadpTBseRrg", + "EquipmentPrefabName": "[Quest_SciFi_RailGun]", + "FriendlyName": "Laser Railgun Skin (Lifeguard)", + "GiftDropId": 2017, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi RailGun LifeGuard Debug: 2017", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2017, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "_flhynGnykyZL7F83B7rJQ", + "EquipmentPrefabName": "[Quest_SciFi_RailGun]", + "FriendlyName": "Laser Railgun Skin (Purple Plaid)", + "GiftDropId": 2018, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi RailGun Plaid Debug: 2018", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2018, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "c4d70545-cdf1-4fb1-924b-613de0327faf", + "EquipmentPrefabName": "[Crossbow]", + "FriendlyName": "Crossbow Skin (Vitton)", + "GiftDropId": 2019, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow Vitton Debug: 2019", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2019, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "6bba14be-f207-4933-b09f-f0fd3e28c10c", + "EquipmentPrefabName": "[Crossbow]", + "FriendlyName": "Crossbow Skin (Candy Cane)", + "GiftDropId": 2020, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow CandyCane Debug: 2020", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2020, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "1d09c8e4-78c2-49f9-acb7-8f0b3ff6a5ed", + "EquipmentPrefabName": "[Crossbow]", + "FriendlyName": "Crossbow Skin (Recasso)", + "GiftDropId": 2021, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow Recasso Debug: 2021", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2021, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "MsFoMeUZ8Eq2qX9SrOtRPA", + "EquipmentPrefabName": "[Crossbow]", + "FriendlyName": "Crossbow Skin (Waves)", + "GiftDropId": 2022, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow Waves Debug: 2022", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2022, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "T6PzFfg41UaQ7EAqts6gsw", + "EquipmentPrefabName": "[Crossbow]", + "FriendlyName": "Crossbow Skin (Crossbone)", + "GiftDropId": 2023, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow Bone Debug: 2023", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2023, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "jHaoDSAtikyAI82lO53o9g", + "EquipmentPrefabName": "[Crossbow]", + "FriendlyName": "Crossbow Skin (Dryad Summer)", + "GiftDropId": 2024, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow Dryad Debug: 2024", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2024, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "ESQ0qOlgrkCc8MbUXGnF8A", + "EquipmentPrefabName": "[Crossbow]", + "FriendlyName": "Crossbow Skin (Green Plaid)", + "GiftDropId": 2025, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow Plaid Debug: 2025", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2025, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "QEwDZYj_OEi5l86LBnuYGw", + "EquipmentPrefabName": "[Crossbow]", + "FriendlyName": "Crossbow Skin (Stone)", + "GiftDropId": 2026, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow Rock Debug: 2026", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2026, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "VHFKZVhiRkylcxnxzCKUuw", + "EquipmentPrefabName": "[Crossbow]", + "FriendlyName": "Crossbow Skin (Caution)", + "GiftDropId": 2027, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow Caution Debug: 2027", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2027, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "Ys9UQ5b7fEyKxnaek-ihfQ", + "EquipmentPrefabName": "[Crossbow]", + "FriendlyName": "Crossbow Skin (Dryad Fall)", + "GiftDropId": 2028, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow Dryad Fall Debug: 2028", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2028, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "CZAIad-ME0O0iIy77MRxBw", + "EquipmentPrefabName": "[Crossbow]", + "FriendlyName": "Crossbow Skin (Dryad Winter)", + "GiftDropId": 2029, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow Winter Debug: 2029", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2029, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "ych0ntYcK0eiq67bCLlbew", + "EquipmentPrefabName": "[Crossbow]", + "FriendlyName": "Crossbow Skin (Dryad Spring)", + "GiftDropId": 2030, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow Spring Debug: 2030", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2030, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "f5901f11-b315-4261-9474-2da207e4a229", + "EquipmentPrefabName": "[Longbow]", + "FriendlyName": "Bow Skin (Fashion)", + "GiftDropId": 2031, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Longbow Vitton Debug: 2031", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2031, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "52c6a138-10c5-4aab-9c3b-04b50c9a2dc5", + "EquipmentPrefabName": "[Longbow]", + "FriendlyName": "Bow Skin (Ghost)", + "GiftDropId": 2032, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Longbow Ghost Debug: 2032", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2032, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "e738d936-0f75-423b-88bb-f626ffba573a", + "EquipmentPrefabName": "[Longbow]", + "FriendlyName": "Bow Skin (Stone)", + "GiftDropId": 2033, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Longbow Rock Debug: 2033", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2033, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "XpxqrY6RYkafs-sd3Z0ZLw", + "EquipmentPrefabName": "[Longbow]", + "FriendlyName": "Bow Skin (Pride)", + "GiftDropId": 2034, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Longbow Rainbow Debug: 2034", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2034, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "JBp7CxPhrUC5hnn2EISUFA", + "EquipmentPrefabName": "[Longbow]", + "FriendlyName": "Bow Skin (Dryad Summer)", + "GiftDropId": 2035, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Longbow Dryad Debug: 2035", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2035, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "T8666vuehkObksBdVbla9g", + "EquipmentPrefabName": "[Longbow]", + "FriendlyName": "Bow Skin (Green Plaid)", + "GiftDropId": 2036, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Longbow Plaid Debug: 2036", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2036, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "YajcGvBcTEaf_MjCbxOciw", + "EquipmentPrefabName": "[Longbow]", + "FriendlyName": "Bow Skin (Caution)", + "GiftDropId": 2037, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Longbow Caution Debug: 2037", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2037, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "XKFuhM3zikyxTYtTzuPb_A", + "EquipmentPrefabName": "[Longbow]", + "FriendlyName": "Bow Skin (Dryad Fall)", + "GiftDropId": 2038, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Longbow Dryad Fall Debug: 2038", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2038, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "uPwTBnfWwkWXuyAaAMqeQA", + "EquipmentPrefabName": "[Longbow]", + "FriendlyName": "Bow Skin (Dryad Winter)", + "GiftDropId": 2039, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Longbow Winter Debug: 2039", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2039, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "gl_tlo_t7U-H308Omy13lw", + "EquipmentPrefabName": "[Longbow]", + "FriendlyName": "Bow Skin (Dryad Spring)", + "GiftDropId": 2040, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Longbow Spring Debug: 2040", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2040, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "VYF9NGZBgU6TOo9ayjgBEQ", + "EquipmentPrefabName": "[MakerPen]", + "FriendlyName": "Maker Pen Skin (Green)", + "GiftDropId": 2054, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "MakerPen Green Debug: 2054", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2054, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "WwtFcRluQkmnCI_qH75L_Q", + "EquipmentPrefabName": "[MakerPen]", + "FriendlyName": "Maker Pen Skin (Orange)", + "GiftDropId": 2055, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "MakerPen Orange Debug: 2055", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2055, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "iRtlLKI-X0S9oYUWLenAKQ", + "EquipmentPrefabName": "[MakerPen]", + "FriendlyName": "Maker Pen Skin (Purple)", + "GiftDropId": 2056, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "MakerPen Purple Debug: 2056", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2056, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "tvjYGeRdwEqnr9mf84WgcQ", + "EquipmentPrefabName": "[MakerPen]", + "FriendlyName": "Maker Pen Skin (Red)", + "GiftDropId": 2057, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "MakerPen Red Debug: 2057", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2057, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "Q7Tr_0DXAkOdr61UXiocow", + "EquipmentPrefabName": "[MakerPen]", + "FriendlyName": "Maker Pen Skin (Yellow)", + "GiftDropId": 2058, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "MakerPen Yellow Debug: 2058", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2058, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "c1VRbmDGHUS7KiSgwj5prQ", + "EquipmentPrefabName": "[MakerPen]", + "FriendlyName": "Maker Pen Skin (Pink)", + "GiftDropId": 2059, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "MakerPen Pink Debug: 2059", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2059, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "6a6b0ecf-286d-4361-92ff-7027c440dc3c", + "EquipmentPrefabName": "[PaintballRifleScoped]", + "FriendlyName": "Paintball Sniper Skin (Plaid)", + "GiftDropId": 2063, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballRifleScoped Plaid Debug: 2063", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2063, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "d906709c-e08e-4273-8ba1-e072e0d25957", + "EquipmentPrefabName": "[PaintballRifleScoped]", + "FriendlyName": "Paintball Sniper Skin (Candy Cane)", + "GiftDropId": 2064, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintBallRifleScoped CandyCane Debug: 2064", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2064, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "3rBevbIk1EusFnFaXAh3qA", + "EquipmentPrefabName": "[PaintballRifleScoped]", + "FriendlyName": "Paintball Sniper Skin (Gingerbread)", + "GiftDropId": 2065, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballRifleScoped Gingerbread Debug: 2065", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2065, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "0dM2SfqGR0SmtO5ufTWfUQ", + "EquipmentPrefabName": "[PaintballRifleScoped]", + "FriendlyName": "Paintball Sniper Skin (Comic)", + "GiftDropId": 2067, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballRifleScoped Comic Debug: 2067", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2067, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "btB2z7ybskSYrn9Nzhfhxg", + "EquipmentPrefabName": "[PaintballRifleScoped]", + "FriendlyName": "Paintball Sniper Skin (Wood)", + "GiftDropId": 2068, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballRifleScoped Wood Debug: 2068", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2068, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "b_iiMMYayU-an7hOlCzPIA", + "EquipmentPrefabName": "[PaintballRifleScoped]", + "FriendlyName": "Paintball Sniper Skin (Caution)", + "GiftDropId": 2069, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballRifleScoped Caution Debug: 2069", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2069, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "d217ee4c-22f3-4f33-bf7c-9d4ee9c30e29", + "EquipmentPrefabName": "[Crossbow_Hunter]", + "FriendlyName": "Hunter's Crossbow Skin (Stone)", + "GiftDropId": 2070, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow Hunter Rock Debug: 2070", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2070, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "cFMh54GoHEeHZEERSRR8kQ", + "EquipmentPrefabName": "[Crossbow_Hunter]", + "FriendlyName": "Hunter's Crossbow Skin (Green Plaid)", + "GiftDropId": 2071, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow Hunter Plaid Debug: 2071", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2071, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "RRCvths6eUmAAr9hzGFT0g", + "EquipmentPrefabName": "[Crossbow_Hunter]", + "FriendlyName": "Hunter's Crossbow Skin (Caution)", + "GiftDropId": 2072, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow Hunter Caution Debug: 2072", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2072, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "-X_Hm6dIekqoHTY2VMMLeA", + "EquipmentPrefabName": "[Crossbow_Hunter]", + "FriendlyName": "Hunter's Crossbow Skin (Shark)", + "GiftDropId": 2073, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow SharkHunter Debug: 2073", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2073, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "0ee04d78-5a17-4a38-ae67-b576a41fc200", + "EquipmentPrefabName": "[QuestSword]", + "FriendlyName": "Sword Skin (Extra)", + "GiftDropId": 2074, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestSword Extra Debug: 2074", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2074, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "431567d2-4df2-43eb-b632-3d79aa7c013c", + "EquipmentPrefabName": "[QuestSword]", + "FriendlyName": "Sword Skin (Excalibur)", + "GiftDropId": 2075, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestSword Gold Debug: 2075", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2075, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "uLNdhrrAC0ybxC2XkBnnVQ", + "EquipmentPrefabName": "[QuestSword]", + "FriendlyName": "Sword Skin (Gold)", + "GiftDropId": 20756767, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 20756767, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "f03dee6a-79b8-4906-9abb-a821748d97a9", + "EquipmentPrefabName": "[QuestSword]", + "FriendlyName": "Sword Skin (Topaz)", + "GiftDropId": 2076, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestSword Red Debug: 2076", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2076, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "3e46fb2d-bb3f-42ed-83ef-f5716860725c", + "EquipmentPrefabName": "[QuestSword]", + "FriendlyName": "Sword Skin (Stone)", + "GiftDropId": 2077, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestSword Rock Debug: 2077", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2077, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "eecdf81c-7ba2-40ba-9d6c-f461708cce16", + "EquipmentPrefabName": "[QuestSword]", + "FriendlyName": "Sword Skin (Comic) ", + "GiftDropId": 2078, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestSword Comic Debug: 2078", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2078, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "SbEIObEmhkKQniANHqNekg", + "EquipmentPrefabName": "[QuestSword]", + "FriendlyName": "Sword Skin (Jack-o'-Lantern)", + "GiftDropId": 2079, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestSword Pumpkin Debug: 2079", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2079, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "Kitcy2AVB0-OdljiEAI2Pw", + "EquipmentPrefabName": "[QuestSword]", + "FriendlyName": "Sword Skin (Recasso)", + "GiftDropId": 2080, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestSword Recasso Debug: 2080", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2080, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "K9TzHZPDwU-ewzLYkr_1cg", + "EquipmentPrefabName": "[QuestSword]", + "FriendlyName": "Sword Skin (Gingerbread) ", + "GiftDropId": 2081, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestSword Gingerbread Debug: 2081", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2081, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "wioj1rR1lkCx7f-oiCHcOw", + "EquipmentPrefabName": "[QuestSword]", + "FriendlyName": "Sword Skin (Corn)", + "GiftDropId": 2082, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestSword CornCob Debug: 2082", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2082, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "m1JMjJYpSUiXj5897orm2Q", + "EquipmentPrefabName": "[QuestSword]", + "FriendlyName": "Sword Skin (Green Plaid)", + "GiftDropId": 2083, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestSword Plaid Debug: 2083", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2083, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "d97pbQMk9UWpEN0yoOE9Rg", + "EquipmentPrefabName": "[QuestSword]", + "FriendlyName": "Sword Skin (Caution)", + "GiftDropId": 2084, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestSword Caution Debug: 2084", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2084, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "DRXoMS9phEG2fkasja7sEw", + "EquipmentPrefabName": "[QuestSword]", + "FriendlyName": "Sword Skin (Lava)", + "GiftDropId": 2085, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestSword Lava Debug: 2085", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2085, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "993f8b81-cb2e-44e4-88a1-b841af1f0e69", + "EquipmentPrefabName": "[Grenade]", + "FriendlyName": "Paint Grenade (Pirate)", + "GiftDropId": 2086, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Grenade Pirate Debug: 2086", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2086, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "e8e42ef6-9ab6-44f4-84d5-117154a4d13e", + "EquipmentPrefabName": "[Quest_Goblin_Wand]", + "FriendlyName": "Wand Skin (Ghost)", + "GiftDropId": 2087, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest Goblin Wand Ghost Debug: 2087", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2087, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "yG6xFxkoS0iIDt7wEj5Hqw", + "EquipmentPrefabName": "[Quest_Goblin_Wand]", + "FriendlyName": "Wand Skin (Witch)", + "GiftDropId": 2088, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest Goblin Wand Witch Star Debug: 2088", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2088, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "3pE7zA-DjkqP1Ch7__-31w", + "EquipmentPrefabName": "[Quest_Goblin_Wand]", + "FriendlyName": "Wand Skin (Jack Frost)", + "GiftDropId": 2089, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest Goblin Wand Ice Debug: 2089", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2089, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "m_otHTEKF0KQljsOc-JENg", + "EquipmentPrefabName": "[Quest_Goblin_Wand]", + "FriendlyName": "Wand Skin (Stone)", + "GiftDropId": 2090, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest Goblin Wand Wood Debug: 2090", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2090, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "CyrdBvIbXUq_TsXFliWk1A", + "EquipmentPrefabName": "[Quest_Goblin_Wand]", + "FriendlyName": "Wand Skin (Green Plaid)", + "GiftDropId": 2091, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest Goblin Wand Plaid Debug: 2091", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2091, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "vfzrRHn24E67BK8Bgy60xA", + "EquipmentPrefabName": "[Quest_Goblin_Wand]", + "FriendlyName": "Wand Skin (Caution)", + "GiftDropId": 2092, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest Goblin Wand Caution Debug: 2092", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2092, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "QnLM4Qw-L0ml_mgReFweIw", + "EquipmentPrefabName": "[Quest_Goblin_Wand]", + "FriendlyName": "Wand Skin (Trident)", + "GiftDropId": 2093, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest Goblin Wand Trident Debug: 2093", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2093, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "502f40c3-1c00-4c3f-bfc7-c897df8af37e", + "EquipmentPrefabName": "[PaintballGrenadeLauncher]", + "FriendlyName": "Paintball Grenade Launcher (Plaid)", + "GiftDropId": 2094, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGrenadeLauncher Plaid Debug: 2094", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2094, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "f34e6270-bcfa-42f2-80d5-69c1bbd34983", + "EquipmentPrefabName": "[PaintballGrenadeLauncher]", + "FriendlyName": "Paintball Grenade Launcher (Comic)", + "GiftDropId": 2095, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGrenadeLauncher Comic Debug: 2095", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2095, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "8ZAwSDtXlkqlnBLOpfVTVg", + "EquipmentPrefabName": "[PaintballGrenadeLauncher]", + "FriendlyName": "Paintball Grenade Launcher (Gingerbread)", + "GiftDropId": 2096, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGrenadeLauncher Gingerbread Debug: 2096", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2096, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "3UmIhvqmkU-aWxFDFd4QDg", + "EquipmentPrefabName": "[PaintballGrenadeLauncher]", + "FriendlyName": "Paintball Grenade Launcher (Honey)", + "GiftDropId": 2097, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGrenadeLauncher Honey Debug: 2097", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2097, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "pPpYY9j0Dku2gtbKoUOCCg", + "EquipmentPrefabName": "[PaintballGrenadeLauncher]", + "FriendlyName": "Paintball Grenade Launcher (Eggcellent)", + "GiftDropId": 2098, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGrenadeLauncher EasterEgg Debug: 2098", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2098, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "9gBl778RvUeSC8837Gurog", + "EquipmentPrefabName": "[PaintballGrenadeLauncher]", + "FriendlyName": "Paintball Grenade Launcher (Wood)", + "GiftDropId": 2099, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGrenadeLauncher Wood Debug: 2099", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2099, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "tcMMGKcmhkuM82ISCZ-3AQ", + "EquipmentPrefabName": "[PaintballGrenadeLauncher]", + "FriendlyName": "Paintball Grenade Launcher (Caution)", + "GiftDropId": 2100, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGrenadeLauncher Caution Debug: 2100", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2100, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "6261a846-e4f8-4e6e-8aa0-68f38cd788d4", + "EquipmentPrefabName": "[DodgeballBall]", + "FriendlyName": "Dodgeball Skin (Comic)", + "GiftDropId": 2101, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "DodgeballBall Comic Debug: 2101", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2101, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "6ff63f8f-4bcc-4b69-8d89-8b886d19e239", + "EquipmentPrefabName": "[DodgeballBall]", + "FriendlyName": "Dodgeball Skin (Recasso)", + "GiftDropId": 2102, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "DodgeballBall Recasso Debug: 2102", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2102, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "f55dda45-c17e-4237-a638-9f326d306e7d", + "EquipmentPrefabName": "[DodgeballBall]", + "FriendlyName": "Dodgeball Skin (Goblin)", + "GiftDropId": 2103, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "DodgeballBall Goblin Debug: 2103", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2103, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "lIpyvEMWqUyv41gTp3YZ1A", + "EquipmentPrefabName": "[DodgeballBall]", + "FriendlyName": "Dodgeball Skin (Jack-o'-Lantern)", + "GiftDropId": 2105, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "DodgeballBall Pumpkin Debug: 2105", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2105, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "fae1abe3-6bfd-4407-b34e-e2c1b3b03032", + "EquipmentPrefabName": "[SoccerShield]", + "FriendlyName": "Soccer Shield Skin (Gingerbread)", + "GiftDropId": 2106, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "SoccerShield Gingerbread Debug: 2106", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2106, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "523e3615-4633-41a3-9b2d-17d3207a684b", + "EquipmentPrefabName": "[RecRoyale_Backpack]", + "FriendlyName": "Backpack Skin (Camo)", + "GiftDropId": 2107, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "RecRoyale Backpack Camo Debug: 2107", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2107, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "6c3b26cd-b38e-492b-a124-759cbcec1396", + "EquipmentPrefabName": "[RecRoyale_Backpack]", + "FriendlyName": "Backpack Skin (Camping)", + "GiftDropId": 2108, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "RecRoyale Backpack Camping Pattern Debug: 2108", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2108, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "12b54ad2-3847-41db-9ed4-88e8dad63024", + "EquipmentPrefabName": "[RecRoyale_Backpack]", + "FriendlyName": "Backpack Skin (Tiger)", + "GiftDropId": 2109, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "RecRoyale Backpack Tiger Debug: 2109", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2109, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "5c848a04-f528-423b-8be1-4b5cd43a75c2", + "EquipmentPrefabName": "[RecRoyale_Backpack]", + "FriendlyName": "Backpack Skin (Denim)", + "GiftDropId": 2110, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "RecRoyale Backpack Denim Debug: 2110", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2110, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "e93f5ab7-e9bf-4652-8a7c-2ae120f25f87", + "EquipmentPrefabName": "[RecRoyale_Backpack]", + "FriendlyName": "Backpack Skin (Recasso)", + "GiftDropId": 2111, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "RecRoyale Backpack Recasso Debug: 2111", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2111, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "w2NNBTTCVEah2WlP0JHezQ", + "EquipmentPrefabName": "[RecRoyale_Backpack]", + "FriendlyName": "Backpack Skin (Hearts)", + "GiftDropId": 2112, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "RecRoyale Backpack Valentine Debug: 2112", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2112, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "70uy5UJhhEy1aynKM4MAsQ", + "EquipmentPrefabName": "[RecRoyale_Backpack]", + "FriendlyName": "Backpack Skin (Fall)", + "GiftDropId": 2113, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "RecRoyale Backpack FallLeaves Debug: 2113", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2113, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "d218ae45-8534-4f96-b2ed-1cf281bc3578", + "EquipmentPrefabName": "[ShareCamera]", + "FriendlyName": "Camera Skin (Gold)", + "GiftDropId": 2115, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "ShareCamera Wood Debug: 2115", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2115, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "e2844f84-ab44-4141-9a0a-bd5da7caa4f6", + "EquipmentPrefabName": "[ShareCamera]", + "FriendlyName": "Camera Skin (Yellow OSnap)", + "GiftDropId": 2116, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "ShareCamera Disposable Debug: 2116", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2116, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "1838fa61-de10-4e09-b24a-f5a1bc942600", + "EquipmentPrefabName": "[ShareCamera]", + "FriendlyName": "Camera Skin (Green OSnap)", + "GiftDropId": 2117, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "ShareCamera Green Debug: 2117", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2117, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "fSbzGxsjKE-cwtFFX6dJQw", + "EquipmentPrefabName": "[ShareCamera]", + "FriendlyName": "Camera Skin (Sci-fi)", + "GiftDropId": 2118, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "ShareCamera Carpet Debug: 2118", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2118, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "ATGtNjai20miFwBUOVIMuw", + "EquipmentPrefabName": "[ShareCamera]", + "FriendlyName": "Camera Skin (Two Tone)", + "GiftDropId": 2119, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "ShareCamera TwoTone Debug: 2119", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2119, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "znrJSCX_SkS-kIPqMERoDg", + "EquipmentPrefabName": "[ShareCamera]", + "FriendlyName": "Camera Skin (Camping)", + "GiftDropId": 2120, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "ShareCamera Camping Debug: 2120", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2120, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "g5u0weNLmkCLeUXFUVn74Q", + "EquipmentPrefabName": "[ShareCamera]", + "FriendlyName": "Camera Skin (Comic)", + "GiftDropId": 2121, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "ShareCamera Comic Debug: 2121", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2121, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "QQALCzCF-0ClDWqmmciHAQ", + "EquipmentPrefabName": "[ShareCamera]", + "FriendlyName": "Camera Skin (Hearts)", + "GiftDropId": 2122, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "ShareCamera Heart Debug: 2122", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2122, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "SkTa53OzM0u82YPuZAl9aw", + "EquipmentPrefabName": "[ShareCamera]", + "FriendlyName": "Camera Skin (Caution)", + "GiftDropId": 2123, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "ShareCamera Caution Debug: 2123", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2123, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "sE4_-ZVa2EC4MZfGGsExzQ", + "EquipmentPrefabName": "[ShareCamera]", + "FriendlyName": "Camera Skin (Plaid)", + "GiftDropId": 2124, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "ShareCamera Plaid Debug: 2124", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2124, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "KiVWBp5_J0qCLuizAJGcAg", + "EquipmentPrefabName": "[Sandbox_D4]", + "FriendlyName": "D4 (Pink)", + "GiftDropId": 2125, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D4 Pink Debug: 2125", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2125, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "x3Cv42hIkkaNIy7fHZiWYg", + "EquipmentPrefabName": "[Sandbox_D4]", + "FriendlyName": "D4 (Bone White)", + "GiftDropId": 2126, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D4 BoneWhite Debug: 2126", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2126, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "_2jxSTYSpEykZ_O91oDAzg", + "EquipmentPrefabName": "[Sandbox_D4]", + "FriendlyName": "D4 (Turquoise)", + "GiftDropId": 2127, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D4 Turquoise Debug: 2127", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2127, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "WxWaXY61mUuNe_f6SgECnA", + "EquipmentPrefabName": "[Sandbox_D4]", + "FriendlyName": "D4 (Pewter)", + "GiftDropId": 2128, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D4 Pewter Debug: 2128", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2128, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "TxIu8CUjykGDMr5RIJcNVQ", + "EquipmentPrefabName": "[Sandbox_D6]", + "FriendlyName": "D6 (Pink)", + "GiftDropId": 2129, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D6 Pink Debug: 2129", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2129, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "Fn0gcj17c06tA9s98CKwAg", + "EquipmentPrefabName": "[Sandbox_D6]", + "FriendlyName": "D6 (Bone White)", + "GiftDropId": 2130, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D6 BoneWhite Debug: 2130", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2130, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "HnVo08F-zk-YeikERFa1Yw", + "EquipmentPrefabName": "[Sandbox_D6]", + "FriendlyName": "D6 (Turquoise)", + "GiftDropId": 2131, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D6 Turquoise Debug: 2131", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2131, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "5U_KiCi_90-eWucQ68VdZQ", + "EquipmentPrefabName": "[Sandbox_D6]", + "FriendlyName": "D6 (Pewter)", + "GiftDropId": 2132, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D6 Pewter Debug: 2132", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2132, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "AQXXckjNZ0uzPMTcP1C3Kg", + "EquipmentPrefabName": "[Sandbox_D8]", + "FriendlyName": "D8 (Pink)", + "GiftDropId": 2133, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D8 Pink Debug: 2133", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2133, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "d_CbCG3DmUCtWGWYHioghg", + "EquipmentPrefabName": "[Sandbox_D8]", + "FriendlyName": "D8 (Bone White)", + "GiftDropId": 2134, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D8 BoneWhite Debug: 2134", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2134, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "f45tTZp4KUextmAsX8X9Hw", + "EquipmentPrefabName": "[Sandbox_D8]", + "FriendlyName": "D8 (Turquoise)", + "GiftDropId": 2135, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D8 Turquoise Debug: 2135", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2135, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "77cRA0O4GUqd6nr9QLefQA", + "EquipmentPrefabName": "[Sandbox_D8]", + "FriendlyName": "D8 (Pewter)", + "GiftDropId": 2136, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D8 Pewter Debug: 2136", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2136, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "ZM543HEyl0G6n7P5rDMEWw", + "EquipmentPrefabName": "[Sandbox_D10]", + "FriendlyName": "D10 (Pink)", + "GiftDropId": 2137, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D10 Pink Debug: 2137", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2137, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "GjQwBmNnK0ukv0hEEHK8tw", + "EquipmentPrefabName": "[Sandbox_D10]", + "FriendlyName": "D10 (Bone White)", + "GiftDropId": 2138, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D10 BoneWhite Debug: 2138", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2138, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "SnSOf-GZ2kastpF5KWxT-Q", + "EquipmentPrefabName": "[Sandbox_D10]", + "FriendlyName": "D10 (Turquoise)", + "GiftDropId": 2139, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D10 Turquoise Debug: 2139", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2139, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "I161QAym2kqPi5wXIHCt8A", + "EquipmentPrefabName": "[Sandbox_D10]", + "FriendlyName": "D10 (Pewter)", + "GiftDropId": 2140, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D10 Pewter Debug: 2140", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2140, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "EoV2ZoLR2UWY898p8j7qGQ", + "EquipmentPrefabName": "[Sandbox_D12]", + "FriendlyName": "D12 (Pink)", + "GiftDropId": 2141, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D12 Pink Debug: 2141", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2141, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "heFLfpPNd0-nhLOFpUCnpA", + "EquipmentPrefabName": "[Sandbox_D12]", + "FriendlyName": "D12 (Bone White)", + "GiftDropId": 2142, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D12 BoneWhite Debug: 2142", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2142, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "ub6apg3zEUiCp3k81JjQGw", + "EquipmentPrefabName": "[Sandbox_D12]", + "FriendlyName": "D12 (Turquoise)", + "GiftDropId": 2143, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D12 Turquoise Debug: 2143", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2143, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "2gYYjbVGqkiOefY2xjOxiQ", + "EquipmentPrefabName": "[Sandbox_D12]", + "FriendlyName": "D12 (Pewter)", + "GiftDropId": 2144, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D12 Pewter Debug: 2144", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2144, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "Des7txtX0EO-7NiooR0-ow", + "EquipmentPrefabName": "[Sandbox_D20]", + "FriendlyName": "D20 (Pink)", + "GiftDropId": 2145, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D20 Pink Debug: 2145", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2145, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "gXOOKrQEYE-FmS3uXWj1hA", + "EquipmentPrefabName": "[Sandbox_D20]", + "FriendlyName": "D20 (Bone White)", + "GiftDropId": 2146, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D20 BoneWhite Debug: 2146", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2146, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "DrG0ntsyPUSv8ra0m-Hhaw", + "EquipmentPrefabName": "[Sandbox_D20]", + "FriendlyName": "D20 (Turquoise)", + "GiftDropId": 2147, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D20 Turquoise Debug: 2147", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2147, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "H3vrSi45AU6lshChLnr19Q", + "EquipmentPrefabName": "[Sandbox_D20]", + "FriendlyName": "D20 (Pewter)", + "GiftDropId": 2148, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D20 Pewter Debug: 2148", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2148, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "c458a6ae-a1ea-468a-89b8-4c9a85cd3cde", + "EquipmentPrefabName": "[PaintballAssaultRifle]", + "FriendlyName": "Paintball Burst Rifle Skin (Caution)", + "GiftDropId": 2150, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballAssaultRifle Caution Debug: 2150", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2150, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "m_qzPvDPF0KPhLd59wzr5A", + "EquipmentPrefabName": "[PaintballAssaultRifle]", + "FriendlyName": "Paintball Burst Rifle Skin (Fall)", + "GiftDropId": 2151, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballAssaultRifle Fall Debug: 2151", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2151, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "996662ad-631d-4a81-8a8b-74ace4833279", + "EquipmentPrefabName": "[PaintballAssaultRifle]", + "FriendlyName": "Paintball Burst Rifle Skin (Pirate)", + "GiftDropId": 2152, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballAssaultRifle Pirate Debug: 2152", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2152, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "3aaef60d-142f-4a0a-bea3-f5d99ab62dd5", + "EquipmentPrefabName": "[PaintballAssaultRifle]", + "FriendlyName": "Paintball Burst Rifle Skin (Plaid)", + "GiftDropId": 2153, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballAssaultRifle Plaid Debug: 2153", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2153, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "49d88b73-3c8a-4f4d-8a69-128fa5474e82", + "EquipmentPrefabName": "[PaintballAssaultRifle]", + "FriendlyName": "Paintball Burst Rifle Skin (PS Plus)", + "GiftDropId": 2154, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballAssaultRifle PSPLUS Debug: 2154", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2154, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "357fe573-fee7-467f-93a7-5e61afb024b8", + "EquipmentPrefabName": "[PaintballAssaultRifle]", + "FriendlyName": "Paintball Burst Rifle Skin (Wood)", + "GiftDropId": 2155, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballAssaultRifle wood Debug: 2155", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2155, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "y_FesIT5jkmb61JIu7tfsw", + "EquipmentPrefabName": "[Paintball_PaintThrower]", + "FriendlyName": "Paintball Paint Thrower Skin (Wood)", + "GiftDropId": 2157, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Paintball PaintThrower Wood Debug: 2157", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2157, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "GbHNkVbVgUCoirMhOGkSTA", + "EquipmentPrefabName": "[Paintball_PaintThrower]", + "FriendlyName": "Paintball Paint Thrower Skin (Plaid)", + "GiftDropId": 2158, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Paintball PaintThrower Plaid Debug: 2158", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2158, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "qhhhJeHVx0KLnGJrAGIn9g", + "EquipmentPrefabName": "[Paintball_PaintThrower]", + "FriendlyName": "Paintball Paint Thrower Skin (Caution)", + "GiftDropId": 2159, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Paintball PaintThrower Caution Debug: 2159", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2159, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "OFEdf4dRC0a3nHugXVOXnA", + "EquipmentPrefabName": "[Paintball_PaintThrower]", + "FriendlyName": "Paintball Paint Thrower Skin (Fireworks)", + "GiftDropId": 2160, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Paintball PaintThrower Fireworks Debug: 2160", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2160, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "VTVy8cweC0K2ca1nTXMu0g", + "EquipmentPrefabName": "[Paintball_PaintThrower]", + "FriendlyName": "Paintball Paint Thrower Skin (Double Drencher)", + "GiftDropId": 2161, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Paintball PaintThrower DoubleDrencher Debug: 2161", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2161, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "ou23DX__T0qFPjAXC5WrOQ", + "EquipmentPrefabName": "[Bucket]", + "FriendlyName": "Bucket Skin (Fashion)", + "GiftDropId": 2164, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Bucket Fashion Debug: 2164", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2164, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "frOMH6WxDEG1fBqC4_83vg", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Film (Black & White)", + "GiftDropId": 2168, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "Take some black and white photos. Debug: 2168", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 20, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2168, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 20, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "m0bVLwWGj0GuIBSb6wCk6Q", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Film (Dawn)", + "GiftDropId": 2169, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "Take some sun-soaked photos. Debug: 2169", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 20, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2169, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 20, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "A5M-yf9tgUihq1uab3v58g", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Film (Sepia)", + "GiftDropId": 2174, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "Take some old-timey photos. Debug: 2174", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 20, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2174, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 20, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "-hy0qD-iUk-v4NHxNzanmg", + "Context": 4004, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "High Five Potion (Golden)", + "GiftDropId": 2176, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "Give golden high fives for a time. Debug: 2176", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 30, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2176, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 30, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "VQSgL2pTLkWx4B3kwYG7UA", + "Context": 4014, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "High Five Potion (Magic)", + "GiftDropId": 2179, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "Give magical high fives for a time. Debug: 2179", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 30, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2179, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 30, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "xwQWBB_fekmTqRc2LB92cg", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "87 Flavor Cake", + "GiftDropId": 2181, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "Eight slices of tasty cake to share with friends. Debug: 2181", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2181, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "ZuvkidodzkuOfGLDnTOFyg", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Assorted Donuts", + "GiftDropId": 2182, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "A dozen assorted donuts to share with friends. Debug: 2182", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2182, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "iiGTvhOCHkOTNJhb16Zbyw", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fancy Bubbly", + "GiftDropId": 2183, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 2183", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2183, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "EmPvh3I6L0uK_1i8Wy_ylQ", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Candy Apples", + "GiftDropId": 2184, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 2184", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2184, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "Sk_1sm88ZU2zpWn01Lv7hw", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Celebration Cake", + "GiftDropId": 2185, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "Eight slices of tasty cake to share with friends. Debug: 2185", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2185, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "5hIAZ9wg5EyG1cILf4FS2A", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheese Pizza", + "GiftDropId": 2186, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "A cheese pizza to share with friends. Debug: 2186", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 85, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2186, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 85, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "BbJb1_0g4EGJP_CeNrjpew", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chocolate Cake", + "GiftDropId": 2187, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "Eight slices of tasty cake to share with friends. Debug: 2187", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2187, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "mMCGPgK3tki5S_15q2Z81A", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chocolate Donuts", + "GiftDropId": 2188, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "A dozen chocolate donuts to share with friends. Debug: 2188", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2188, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "K9RbXo-4U0q6NbGu8VL1Sw", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Assorted Chocolates", + "GiftDropId": 2189, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "Assorted chocolates to share with friends! Debug: 2189", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2189, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "7OZ5AE3uuUyqa0P-2W1ptg", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Glazed Donuts", + "GiftDropId": 2190, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "A dozen glazed donuts to share with friends. Debug: 2190", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 90, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2190, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 90, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "_jnjYGBcyEWY5Ub4OezXcA", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hawaiian Pizza", + "GiftDropId": 2191, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "A ham and pineapple pizza to share with friends. Debug: 2191", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2191, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "P15H1ONBhk-5DYYjid1ttg", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tray of Lattes", + "GiftDropId": 2192, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "Four hot lattes to share with friends. Debug: 2192", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2192, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "mq23W-RSP0G8iGNLdrcpUw", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pepperoni Pizza", + "GiftDropId": 2193, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "A pepperoni pizza to share with friends. Debug: 2193", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 90, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2193, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 90, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "QRx0aSTT9keMFdAJMQHdTg", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Popcorn", + "GiftDropId": 2194, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 2194", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2194, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "LwaotjVEBUir0-w8126n_g", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red Velvet Cake", + "GiftDropId": 2196, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "Eight slices of tasty cake to share with friends. Debug: 2196", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2196, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "JfnVXFmilU6ysv-VbTAe3A", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Root Beer", + "GiftDropId": 2197, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "A sixer of root beer to share with friends. Debug: 2197", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 50, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2197, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 50, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "InQ25wQMGkG_bvuD5rf2Ag", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Salted Pretzels", + "GiftDropId": 2198, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "A great snack to share with friends! Debug: 2198", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 75, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2198, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 75, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "wUCIKdJSvEmiQHYMyx4X4w", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Supreme Pizza", + "GiftDropId": 2199, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "A supreme pizza to share with friends. Debug: 2199", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2199, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "4My42w1D1Uu3-98pXB-x_Q", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sushi", + "GiftDropId": 2200, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "15 piece premium sushi set to share with friends Debug: 2200", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2200, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "ZtZnYBpKkECJlhHmkj4MiA", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "KO Icon - Bear Claw", + "GiftDropId": 2201, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "When you KO someone this will appear over their head. Debug: 2201", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2201, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "EAhk3ZZdXEmH5wRAXXT24Q", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "KO Icon - Grenade", + "GiftDropId": 2206, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "When you KO someone this will appear over their head. Debug: 2206", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2206, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "5AJin8T2iEG7BzOPOgx2HA", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "KO Icon - Sword & Shield", + "GiftDropId": 2208, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "When you KO someone this will appear over their head. Debug: 2208", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2208, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "U38Qe6rhEk6mFvArHfYjng", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "KO Icon - Winged Skull", + "GiftDropId": 2209, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "When you KO someone this will appear over their head. Debug: 2209", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2209, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "yvqSbK2czkS2sUCRdrGaEw", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "KO Icon - Star Power", + "GiftDropId": 2210, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "When you KO someone this will appear over their head. Debug: 2210", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2210, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "J1WqFNUWo0OBi4LGKPDHWw", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "KO Icon - Tire Track", + "GiftDropId": 2211, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "When you KO someone this will appear over their head. Debug: 2211", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2211, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Common Random box", + "GiftDropId": 2454, + "IsQuery": true, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "a random box of Common quality Debug: 2454", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 50, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2454, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 50, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Uncommon Random box", + "GiftDropId": 2455, + "IsQuery": true, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "a random box of Uncommon quality Debug: 2455", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2455, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rare Random box", + "GiftDropId": 2456, + "IsQuery": true, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "a random box of Rare quality Debug: 2456", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2456, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Epic Random box", + "GiftDropId": 2457, + "IsQuery": true, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "a random box of Epic quality Debug: 2457", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2457, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Legendary Random box", + "GiftDropId": 2458, + "IsQuery": true, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "a random box of Legendary quality Debug: 2458", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2458, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0RUmjv2bL0ydbKU61dlqlg", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (PVPeach)", + "GiftDropId": 2554, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2554", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2554, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "H65ddsxAY0m2sccMrF48Aw", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Standee Sandy)", + "GiftDropId": 2555, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2555", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2555, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "yejur5BbR0mevbH-rzgXYA", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Recreational Raspberry)", + "GiftDropId": 2556, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2556", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2556, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "Bjsgo9ddeUCk3zW1-DdJbw", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (H2Oasis)", + "GiftDropId": 2557, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2557", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2557, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8k_gZA_lrEyJxI19GrcAZg", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Mousebot Magenta)", + "GiftDropId": 2558, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2558", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2558, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1I8AD333gku-iOQlS6WWlw", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Bucket Orange)", + "GiftDropId": 2559, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2559", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2559, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "aziIarpSREmcT6vihduPwA", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Rebel Rose)", + "GiftDropId": 2560, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2560", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2560, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "yTdx1nVVtECU8Vh7EC8dGA", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Butterfly Blue)", + "GiftDropId": 2561, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2561", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2561, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "XCwNFMT1i0i9Q9gJYTLPUQ", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Cauldron Crimson)", + "GiftDropId": 2562, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2562", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2562, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "QmgjYhH_L0q58eF5SWeDhQ", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Gizmo Grape)", + "GiftDropId": 2563, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2563", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2563, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "53y1prYATU2drZDS-jpaqg", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Propulsion Purple)", + "GiftDropId": 2564, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2564", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2564, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "TylV8M6zjUaadhxHPWAS-w", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Goblin Green)", + "GiftDropId": 2565, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2565", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2565, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "xyHGGFKNWEOTnXloDFahPQ", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (KREQ Red)", + "GiftDropId": 2566, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2566", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2566, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "LBz3a9520kiOOMMOwsTExg", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Frontier Forest)", + "GiftDropId": 2567, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2567", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2567, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "G129V_kVXkSLN2OG8EjSqQ", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Maker Mauve)", + "GiftDropId": 2568, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2568", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2568, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "_2QGtfHzuUSq0eyI84rImw", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Paula's Periwinkle)", + "GiftDropId": 2569, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2569", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2569, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "pQNfh-3DsEGWfiIls6Qf6g", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Pirate Gold)", + "GiftDropId": 2570, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2570", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2570, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "qp_vRXZQPU2rlx_IU1Vr8Q", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Lounge Lavender)", + "GiftDropId": 2571, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2571", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2571, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3ksu_FLaukeJ-YE90jb4Ow", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Ranger Roy-Al Blue)", + "GiftDropId": 2572, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2572", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2572, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "gwLiwmqBIk6glFxvaTzxeA,D_Xmo0rOzkS-kgq1CYXt3g,fXnd_COSzUeznwe7P4ZYRg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 1, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "TransSteampunkHat - JOGMANSON", + "GiftDropId": 2674, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "0 Debug: 2674", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2674, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "qxovV6Vym0ufL2cTCyKjOQ,D_Xmo0rOzkS-kgq1CYXt3g,rPpYm5fIzky4vqVB26guAw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 1, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "TransSteampunkWrist - JOGMANSON", + "GiftDropId": 2675, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "0 Debug: 2675", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2675, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "E9VTiIVFPEa-OuQRto0e_Q,DIeasJUIj0KNetAzPzuIrg,C8gCmBZ8RUG83vvDw_UYew,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 1, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bisexual Steampunk Shirt - JOGMANSON", + "GiftDropId": 2677, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "Tooltip Debug: 2677", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2677, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "qxovV6Vym0ufL2cTCyKjOQ,DIeasJUIj0KNetAzPzuIrg,rPpYm5fIzky4vqVB26guAw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 1, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bisexual Steampunk Wrist - JOGMANSON", + "GiftDropId": 2678, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "Tooltip Debug: 2678", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2678, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3044adce-90c0-4f66-81f5-39c4fca86fdf,Uz2hrptCa0erjqyPoiZxew,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White Lasertag Glove", + "GiftDropId": 2764, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "laser the tag Debug: 2764", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2764, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,724c79a3-822c-422f-9462-a5374ee0211c,be2b9293-1d3c-4b1c-b4c5-fad3ab16cf54,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White Blazer", + "GiftDropId": 2769, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "White Debug: 2769", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2769, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,6564acf1-4d70-4f92-92ac-08e2b76dbb6b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blazer (IGOR)", + "GiftDropId": 2804, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "IGOR Debug: 2804", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 5000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2804, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 5000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ce81210f-8eb8-4cd2-95d5-046d4da229c8,e69372eb-2fd8-4e17-a448-ee0be61a2c7a,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Wrist (Black... Actually black.)", + "GiftDropId": 2827, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "Can you believe it guys Debug: 2827", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2827, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "caf1e229-9660-4abf-8074-f706709f4097,TuAjeDmPuUmFr_ESx4q6WA,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Overall Shorts (Black, Orange)", + "GiftDropId": 2839, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "Debug: 2839", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2839, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "35d67043-ca27-4b8a-a893-2d42674e6e68,rcdwgNvO30Cvx2ycE1GfHw,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Overcoat (Black, Blue)", + "GiftDropId": 2840, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "Debug: 2840", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2840, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "KNZ1DvCLC0WHyH4opYAXtw,ed134bee-d199-43eb-98bd-206571603f40,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Visor (Blue)", + "GiftDropId": 2841, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "Debug: 2841", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2841, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 } ], "Type": 0 } ], "StorefrontType": 3, - "SubscriberDiscountPercent": 10 + "SubscriberDiscountPercent": 0 } \ No newline at end of file